/* TCR V11 — Header & Footer Redesign
   Prefixed with tcr- to avoid parent theme conflicts */

/* Font smoothing — antialiased on headings and homepage sections only.
   Body text stays at default (subpixel) for readability. */
.tcr-hero-split,
.tcr-sh,
.tcr-title-lg,
.tcr-title-md,
.tcr-hero-title,
.tcr-highlight-title,
.tcr-select-title,
.tcr-comp-text,
.tcr-tag,
.tcr-spot-t,
.tcr-header,
.tcr-nav,
.tcr-site-name,
.tcr-section-cta,
.tcr-hero-link,
.tcr-label,
.tcr-kicker,
.tcr-footer-main,
.tcr-footer-bot,
.tcr-nl {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================
   FONT WEIGHT FIX
   Parent theme sets font-weight:600 on all headings,
   but Lato doesn't have weight 600 — causes faux bold.
   Override to use actual Lato weights (400, 700).
   ============================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
.post-title-standard,
.post-title-small,
.post-title-big {
    font-weight: 700;
}
/* Single post/page titles should be lighter */
.entry-title.post-title-big {
    font-weight: 400;
}
.post-title-small {
    font-size: 15px;
}
.post-title-standard {
    font-size: 18px;
}
/* widget-title and post-cat use 800 in parent — Lato has no 800 */
.post-cat, .widget-title {
    font-weight: 700;
}
/* SiteOrigin carousel titles use 500 — Lato has no 500
   !important needed to override widget's extremely specific selector */
h3.sow-carousel-item-title {
    font-weight: 400 !important;
}

/* ============================
   VARIABLES
   ============================ */
:root {
    --tcr-gold: #F5A623;
    --tcr-gold-dark: #99710D;
    --tcr-gold-light: #FCECD2;
    --tcr-black: #0A0A0A;
    --tcr-near-black: #151515;
    --tcr-warm: #F7F5F0;
    --tcr-warm-border: #E0DDD8;
    --tcr-text: #1A1A1A;
    --tcr-text-mid: #555;
    --tcr-text-light: #999;
}

/* ============================
   HIDE PARENT THEME HEADER/FOOTER
   ============================ */
.site-header,
.top-header,
.top-search-form,
.preloader,
#editor-choice,
.bottom-footer,
.site-footer .row.footer-widgets,
.main-navigation,
.off-canvas,
.off-close.outer,
#site-navigation {
    display: none !important;
}

/* Hide Ivory Search injected into nav — we use our own search */
.tcr-nav-menu .astm-search-menu,
.tcr-nav-menu .is-search-form,
li.astm-search-menu {
    display: none !important;
}

/* ============================
   TCR HEADER
   ============================ */
.tcr-header {
    background: var(--tcr-black);
}
.tcr-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tcr-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}
.tcr-logo-icon {
    height: 48px;
    width: auto;
}
.tcr-site-name {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .05em;
}
.tcr-header-ad {
    display: block;
}
@media (max-width: 1079px) {
    .tcr-header-inner {
        flex-wrap: wrap;
    }
    .tcr-header-ad {
        width: 100%;
        text-align: center;
        padding: 12px 0 4px;
    }
    .tcr-header-ad img {
        width: 100% !important;
        max-width: 728px !important;
        height: auto !important;
    }
}

/* ============================
   TCR NAV
   ============================ */
.tcr-nav {
    background: var(--tcr-near-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tcr-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Nav menu */
.tcr-nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tcr-nav-menu.tcr-nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tcr-near-black);
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    z-index: 200;
}
@media (min-width: 1080px) {
    .tcr-nav-menu {
        display: flex !important;
    }
    .tcr-nav .tcr-mobile-toggle {
        display: none !important;
    }
}
.tcr-nav-menu li {
    list-style: none;
}
.tcr-nav-menu li a {
    display: block;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.55) !important;
    text-decoration: none !important;
    transition: color .25s;
}
.tcr-nav-menu li a:hover,
.tcr-nav-menu li a:focus,
.tcr-nav-menu li.current-menu-item > a,
.tcr-nav-menu li.current_page_item > a {
    color: #fff !important;
}

/* Sliding underline indicator */
.tcr-nav-menu {
    position: relative;
}
.tcr-nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--tcr-gold);
    transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    z-index: 10;
}
@media (max-width: 1079px) {
    .tcr-nav-menu li.current-menu-item > a,
    .tcr-nav-menu li.current_page_item > a {
        border-bottom: none;
        border-left: none;
        background: none !important;
        background-color: transparent !important;
        color: #fff;
    }
}

/* Donate menu item — gold accent */
.tcr-nav-menu li a[href*="donate"],
.tcr-nav-menu li a[href*="Donate"],
.tcr-nav-menu li.menu-item-6210 > a {
    color: var(--tcr-gold) !important;
}


/* Submenu */
.tcr-nav-menu li .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}
.tcr-nav-menu li:hover > .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    background: var(--tcr-near-black);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    z-index: 300;
}
.tcr-nav-menu li .sub-menu li a {
    padding: 12px 24px;
    font-size: 10px;
}

/* Mobile toggle */
.tcr-mobile-toggle {
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tcr-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: transform .3s ease, opacity .2s ease;
}
.tcr-mobile-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: #fff; }
.tcr-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.tcr-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: #fff; }

/* Nav search button */
.tcr-nav-search {
    background: none !important;
    background-color: transparent !important;
    border: 0;
    color: rgba(255,255,255,.4) !important;
    cursor: pointer;
    padding: 16px;
    transition: color .25s;
}
.tcr-nav-search:hover,
.tcr-nav-search:focus { color: #fff !important; }

/* Kill parent theme's button:hover orange (#f8c200) on all header/nav buttons */
.tcr-mobile-toggle:hover,
.tcr-mobile-toggle:focus,
.tcr-nav-search:hover,
.tcr-nav-search:focus,
.tcr-search-close:hover,
.tcr-search-close:focus {
    background-color: transparent !important;
    background: none !important;
}

/* ============================
   SEARCH OVERLAY + INLINE
   ============================ */
.tcr-search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    pointer-events: none;
    transition: background .3s cubic-bezier(.4,0,.2,1), backdrop-filter .3s cubic-bezier(.4,0,.2,1);
}
.tcr-search-overlay.is-open {
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

.tcr-search-inline {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    background: var(--tcr-near-black);
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease, visibility 0s .3s;
    z-index: 10;
}
.tcr-search-inline.is-open {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s ease, visibility 0s 0s;
}
.tcr-search-icon { color: rgba(255,255,255,.35); flex: 0 0 auto; }
.tcr-search-input,
.tcr-search-input[type="search"],
input[type="search"].tcr-search-input {
    flex: 1;
    background: none !important;
    background-color: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    color: #fff;
    letter-spacing: .02em;
    width: auto;
    padding: 0;
}
.tcr-search-input::placeholder { color: rgba(255,255,255,.3); }
.tcr-search-close {
    background: 0;
    border: 0;
    color: rgba(255,255,255,.35);
    cursor: pointer;
    padding: 4px;
    transition: color .25s;
    flex: 0 0 auto;
}
.tcr-search-close:hover { color: #fff; }

/* Spinner */
.tcr-search-spinner {
    width: 18px; height: 18px; flex: 0 0 18px;
    border: 2px solid rgba(255,255,255,.1);
    border-top-color: rgba(255,255,255,.5);
    border-radius: 50%;
    animation: tcr-spin .6s linear infinite;
    display: none;
}
.tcr-search-spinner.is-active { display: block; }
@keyframes tcr-spin { to { transform: rotate(360deg); } }

/* Search results dropdown */
.tcr-search-results {
    position: absolute;
    top: 100%;
    left: 32px;
    right: auto;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 10;
    display: none;
}
.tcr-search-results.is-open { display: block; }
.tcr-search-results-inner {
    background: var(--tcr-near-black);
    border: 1px solid rgba(255,255,255,.06);
    border-top: 0;
}
.tcr-search-result {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .2s;
    text-decoration: none;
}
.tcr-search-result:hover,
.tcr-search-result.is-active { background: rgba(255,255,255,.04); }
.tcr-search-result-img {
    width: 60px; height: 42px;
    object-fit: cover;
    flex: 0 0 60px;
    border-radius: 2px;
}
.tcr-search-result-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.tcr-search-result-title {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--tcr-gold);
    line-height: 1.3;
}
.tcr-search-result-desc {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tcr-search-more {
    display: block;
    padding: 14px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    text-align: center;
    text-decoration: none;
    transition: background .2s, color .2s;
    cursor: pointer;
}
.tcr-search-more:hover,
.tcr-search-more.is-active {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
}

/* ============================
   TCR FOOTER
   ============================ */
.site-footer {
    background: var(--tcr-black) !important;
    color: #ccc;
}
.tcr-footer-main {
    padding: 56px 0;
}
.tcr-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.tcr-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 768px) {
    .tcr-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.tcr-fh {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--tcr-gold);
    margin-bottom: 20px;
}
.tcr-fl {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tcr-fl li { margin-bottom: 12px; }
.tcr-fl a {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .25s;
}
.tcr-fl a:hover { color: #fff; }

.tcr-footer-bot {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.tcr-footer-bot .tcr-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.tcr-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin: 0;
}
.tcr-version {
    color: rgba(255,255,255,.3);
}
.tcr-fnav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.tcr-fnav a {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    text-decoration: none;
}
.tcr-fnav a:hover { color: var(--tcr-gold); }

/* ============================
   GLOBAL OVERRIDES
   ============================ */
/* Ensure parent footer widget area is hidden */
.site-footer .footer-widgets,
.site-footer .widget-area {
    display: none !important;
}

/* ========================================================================
   HOMEPAGE SECTIONS
   ======================================================================== */

/* Container */
.tcr-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Section spacing */
.tcr-section { padding: 96px 0; }
@media (min-width: 768px) { .tcr-section { padding: 120px 0; } }
.tcr-section-tight-bottom { padding-bottom: 64px; }
@media (min-width: 768px) { .tcr-section-tight-bottom { padding-bottom: 72px; } }
.tcr-section-tight-top { padding-top: 64px; }
@media (min-width: 768px) { .tcr-section-tight-top { padding-top: 72px; } }

/* Backgrounds */
.tcr-bg-warm { background: var(--tcr-warm, #F7F5F0); }
.tcr-bg-dark { background: var(--tcr-near-black, #151515); color: #fff; }

/* Section headings — Alfa Slab One */
.tcr-sh {
    font-family: 'Alfa Slab One', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--tcr-text, #1A1A1A);
    margin-bottom: 48px;
    line-height: 1.1;
}
.tcr-sh-light { color: #fff; }
.tcr-sh-sm { font-size: clamp(24px, 3vw, 32px); }

/* Kicker (small label above headings) */
.tcr-kicker {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #99710D;
    margin-bottom: 8px;
}
.tcr-bg-dark .tcr-kicker { color: var(--tcr-gold); }

/* Labels & Titles */
.tcr-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #99710D;
}
.tcr-label-g { color: var(--tcr-gold); }
.tcr-title-lg {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--tcr-text, #1A1A1A);
    margin: 16px 0 8px;
}
.tcr-title-lg a { color: inherit; }
.tcr-title-lg a:hover { color: #99710D; }
.tcr-title-md {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--tcr-text, #1A1A1A);
    margin: 8px 0;
}
.tcr-title-md a { color: inherit; }
.tcr-title-md a:hover { color: #99710D; }
.tcr-title-w { color: #fff; }
.tcr-title-w a { color: #fff; }
.tcr-title-w a:hover { color: var(--tcr-gold); }
.tcr-desc { font-family: 'Lato', sans-serif; font-size: 16px; color: #555; line-height: 1.6; margin-top: 6px; }
.tcr-desc-dark { color: rgba(255,255,255,.45); }
.tcr-meta {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tcr-meta-w { color: rgba(255,255,255,.5); }
.tcr-card-info { padding: 16px 0 4px; }

/* CTA buttons */
.tcr-cta { margin-top: 48px; }
.tcr-section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--tcr-text, #1A1A1A);
    padding: 13px 28px;
    border: 1.5px solid #E0DDD8;
    text-decoration: none;
    transition: all .3s ease;
}
.tcr-section-cta:hover {
    border-color: #99710D;
    color: #99710D;
}
.tcr-arrow {
    font-size: 14px;
    transition: transform .3s ease;
}
.tcr-section-cta:hover .tcr-arrow {
    transform: translateX(4px);
}
.tcr-section-cta-dark {
    color: rgba(255,255,255,.6);
    border-color: rgba(255,255,255,.12);
}
.tcr-section-cta-dark:hover {
    color: var(--tcr-gold);
    border-color: var(--tcr-gold);
}
.tcr-section-cta-inline {
    margin-top: 12px;
    padding: 12px 24px;
    font-size: 12px;
}

/* Image wraps */
.tcr-img-wrap {
    aspect-ratio: 1200 / 850;
    overflow: hidden;
    display: block;
}
.tcr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

/* Card component */
.tcr-card .tcr-img-wrap img,
.tcr-feat-big img,
.tcr-feat-sm img,
.tcr-interview-big img,
.tcr-interview-sm img,
.tcr-audio-feat img,
.tcr-spot-img img {
    transition: transform .6s;
}
.tcr-card:hover img,
.tcr-feat-big:hover img,
.tcr-feat-sm:hover img,
.tcr-interview-big:hover img,
.tcr-interview-sm:hover img,
.tcr-audio-feat:hover img,
.tcr-spot-img:hover img {
    transform: scale(1.04);
}

/* Separator */
.tcr-mt-sep { margin-top: 48px; }

/* ============================
   HERO
   ============================ */
.tcr-hero-split { background: #F7F5F0; }
.tcr-hero-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tcr-hero-inner { grid-template-columns: 3fr 2fr; } }
.tcr-hero-img { display: block; overflow: hidden; aspect-ratio: 1200 / 850; }
.tcr-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.tcr-hero-text {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) { .tcr-hero-text { padding: 56px 48px; } }
.tcr-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: #1A1A1A;
    margin: 20px 0;
    letter-spacing: -.02em;
}
.tcr-hero-title a { color: inherit; transition: color .3s; }
.tcr-hero-title a:hover { color: #99710D; }
.tcr-hero-desc { font-family: 'Lato', sans-serif; font-size: 18px; line-height: 1.65; color: #555; }
.tcr-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #555;
    margin-top: 24px;
    position: relative;
    padding-bottom: 3px;
    text-decoration: none;
    transition: color .25s;
}
.tcr-hero-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #99710D;
    transition: width .35s cubic-bezier(.25,.1,.25,1);
}
.tcr-hero-link:hover { color: #99710D; }
.tcr-hero-link:hover::after { width: 100%; }
.tcr-hero-link-arrow {
    font-size: 14px;
    display: inline-block;
    transition: transform .3s ease;
}
.tcr-hero-link:hover .tcr-hero-link-arrow { transform: translateX(5px); }

/* ============================
   FEATURED GRID (Album Reviews)
   ============================ */
.tcr-feat { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .tcr-feat { grid-template-columns: 3fr 2fr; gap: 36px; align-items: stretch; } }
.tcr-feat-big { display: flex; flex-direction: column; }
.tcr-feat-big .tcr-img-wrap { aspect-ratio: 1200 / 850; }
.tcr-feat-big .tcr-desc { font-size: 17px; color: #555; line-height: 1.65; margin-top: 8px; }
.tcr-feat-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.tcr-feat-sm { position: relative; overflow: hidden; }
.tcr-feat-sm .tcr-img-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; aspect-ratio: auto; }
.tcr-feat-sm .tcr-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.tcr-feat-sm-over {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
}
.tcr-feat-sm-over .tcr-title-md { margin: 6px 0 4px; }

/* ============================
   GRIDS
   ============================ */
.tcr-g3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 520px) { .tcr-g3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tcr-g3 { grid-template-columns: repeat(3, 1fr); } }
.tcr-g2x2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .tcr-g2x2 { grid-template-columns: repeat(2, 1fr); } }
.tcr-row2-hide { display: none; }
@media (min-width: 900px) { .tcr-row2-hide { display: block; } }

/* ============================
   SPOTLIGHT
   ============================ */
.tcr-spot { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
@media (min-width: 768px) { .tcr-spot { grid-template-columns: 3fr 2fr; } }
.tcr-spot-img { position: relative; overflow: hidden; aspect-ratio: 1200 / 850; display: block; }
.tcr-spot-img img { width: 100%; height: 100%; object-fit: cover; }
.tcr-spot-img:hover .tcr-title-md { color: var(--tcr-gold); }
.tcr-spot-over {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.tcr-spot-list { display: flex; flex-direction: column; }
.tcr-spot-item {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-decoration: none;
    transition: padding-left .3s;
}
.tcr-spot-item:hover { padding-left: 8px; }
.tcr-spot-t {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    margin-top: 6px;
    line-height: 1.25;
}
.tcr-spot-item:hover .tcr-spot-t { color: #fff; }
.tcr-spot-more {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--tcr-gold);
    padding-top: 24px;
    text-decoration: none;
    border: 0;
}

/* ============================
   HIGHLIGHT
   ============================ */
.tcr-highlight { background: #151515; }
.tcr-highlight-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tcr-highlight-inner { grid-template-columns: 1fr 1fr; min-height: 480px; } }
.tcr-highlight-img { overflow: hidden; display: block; }
.tcr-highlight-img img { width: 100%; height: 100%; object-fit: cover; }
.tcr-highlight-text {
    padding: 56px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) { .tcr-highlight-text { padding: 64px 48px; } }
.tcr-highlight-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 16px 0 24px;
    letter-spacing: -.02em;
}
.tcr-highlight-title a { color: #fff; transition: color .3s; }
.tcr-highlight-title a:hover { color: var(--tcr-gold); }
.tcr-highlight-quote {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
    margin: 0 0 32px;
    border-left: 2px solid var(--tcr-gold);
    padding-left: 20px;
}

/* ============================
   INTERVIEWS
   ============================ */
.tcr-interview-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .tcr-interview-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; } }
.tcr-interview-big .tcr-img-wrap { aspect-ratio: 1200 / 850; }
.tcr-interview-side { display: flex; flex-direction: column; gap: 24px; }
.tcr-interview-sm { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; }
.tcr-interview-sm .tcr-img-wrap { aspect-ratio: 1200 / 850; }
.tcr-interview-sm .tcr-card-info { padding: 0; }

/* ============================
   AUDIO & TECH
   ============================ */
.tcr-audio-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 768px) { .tcr-audio-grid { grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; } }
.tcr-audio-feat .tcr-img-wrap { aspect-ratio: 1200 / 850; }
.tcr-audio-list { display: flex; flex-direction: column; }
.tcr-audio-item { padding: 24px 0; border-bottom: 1px solid #E0DDD8; }
.tcr-audio-item:first-child { border-top: 1px solid #E0DDD8; }
.tcr-audio-item .tcr-desc { font-size: 15px; margin-top: 4px; }

/* ============================
   COMPOSERS TEXT GRID
   ============================ */
.tcr-comp-text-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (min-width: 520px) { .tcr-comp-text-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tcr-comp-text-grid { grid-template-columns: repeat(4, 1fr); } }
.tcr-comp-text {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}
.tcr-comp-text:hover { background: rgba(255,255,255,.04); padding-left: 32px; }
.tcr-comp-text span {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,.3);
    font-weight: 400;
}

/* ============================
   FROM THE VAULT
   ============================ */
.tcr-vault-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 768px) { .tcr-vault-grid { grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; } }
.tcr-vault-feat .tcr-img-wrap { aspect-ratio: 1200 / 850; }
.tcr-vault-feat img { transition: transform .6s; }
.tcr-vault-feat:hover img { transform: scale(1.04); }
.tcr-vault-list { display: flex; flex-direction: column; }
.tcr-vault-item { padding: 24px 0; border-bottom: 1px solid #E0DDD8; }
.tcr-vault-item:first-child { border-top: 1px solid #E0DDD8; }
.tcr-vault-item .tcr-desc { font-size: 15px; }

/* ============================
   BROWSE BY ERA & GENRE
   ============================ */
.tcr-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tcr-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #E0DDD8;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    transition: all .25s;
}
.tcr-tag:hover { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.tcr-tag span { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 400; color: #999; }
.tcr-tag:hover span { color: rgba(255,255,255,.5); }

/* ============================
   THE CLASSIC SELECT BANNER
   ============================ */
.tcr-select-banner {
    background: #F7F5F0;
    border-top: 1px solid #E0DDD8;
    border-bottom: 1px solid #E0DDD8;
}
.tcr-select-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 32px;
    align-items: center;
}
@media (min-width: 768px) { .tcr-select-inner { grid-template-columns: 1fr 1fr; gap: 64px; padding: 96px 32px; } }
.tcr-select-intro {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #99710D;
    margin-bottom: 20px;
}
.tcr-select-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: #1A1A1A;
    margin-bottom: 20px;
}
.tcr-select-desc {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}
.tcr-coming-soon {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #99710D;
    padding: 10px 24px;
    border: 1.5px solid #99710D;
    border-radius: 2px;
    opacity: .8;
}
.tcr-select-img { text-align: center; }
.tcr-select-img img { max-width: 380px; width: 100%; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.12)); }

/* ============================
   NEWSLETTER
   ============================ */
.tcr-nl {
    padding: 80px 32px;
    background: #151515;
    text-align: center;
    border-bottom: 3px solid var(--tcr-gold);
}
.tcr-nl-inner { max-width: 540px; margin: 0 auto; }
.tcr-nl-logo { width: 48px; height: auto; margin: 0 auto 24px; }
.tcr-nl-sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    margin-bottom: 36px;
    font-weight: 400;
    margin-top: -32px;
}
.tcr-nl-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
}
.tcr-nl-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-right: none !important;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    outline: none;
    box-shadow: none !important;
    width: auto;
}
.tcr-nl-input::placeholder { color: rgba(255,255,255,.25); font-size: 14px; }
.tcr-nl-input:focus { border-color: rgba(255,255,255,.35) !important; }
.tcr-nl-submit {
    padding: 14px 28px;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: rgba(255,255,255,.7);
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
}
.tcr-nl-submit:hover {
    background: var(--tcr-gold) !important;
    border-color: var(--tcr-gold) !important;
    color: #0A0A0A;
}

/* ============================
   ADS
   ============================ */
.tcr-ad-row { padding: 24px 0; background: #F7F5F0; text-align: center; }
.tcr-ad-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.03);
    border: 1px dashed #ccc;
    color: #bbb;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}
.tcr-ad-728x90 { width: 728px; max-width: 100%; height: 90px; }

/* ============================
   HOMEPAGE — Override parent content wrapper
   ============================ */
.home .site-content > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.home .site-content > .container > .row {
    margin: 0;
    width: 100%;
}
/* Scroll reveal */
.tcr-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.tcr-revealed { opacity: 1; transform: translateY(0); }

/* Hide the parent page builder content if it exists alongside our sections */
.home .site-content .panel-grid {
    display: none !important;
}

/* ========================================================================
   MOBILE RESPONSIVE — max-width: 767px
   ======================================================================== */
@media (max-width: 767px) {

    /* --- Global mobile adjustments --- */
    .tcr-container { padding: 0 20px; }
    .tcr-section { padding: 64px 0; }
    .tcr-section-tight-bottom { padding-bottom: 48px; }
    .tcr-section-tight-top { padding-top: 48px; }
    .tcr-sh { font-size: 28px; margin-bottom: 32px; }
    .tcr-sh-sm { font-size: 22px; }
    .tcr-cta { margin-top: 36px; }
    .tcr-mt-sep { margin-top: 36px; }

    /* --- Hero --- */
    .tcr-hero-text { padding: 32px 20px 40px; }
    .tcr-hero-title { font-size: 28px; margin: 12px 0; }
    .tcr-hero-desc { font-size: 16px; }

    /* --- Featured / Album Reviews --- */
    .tcr-feat { gap: 24px; }
    .tcr-feat-sm { min-height: 220px; }
    .tcr-feat-sm-over { padding: 16px; }
    .tcr-title-lg { font-size: 24px; }
    .tcr-title-md { font-size: 18px; }
    .tcr-feat-big .tcr-desc { font-size: 15px; }

    /* --- 3-column grid (reviews, opera, news, guides) --- */
    .tcr-g3 { gap: 24px; }

    /* --- Spotlight --- */
    .tcr-spot { gap: 0; margin-top: 32px; }
    .tcr-spot-over { padding: 20px; }
    .tcr-spot-item { padding: 18px 0; }
    .tcr-spot-t { font-size: 16px; }

    /* --- Ad row --- */
    .tcr-ad-728x90 { width: 320px; height: 50px; }

    /* --- Highlighted Review --- */
    .tcr-highlight-text { padding: 40px 20px; }
    .tcr-highlight-title { font-size: 24px; margin: 12px 0 20px; }
    .tcr-highlight-quote { font-size: 15px; padding-left: 16px; margin-bottom: 24px; }

    /* --- Interviews --- */
    .tcr-interview-sm { grid-template-columns: 120px 1fr; gap: 16px; }
    .tcr-interview-side { gap: 20px; }

    /* --- Audio & Tech --- */
    .tcr-audio-item { padding: 18px 0; }

    /* --- Browse Composers --- */
    .tcr-comp-text { font-size: 16px; padding: 16px 20px; }

    /* --- From the Vault --- */
    .tcr-vault-item { padding: 18px 0; }

    /* --- Browse by Era/Genre tags --- */
    .tcr-tags { gap: 8px; }
    .tcr-tag { padding: 10px 18px; font-size: 14px; }

    /* --- Classic Select Banner --- */
    .tcr-select-inner { padding: 56px 20px; gap: 24px; }
    .tcr-select-title { font-size: 28px; }
    .tcr-select-desc { font-size: 16px; }

    /* --- Newsletter --- */
    .tcr-nl { padding: 56px 20px; }
    .tcr-nl-sub { font-size: 15px; margin-top: -24px; }
    .tcr-nl-form { flex-direction: column; gap: 0; }
    .tcr-nl-input { border-right: 1px solid rgba(255,255,255,.15) !important; }
    .tcr-nl-submit { border-top: none !important; }

    /* --- Search results dropdown --- */
    .tcr-search-results { left: 0; right: 0; width: auto; max-width: none; }
    .tcr-search-result { padding: 12px 16px; gap: 12px; }
    .tcr-search-result-title { font-size: 14px; }
    .tcr-search-result-desc { font-size: 12px; -webkit-line-clamp: 1; }

    /* --- Footer --- */
    .tcr-footer-main { padding: 36px 0; }
    .tcr-footer-grid { gap: 24px; }
    .tcr-fh { margin-bottom: 10px; }
    .tcr-fl li { margin-bottom: 6px; }
    .tcr-fl a { font-size: 14px; }
    .tcr-footer-bot .tcr-container { flex-direction: column; align-items: flex-start; gap: 12px; }
    .tcr-fnav { gap: 20px; }
}

/* ========================================================================
   TABLET — 768px to 1079px (hamburger nav still active, content grids are 2-col)
   ======================================================================== */
@media (min-width: 768px) and (max-width: 1079px) {
    /* Header: logo only, no ad banner */
    .tcr-header-inner { padding: 14px 24px; }
    .tcr-container { padding: 0 24px; }

    /* Tighten section spacing slightly */
    .tcr-section { padding: 96px 0; }

    /* Hero text area */
    .tcr-hero-text { padding: 40px 32px; }
    .tcr-hero-title { font-size: clamp(26px, 3.5vw, 36px); }
}

/* Nav item spacing at narrower desktop (1080–1280) */
@media (min-width: 1080px) and (max-width: 1280px) {
    .tcr-nav-menu li a { padding: 14px 16px; letter-spacing: .1em; }
}
