/* ==========================================================
   Section: Latest Release — pink feature band
   ========================================================== */

.latest-release {
    background: var(--brand);
    color: #FFFFFF;
    padding: var(--section-pad) 24px;
    overflow: hidden;
}

.latest-release__container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.latest-release__label {
    color: #FFFFFF;
}
.latest-release__label::before {
    background: rgba(255, 255, 255, 0.5);
}

.latest-release__title {
    color: #FFFFFF;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.latest-release__subtitle {
    color: #FFE1EE;
    font-size: clamp(1.7rem, 3.6vw, 2.3rem);
    margin-top: 10px;
}

.latest-release__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

/* Buttons invert on the pink ground */
.latest-release .btn {
    background: #FFFFFF;
    color: var(--brand);
}
.latest-release .btn:hover {
    background: var(--bg-blush);
    color: var(--brand-deep);
}
.latest-release .btn--ghost {
    background: transparent;
    color: #FFFFFF;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.latest-release .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.latest-release__note {
    margin-top: 18px;
    font-size: 0.92rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.latest-release__cover-col {
    display: flex;
    justify-content: center;
}

.latest-release__cover {
    width: clamp(240px, 28vw, 420px);
    height: auto;
    transform: rotate(2.5deg);
    transition: transform 0.35s ease;
}

.latest-release__cover:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 900px) {
    .latest-release__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .latest-release__label {
        justify-content: center;
    }
    .latest-release__actions {
        justify-content: center;
    }
    .latest-release__cover-col {
        order: -1;
    }
    .latest-release__cover {
        transform: rotate(0);
    }
}

/* Detail-page link on the pink ground */
.latest-release__more {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration-color: rgba(255, 255, 255, 0.4);
}
.latest-release__more:hover {
    color: #FFFFFF;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}
