.download-cards {
    margin: 2.5rem 0;
}

@media (max-width: 992px) {
    .download-cards {
        margin: 2.5rem 0;
    }
}

.download-cards h2 {
    margin-bottom: 2rem;
}

.download-card-wrapper {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background: var(--white-color);
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-card:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.download-card p {
    margin-bottom: 0.5rem;
}

.download-card .button-nofill {
    /* min-width: 13.313rem; */
}

.download-card-right {
    /* min-width: 200px; */
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .download-card {
        flex-direction: column;
        text-align: center;
    }
}