/* =========================
   PLAY MORE
========================= */
.play-more {
    padding: 80px 0 100px;
    background: #fff;
}

    .play-more .container {
        max-width: 1200px;
        margin: 0 auto;
    }

.play-more__title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.1;
    color: #1f2d3d;
    margin: 0 0 10px;
}

.play-more__subtitle {
    text-align: center;
    margin: 0 auto 34px;
    max-width: 760px;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}

.play-more__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* card */
.play-card {
    position: relative;
    min-height: 340px;
    padding: 22px 20px 82px; /* bottom space reserved for tag */
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 14px 34px rgba(0,0,0,.06);
    overflow: hidden;
}

    /* pastel themes */
    .play-card:nth-child(1) {
        background: linear-gradient(180deg,#FFF4DE 0%, #FFF9F0 100%);
    }

    .play-card:nth-child(2) {
        background: linear-gradient(180deg,#EEF4FF 0%, #F8FBFF 100%);
    }

    .play-card:nth-child(3) {
        background: linear-gradient(180deg,#EFFAF1 0%, #F8FFFA 100%);
    }

/* eyebrow */
.play-card__eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #41556b;
}

/* title aligned top */
.play-card h4 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 900;
    color: #13263d;
    letter-spacing: -0.01em;
}

/* body copy */
.play-card p:not(.play-card__eyebrow) {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4f5b66;
}

/* bottom CTA aligned */
.play-tag {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    border: 1px solid transparent;
}

.play-card:nth-child(1) .play-tag {
    background: #F6E0B8;
    color: #9C6827;
    border-color: rgba(156,104,39,.15);
}

.play-card:nth-child(2) .play-tag {
    background: #DDEBFF;
    color: #0B4F8A;
    border-color: rgba(11,79,138,.12);
}

.play-card:nth-child(3) .play-tag {
    background: #DDF4E3;
    color: #1F7A38;
    border-color: rgba(31,122,56,.12);
}

.play-more__footer {
    text-align: center;
    margin: 24px 0 0;
    color: #444;
    font-weight: 700;
    font-size: 18px;
}

@media (hover:hover) and (pointer:fine) {
    .play-card {
        transition: transform .22s ease, box-shadow .22s ease;
    }

        .play-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 44px rgba(0,0,0,.10);
        }
}

@media (max-width:980px) {
    .play-more__grid {
        grid-template-columns: 1fr;
    }

    .play-card {
        min-height: unset;
    }
}

@media (max-width:560px) {
    .play-more {
        padding: 64px 0 72px;
    }

    .play-more__title {
        font-size: 34px;
    }

    .play-more__subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .play-card {
        padding: 18px 16px 72px; /* keep reserved space on mobile */
        border-radius: 18px;
    }

        .play-card h4 {
            font-size: 20px;
        }

        .play-card p:not(.play-card__eyebrow) {
            font-size: 13px;
        }

    .play-tag {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: 12px;
        min-height: 40px;
    }
}
