/* ─────────────────────────────────────────────────────
   TaxClue Client Reviews  ·  v2.0.0
   Cream / beige section, cream cards, navy/gold palette
───────────────────────────────────────────────────── */

.tcr-section {
    background: #f5f0e8;
    padding: 64px 20px 72px;
    font-family: -apple-system, BlinkMacSystemFont, 'DM Sans', 'Segoe UI', sans-serif;
    /* Renders in page flow — NOT after footer */
    display: block;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

.tcr-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.tcr-badge {
    display: inline-block;
    border: 1.5px solid #b5841a;
    border-radius: 50px;
    color: #b5841a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    margin-bottom: 18px;
}

/* Title */
.tcr-title {
    font-family: 'Fraunces', Georgia, serif !important;
    font-size: clamp(22px, 3.5vw, 36px) !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 auto 40px !important;
    line-height: 1.25 !important;
    max-width: 780px;
}
.tcr-title em {
    font-style: italic !important;
    color: #b5841a !important;
}

/* Grid */
.tcr-grid {
    display: grid;
    gap: 22px;
    margin-bottom: 36px;
    text-align: left;
}
.tcr-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tcr-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tcr-cols-1 { grid-template-columns: 1fr; }

@media (max-width: 920px) {
    .tcr-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tcr-cols-3,
    .tcr-cols-2 { grid-template-columns: 1fr; }
}

/* Card */
.tcr-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s;
    border: none;
    margin: 0;
}
.tcr-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }

/* Card header */
.tcr-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Avatar */
.tcr-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .5px;
}

/* Meta */
.tcr-meta { flex: 1; min-width: 0; }
.tcr-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tcr-company {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tcr-company span { color: #999; }

/* Stars */
.tcr-stars, .tcr-bar-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}
.tcr-s  { font-size: 16px; color: #ddd; line-height: 1; }
.tcr-sf { color: #f5a623; }

/* Review text */
.tcr-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #444;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1;
}

/* Card footer */
.tcr-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin: 0;
    background: none;
}
.tcr-verified { font-size: 12px; color: #2e6b3c; font-weight: 500; }
.tcr-date     { font-size: 12px; color: #999; }

/* Bottom bar */
.tcr-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
}
.tcr-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tcr-big {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.tcr-bar-label {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* CTA button */
.tcr-btn {
    display: inline-block;
    background: #1a1a2e;
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
}
.tcr-btn:hover {
    background: #2d2d52;
    transform: translateY(-2px);
    color: #fff !important;
}
