/* ============================================
   SECTION 16 — Download Cards
   ============================================ */

.section-16 {
    display: flex;
    align-items: stretch;
    gap: 43px;
    padding: 114px 108px;
    box-sizing: border-box;
}

/* ── Download card ── */
.s16-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    /* Reset for button variant */
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.s16-card:first-child {
    flex: 0 0 975px;
    max-width: 975px;
}

/* ── Card image wrapper ── */
.s16-card__image {
    width: 100%;
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    border-radius: 2px;
}

.s16-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.s16-card:hover .s16-card__image img {
    transform: scale(1.03);
}

/* ── Card info row: text + download link ── */
.s16-card__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
    padding-top: 30px;
}

/* ── Description text ── */
.s16-card__text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: 0.1em;
    color: #fff;
}

/* ── Download link ── */
.s16-card__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: 0.1em;
    color: #a98058;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.15s ease;
    cursor: pointer;
}

.s16-card__download:hover {
    color: #c4a97a;
}

.s16-card__download:active {
    transform: scale(0.97);
}

/* ── Download icon ── */
.s16-card__download svg {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-smooth);
}

.s16-card__download:hover svg {
    transform: translateY(2px);
}

/* ── Reveal animation ── */
.section-16 .s16-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-reveal),
        transform 0.8s var(--ease-reveal);
}

.section-16.visible .s16-card {
    opacity: 1;
    transform: translateY(0);
}

.section-16.visible .s16-card:nth-child(2) {
    transition-delay: 0.15s;
}