.tcm-review-grid {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.tcm-review-grid--compact {
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    gap: 18px;
}

.tcm-review-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.tcm-review-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(212, 182, 144, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 28%),
        radial-gradient(circle at 18% 0%, rgba(212, 182, 144, 0.15), rgba(212, 182, 144, 0) 34%),
        linear-gradient(145deg, #22201c 0%, #12110f 100%);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tcm-review-card:hover,
.tcm-review-card:focus-visible {
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-5px);
    border-color: rgba(232, 212, 184, 0.72);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(212, 182, 144, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.tcm-review-card:focus-visible {
    outline: 2px solid rgba(232, 212, 184, 0.62);
    outline-offset: 3px;
}

.tcm-review-card__media {
    position: relative;
    width: 100%;
    height: clamp(190px, 22vw, 260px);
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.68)),
        rgba(8, 8, 8, 0.72);
    border-bottom: 1px solid rgba(212, 182, 144, 0.18);
}

.tcm-review-card__proof {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.tcm-review-card__proof--portrait {
    object-fit: cover;
    object-position: top center;
}

.tcm-review-card__proof-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 182, 144, 0.2);
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(212, 182, 144, 0.14), rgba(212, 182, 144, 0) 42%),
        rgba(12, 11, 10, 0.86);
    color: rgba(245, 234, 216, 0.74);
    font: 700 0.78rem/1.2 'Cinzel', serif;
    text-transform: uppercase;
    text-align: center;
}

.tcm-review-card__escorts {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(212, 182, 144, 0.34);
    border-radius: 999px;
    background: rgba(12, 11, 10, 0.76);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
}

.tcm-review-card__escorts img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.tcm-review-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: clamp(18px, 2.4vw, 24px);
}

.tcm-review-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.tcm-review-card__platform,
.tcm-review-card__chip,
.tcm-review-card__about {
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(212, 182, 144, 0.28);
    border-radius: 999px;
    background: rgba(212, 182, 144, 0.1);
    color: #e5c9a5;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
    padding: 0.48rem 0.78rem;
}

.tcm-review-card__platform img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.tcm-review-card__chip {
    color: rgba(245, 234, 216, 0.78);
}

.tcm-review-card__about {
    margin: 0;
    color: rgba(245, 234, 216, 0.82);
}

.tcm-review-card__title {
    margin: 0;
    color: #f2d7b0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.38rem, 1.9vw, 1.72rem);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.tcm-review-card__excerpt {
    margin: 0;
    color: rgba(236, 231, 223, 0.84);
    font-size: 0.98rem;
    line-height: 1.62;
}

.tcm-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tcm-review-card__meta > span {
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    max-width: 100%;
    padding: 0.72rem 0.86rem;
    border: 1px solid rgba(212, 182, 144, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(245, 234, 216, 0.84);
    line-height: 1.35;
}

.tcm-review-card__meta-heading {
    color: #d4b690;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.08;
}

.tcm-review-card__meta-value {
    color: rgba(245, 234, 216, 0.86);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.34;
}

.tcm-review-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 2px;
    color: #f5dfbd;
    font-size: 0.9rem;
    font-weight: 900;
}

.tcm-review-card__cta span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #c8a24d, #f5e7b2);
    color: #20170d;
}

.tcm-review-card--compact .tcm-review-card__media {
    height: clamp(170px, 20vw, 220px);
    min-height: 0;
}

.tcm-review-card--compact .tcm-review-card__body {
    padding: 18px;
    gap: 10px;
}

.tcm-review-card--compact .tcm-review-card__title {
    font-size: clamp(1.18rem, 1.8vw, 1.42rem);
}

.tcm-review-card--compact .tcm-review-card__excerpt {
    font-size: 0.92rem;
    line-height: 1.55;
}

.tcm-review-card--featured {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: auto;
}

.tcm-review-card--featured .tcm-review-card__media {
    height: auto;
    min-height: 100%;
    border-right: 1px solid rgba(212, 182, 144, 0.18);
    border-bottom: 0;
}

.tcm-review-list-section {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(212, 182, 144, 0.24);
}

.tcm-review-list-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.tcm-review-list-section__title {
    margin: 0;
    color: #f5e9cc;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.08;
}

.tcm-review-list-section__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(212, 182, 144, 0.36);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, rgba(73, 55, 36, 0.98), rgba(24, 20, 16, 0.98));
    color: #f2dcc1;
    font-weight: 850;
    text-decoration: none;
}

.tcm-review-list-section__cta:hover,
.tcm-review-list-section__cta:focus-visible {
    border-color: rgba(232, 212, 184, 0.58);
    color: #fff2df;
    text-decoration: none;
}

@media (max-width: 980px) {
    .tcm-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tcm-review-grid {
        width: min(100% - 24px, 440px);
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tcm-review-card--featured {
        grid-template-columns: 1fr;
    }

    .tcm-review-card--featured .tcm-review-card__media {
        border-right: 0;
        border-bottom: 1px solid rgba(212, 182, 144, 0.18);
    }

    .tcm-review-card__media {
        height: clamp(180px, 58vw, 240px);
        min-height: 0;
    }

    .tcm-review-card__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .tcm-review-card__meta {
        flex-direction: column;
    }

    .tcm-review-card__meta > span {
        width: 100%;
    }

    .tcm-review-list-section__header {
        align-items: stretch;
        flex-direction: column;
    }

    .tcm-review-list-section__cta {
        width: 100%;
    }
}
