﻿.table-reads-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.tr-hero {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    color: #fff;
    border-radius: 20px;
    padding: 42px 38px;
    margin-bottom: 36px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.tr-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #d7b56d;
    margin-bottom: 14px;
}

.tr-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    margin: 0 0 14px;
    color: #fff;
}

.tr-subhead {
    font-size: 20px;
    line-height: 1.45;
    max-width: 860px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.92);
}

.tr-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.tr-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 14px;
    font-weight: 600;
}

.tr-intro {
    font-size: 18px;
    line-height: 1.75;
    /*max-width: 850px;*/
    margin: 0 0 36px;
}

.tr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 34px 0 42px;
}

.tr-card {
    background: #fff;
    border: 1px solid #e8e2d8;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

    .tr-card h2 {
        margin: 0 0 14px;
        font-size: 24px;
        line-height: 1.15;
    }

    .tr-card ul {
        margin: 0;
        padding-left: 20px;
    }

    .tr-card li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

.tr-cta {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: transform .15s ease, opacity .15s ease;
}

    .tr-cta:hover {
        transform: translateY(-1px);
        opacity: .92;
    }

.tr-performers {
    margin-top: 40px;
}

    .tr-performers h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }

.tr-name-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 12px 18px;
}

.tr-name {
    background: white;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 993px) {
    .tr-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .tr-name-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

@media (max-width: 640px) {
    .table-reads-page {
        padding: 24px 16px 60px;
    }

    .tr-hero {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .tr-grid {
        grid-template-columns: 1fr;
    }


    .tr-name-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .tr-hero h1 {
        font-size: 34px;
    }

    .tr-subhead,
    .tr-intro {
        font-size: 17px;
    }
}
