#download-heading {
    margin: 5rem 1rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
}
#download-heading > p {
    font-size: 1rem;
}

#download-cards-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 5rem;
    margin-bottom: 1rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.download-card {
    padding: 2rem;
    border-radius: var(--border-radius-large);
    background-color: lightgray;
    width: 18rem;
    height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
/* Apple download */
.download-card:last-child a {
    cursor: not-allowed;
}
.download-card > img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
}
.download-card a {
    font-size: 1.1rem;
    width: 100%;
    background-color: #0066b8;
    padding: 1rem;
    color: white;
    transition: background-color 0.2s;
    text-decoration: none;
}
.download-card a:hover {
    background-color: #02579c;
}
.download-card > .download-button-split-wrapper {
    display: flex;
    gap: 0.7rem;
    width: 100%;
}

@media (max-width: 1150px) {
    #download-cards-wrapper {
        gap: 2rem;
    }
}
