/*
 * Sector Gaming TV visual layer.
 *
 * Presentation lives here so final layout is available at first paint.
 * Site functionality belongs in SGTV Core.
 */

html {
    background: #080b10;
    scrollbar-gutter: stable;
}

body {
    background: #080b10;
    color: #eef4f1;
    text-rendering: optimizeLegibility;
}

.site-main.sgtv-theme-front,
.site-main.sgtv-theme-review-index,
.site-main.sgtv-theme-about,
.site-main.sgtv-theme-contact {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sgtv-skip-link {
    position: absolute;
    left: 14px;
    top: -80px;
    z-index: 9999;
    padding: 10px 12px;
    border-radius: 6px;
    background: #9cff00;
    color: #071008;
    font-weight: 900;
    text-decoration: none;
}

.sgtv-skip-link:focus {
    top: 14px;
}

.sgtv-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(5, 7, 11, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
}

.admin-bar .sgtv-site-header {
    position: relative;
    top: 0;
}

.sgtv-site-header__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 88px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(170px, 220px);
    align-items: center;
    gap: 16px;
}

.sgtv-site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #f2f7fb;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.05;
    text-decoration: none;
    text-transform: uppercase;
}

.sgtv-site-header__brand img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.sgtv-site-header__brand-text {
    display: inline-block;
}

.sgtv-site-header__brand-text small {
    display: block;
    color: #9fb0bd;
    font-size: 10px;
    letter-spacing: .14em;
}

body > div[data-elementor-type="ehp-header"],
body > .elementor-location-header,
body > .ehp-header,
.ehp-header__site-link,
.ehp-header__site-logo {
    display: none !important;
    visibility: hidden !important;
}

.sgtv-site-nav {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
}

.sgtv-site-nav a,
.sgtv-site-header__lang,
.sgtv-site-header__patreon {
    color: #e8f1f2;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.sgtv-site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    text-transform: uppercase;
}

.sgtv-site-nav a:hover,
.sgtv-site-header__lang:hover {
    color: #9cff00;
}

.sgtv-site-nav a.is-active {
    background: rgba(156, 255, 0, .14);
    color: #9cff00;
    box-shadow: inset 0 0 0 1px rgba(156, 255, 0, .45);
}

.sgtv-site-header__actions {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: flex-end;
    min-width: 0;
}

.sgtv-site-header__menu,
.sgtv-site-nav__support {
    display: none;
}

.sgtv-site-header__menu {
    position: relative;
    place-items: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: rgba(255, 255, 255, .055);
    color: #eef4f1;
    cursor: pointer;
}

.sgtv-site-header__menu span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.sgtv-site-header__menu:focus-visible {
    outline: 2px solid #9cff00;
    outline-offset: 3px;
}

.sgtv-site-header.is-menu-open .sgtv-site-header__menu span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.sgtv-site-header.is-menu-open .sgtv-site-header__menu span:nth-child(2) {
    opacity: 0;
}

.sgtv-site-header.is-menu-open .sgtv-site-header__menu span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.sgtv-site-header__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 30px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    font-size: 12px;
}

.sgtv-site-header__patreon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 7px;
    background: #9cff00;
    color: #071008;
    font-weight: 950;
}

.sgtv-site-header__patreon:hover {
    color: #071008;
    filter: brightness(1.06);
}

.sgtv-theme-front .sgtv-hero h1 {
    font-size: clamp(54px, 5.3vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.02 !important;
}

@media (max-width: 860px) {
    .sgtv-site-header__inner {
        grid-template-columns: 1fr auto;
        min-height: 76px;
        gap: 12px;
        padding: 10px 0;
    }

    .sgtv-site-header__brand img {
        width: 42px;
        height: 42px;
    }

    .sgtv-site-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .sgtv-site-nav::-webkit-scrollbar {
        display: none;
    }

    .sgtv-site-nav a,
    .sgtv-site-header__patreon {
        font-size: 12px;
    }
}

@media (max-width: 560px) {
    .sgtv-site-header__inner {
        width: calc(100% - 24px);
        align-items: flex-start;
        grid-template-columns: 1fr auto;
        gap: 8px 12px;
        padding: 10px 0;
    }

    .sgtv-site-header__brand-text {
        display: none;
    }

    .sgtv-site-header__brand img {
        width: 38px;
        height: 38px;
    }

    .sgtv-site-nav {
        grid-column: 1 / -1;
        width: 100%;
        padding-bottom: 2px;
    }

    .sgtv-site-header__actions {
        justify-self: end;
    }

    .sgtv-site-header__lang {
        min-width: 30px;
        min-height: 28px;
    }

    .sgtv-site-header__patreon {
        min-height: 34px;
        padding: 8px 10px;
    }
}

@media (max-width: 700px) {
    .sgtv-site-header__inner {
        width: calc(100% - 24px);
        min-height: 64px;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px 12px;
        padding: 8px 0;
    }

    .sgtv-site-header__brand {
        grid-column: 1;
        grid-row: 1;
    }

    .sgtv-site-header__brand-text,
    .sgtv-site-header__patreon {
        display: none;
    }

    .sgtv-site-header__brand img {
        width: 40px;
        height: 40px;
    }

    .sgtv-site-header__actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        gap: 7px;
    }

    .sgtv-site-header__menu {
        display: inline-grid;
    }

    .sgtv-site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        width: 100%;
        max-width: none;
        overflow: visible;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0 0 4px;
        padding: 7px;
        border-radius: 8px;
    }

    .sgtv-site-header.is-menu-open .sgtv-site-nav {
        display: flex;
    }

    .sgtv-site-nav a,
    .sgtv-site-nav .sgtv-site-nav__support {
        display: flex;
        justify-content: center;
        width: 100%;
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .sgtv-site-nav .sgtv-site-nav__support {
        margin-top: 3px;
        background: #9cff00;
        color: #071008;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sgtv-site-header__menu span {
        transition: none;
    }
}

/* Home polish: align the two hero editorial cards and quieten support blocks. */
@media (min-width: 901px) {
    .sgtv-hero .sgtv-episode-card {
        margin-top: auto !important;
    }

    body .sgtv-theme-front .sgtv-hero .sgtv-episode-card {
        margin-top: auto !important;
    }
}

.sgtv-theme-front .sgtv-hero .sgtv-episode-card h2 {
    font-size: 24px !important;
    line-height: 1.12 !important;
    max-width: 94% !important;
}

.sgtv-hero__media .sgtv-featured--compact:not(.sgtv-episode-card) h2 {
    font-size: 24px !important;
    line-height: 1.12 !important;
    max-width: 94% !important;
}

.sgtv-latest-episodes h2:before {
    font-size: clamp(15px, 2vw, 24px) !important;
    margin-bottom: 12px !important;
}

.sgtv-latest-episodes iframe {
    margin-top: 10px !important;
}

body .sgtv-theme-front .sgtv-latest-episodes.sgtv-wrap h2:before {
    font-size: clamp(15px, 2vw, 24px) !important;
    line-height: 1.08 !important;
    margin-bottom: 12px !important;
}

#patreon .sgtv-support-card {
    --sg-support-image: url("/wp-content/uploads/sector-assets/pers-transp.png") !important;
    background:
        linear-gradient(90deg, rgba(8, 12, 18, .98) 0%, rgba(8, 12, 18, .9) 48%, rgba(8, 12, 18, .22) 100%),
        var(--sg-support-image) right bottom / auto 92% no-repeat,
        linear-gradient(135deg, #101823 0%, #071008 100%) !important;
}

#patreon .sgtv-support-card h2,
#patreon .sgtv-social-card h3 {
    font-size: clamp(25px, 2.6vw, 30px) !important;
    line-height: 1.12 !important;
    text-transform: none !important;
}

#patreon .sgtv-support-card p,
#patreon .sgtv-social-card p {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

#patreon .sgtv-social-card {
    overflow: hidden !important;
    border-color: rgba(156, 255, 0, .2) !important;
    background:
        linear-gradient(90deg, rgba(8, 12, 18, .98) 0%, rgba(8, 12, 18, .88) 54%, rgba(8, 12, 18, .18) 100%),
        var(--sg-social-image) right bottom / auto 92% no-repeat,
        linear-gradient(135deg, #101823 0%, #071008 100%) !important;
}

#patreon .sgtv-social-card::before,
#patreon .sgtv-social-card::after {
    display: none !important;
}

#patreon .sgtv-social-card h3::before {
    content: "COMUNIDAD DE TELEGRAM";
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin: 0 0 14px;
    padding: 7px 10px;
    border: 1px solid rgba(156, 255, 0, .46);
    border-radius: 5px;
    background: rgba(156, 255, 0, .1);
    color: #9cff00;
    font-size: 12px;
    font-weight: 950;
    line-height: 1.1;
}

#patreon .sgtv-social-card h3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

@media (max-width: 700px) {
    #patreon .sgtv-support-card,
    #patreon .sgtv-social-card {
        background:
            linear-gradient(180deg, rgba(8, 12, 18, .96) 0%, rgba(8, 12, 18, .9) 100%),
            linear-gradient(135deg, #101823 0%, #071008 100%) !important;
    }

    .sgtv-hero__media .sgtv-featured--compact:not(.sgtv-episode-card) h2 {
        max-width: 100% !important;
    }
}

/* Migrated from sgtv-core-style; keep presentation in the child theme. */
body .elementor-259,body .elementor-element-2315cbd4,body .elementor-element-2315cbd4 > .elementor-widget-container{height:auto!important;min-height:0!important;max-height:none!important}
body .sgtv-page{min-height:0!important}
.sgtv-hero .sgtv-hero__copy > .sgtv-actions{display:none!important}
@media (min-width:901px){.sgtv-hero .sgtv-episode-card{margin-top:auto!important}}
.sgtv-editorial-footer{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;padding:18px 20px;background:#05070b;border-top:1px solid rgba(255,255,255,.12)}
.sgtv-editorial-footer a{display:inline-flex;align-items:center;min-height:28px;color:#d9f2ff;text-decoration:none;font-weight:800;font-size:13px;line-height:1.35}
.sgtv-editorial-footer a:hover{color:#9cff00}
.page .site-main{background:#080b10!important}
.sgtv-page{min-height:100vh;background:radial-gradient(circle at 18% 10%,rgba(156,255,0,.12),transparent 30%),radial-gradient(circle at 92% 18%,rgba(70,183,255,.1),transparent 34%),#080b10!important;color:#eef4f1!important}
.sgtv-index-hero .sgtv-kicker{margin-bottom:18px!important}
.sgtv-index-hero h1{margin-top:0!important}
.sgtv-card__image{position:relative!important;overflow:hidden!important}
.sgtv-featured__image{position:absolute!important;inset:0!important;display:block!important;width:auto!important;height:auto!important;overflow:hidden!important}
.sgtv-card-author-avatar{position:absolute;right:10px;bottom:10px;z-index:2;display:inline-flex;width:42px;height:42px;border:2px solid rgba(156,255,0,.72);border-radius:999px;background:#080b10;box-shadow:0 10px 26px rgba(0,0,0,.45)}
.sgtv-featured__image .sgtv-card-author-avatar{right:14px;bottom:14px;width:48px;height:48px}
.sgtv-card-author-avatar img{display:block;width:100%;height:100%;border-radius:inherit;object-fit:cover}
.sgtv-editorial-page-view .site-main{max-width:1120px;margin:0 auto;padding:86px 24px 92px;color:#f3f6fb}
.sgtv-editorial-page-view .page-content{max-width:980px;margin:0 auto}
.sgtv-editorial-page-view .page-content h1,.sgtv-editorial-page-view .page-content h2{display:block;position:static!important;clear:both;margin:0 0 16px!important;padding:0!important;font-size:clamp(30px,4vw,54px)!important;line-height:1.08!important;letter-spacing:0!important;color:#fff}
.sgtv-editorial-page-view .page-content p{display:block;position:static!important;margin:0 0 26px!important;padding:0!important;max-width:920px;font-size:18px!important;line-height:1.75!important;color:#d8e2ea!important;transform:none!important}
.sgtv-editorial-page-view .page-content ul{display:block;position:static!important;margin:0 0 30px 0!important;padding:0 0 0 24px!important;list-style:disc outside!important;transform:none!important}
.sgtv-editorial-page-view .page-content li{display:list-item;position:static!important;margin:0 0 12px!important;padding:0!important;font-size:17px!important;line-height:1.65!important;color:#e8eef4!important;transform:none!important}
.sgtv-editorial-page-view .page-content a{color:#9cff00;text-decoration:none;font-weight:800}
.sgtv-preview-page-view .site-main{max-width:none!important;width:100%!important;margin:0!important;padding:0 0 92px!important;background:radial-gradient(circle at 18% 10%,rgba(156,255,0,.12),transparent 30%),radial-gradient(circle at 92% 18%,rgba(70,183,255,.1),transparent 34%),#080b10!important;color:#eef4f1!important}
.sgtv-preview-page-view .page-content{width:min(1120px,calc(100% - 48px))!important;max-width:1120px!important;margin:0 auto!important;padding:86px 0 0!important}
.sgtv-preview-page-view .page-content h1,.sgtv-preview-page-view .page-content h2{margin-top:0!important}
.sgtv-theme-preview-index .sgtv-page{background:radial-gradient(circle at 16% 8%,rgba(156,255,0,.12),transparent 32%),radial-gradient(circle at 88% 18%,rgba(70,183,255,.12),transparent 36%),#080b10!important}
.sgtv-theme-preview-index .sgtv-index-hero .sgtv-kicker,
.sgtv-theme-preview-index .sgtv-index-featured .sgtv-kicker,
.sgtv-theme-preview-index .sgtv-card__meta{border-color:rgba(70,183,255,.42)!important;background:rgba(70,183,255,.08)!important;color:#a7e8ff!important}
.sgtv-theme-preview-index .sgtv-index-tools .sgtv-pill{border-color:rgba(70,183,255,.32)!important}
.sgtv-theme-preview-index .sgtv-card__read{color:#a7e8ff!important}
.sgtv-theme-preview-index .sgtv-featured__image .sgtv-card-author-avatar,
.sgtv-theme-preview-index .sgtv-card-author-avatar{border-color:rgba(70,183,255,.75)!important}
.sgtv-latest-episodes.sgtv-wrap{width:min(1120px,calc(100% - 48px))!important;max-width:1120px!important;margin:34px auto!important;box-sizing:border-box}
.sgtv-latest-episodes h2{font-size:0!important;line-height:1.08!important}
.sgtv-latest-episodes h2:before{content:"Todos los programas";display:block;color:inherit;font-size:clamp(30px,4vw,48px)!important;line-height:1.08!important}
.sgtv-latest-episodes iframe{display:block!important;width:100%!important;max-width:100%!important;min-height:360px!important;border:0!important;border-radius:12px!important}
.sgtv-review-panel{display:block!important;overflow:visible!important}
.sgtv-review-panel dl{display:grid!important;grid-template-columns:1fr!important;gap:13px!important;margin:0 0 16px!important;padding:0!important}
.sgtv-review-panel dl>div{display:block!important;min-height:0!important;margin:0!important;padding:0!important}
.sgtv-review-panel dt{display:block!important;margin:0!important;font-size:12px!important;line-height:1.3!important}
.sgtv-review-panel dd{display:block!important;margin:4px 0 0!important;font-size:15px!important;line-height:1.35!important;overflow-wrap:anywhere!important}
.sgtv-review-author{display:flex!important;align-items:center!important;gap:9px!important;min-width:0!important;line-height:1.2!important}
.sgtv-review-author img{width:34px!important;height:34px!important;border-radius:999px!important;object-fit:cover!important;flex:0 0 34px!important}
.sgtv-review-author span{min-width:0!important;line-height:1.2!important}
.sgtv-review-hero-author{display:inline-flex!important;align-items:center!important;gap:10px!important;margin:14px 0 10px!important;color:#d8e2ea!important;font-size:15px!important;font-weight:850!important;line-height:1.2!important}
.sgtv-review-hero-author img{width:38px!important;height:38px!important;border-radius:999px!important;object-fit:cover!important;border:1px solid rgba(156,255,0,.42)!important;background:#101823!important}
.sgtv-review-hero-subtitle{max-width:780px!important;margin:12px 0 0!important;color:#f2f7fb!important;font-size:22px!important;line-height:1.45!important;font-weight:850!important}
.sgtv-review-hero-excerpt{max-width:760px!important;margin-top:12px!important}
.single-post .sgtv3-single-copy h1,.single-post .sgtv-single-hero h1{max-width:720px!important;font-size:clamp(34px,4.1vw,48px)!important;line-height:1.08!important;letter-spacing:0!important;text-wrap:balance!important}
.sgtv-review-platforms{display:flex!important;flex-wrap:wrap!important;gap:8px!important;clear:both!important;width:100%!important;margin:18px 0 0!important;padding:16px 0 0!important;border-top:1px solid rgba(255,255,255,.12)!important;line-height:1.2!important;box-sizing:border-box!important}
.sgtv-review-platforms span{display:inline-flex!important;align-items:center!important;min-height:28px!important;padding:5px 9px!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:5px!important;background:rgba(255,255,255,.06)!important;color:#dbe7e6!important;font-size:12px!important;font-weight:850!important;line-height:1.15!important;white-space:normal!important}
.sgtv-review-extra-facts{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;margin:18px 0 0!important;padding:16px 0 0!important;border-top:1px solid rgba(255,255,255,.12)!important}
.sgtv-review-extra-facts+ .sgtv-review-platforms{margin-top:16px!important}
.single-post .sgtv-single-hero__grid{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(280px,360px)!important;gap:24px!important;align-items:center!important}
.single-post .sgtv-single-hero__grid>div:first-child{grid-column:1!important;grid-row:1!important;align-self:center!important}
.single-post .sgtv-single-side{display:contents!important}
.single-post .sgtv-single-media{grid-column:2!important;grid-row:1!important;align-self:center!important;width:100%!important;min-height:220px!important;aspect-ratio:16/9!important;border-radius:8px!important}
.single-post .sgtv-review-panel{grid-column:1/-1!important;grid-row:2!important;display:grid!important;grid-template-columns:repeat(5,minmax(140px,1fr))!important;gap:18px 22px!important;margin-top:8px!important;padding:20px!important}
.single-post .sgtv-review-panel__verdict{grid-column:1/-1!important;margin:0!important}
.single-post .sgtv-review-score{grid-column:auto!important;grid-row:auto!important;display:block!important;min-width:0!important;margin:0!important;padding:0!important;border:0!important;background:transparent!important}
.single-post .sgtv-review-score__value{display:block!important;min-width:0!important;min-height:0!important;width:auto!important;background:transparent!important;color:#fff!important;font-size:17px!important;line-height:1.35!important;text-align:left!important}
.single-post .sgtv-review-score__value small{font-size:12px!important}
.single-post .sgtv-review-score__label{margin-bottom:4px!important;color:#9fb0bd!important;font-size:12px!important;line-height:1.3!important}
.single-post .sgtv-review-panel dl,.single-post .sgtv-review-extra-facts{display:contents!important;margin:0!important;padding:0!important;border:0!important}
.single-post .sgtv-review-panel dl>div,.single-post .sgtv-review-extra-facts>div{display:block!important;min-width:0!important;margin:0!important;padding:0!important}
.single-post .sgtv-review-panel dt,.single-post .sgtv-review-extra-facts dt{white-space:normal!important;overflow-wrap:anywhere!important}
.single-post .sgtv-review-panel dd,.single-post .sgtv-review-extra-facts dd{min-width:0!important;overflow-wrap:anywhere!important}
.single-post .sgtv-review-platforms{grid-column:1/-1!important;margin:0!important}
.single-post .sgtv-review-disclosure{grid-column:1/-1!important;margin:0!important;padding-top:10px!important;border-top:1px solid rgba(255,255,255,.08)!important;color:#9fb0bd!important;font-size:12px!important;line-height:1.45!important}
.single-post .sgtv-review-disclosure strong{color:#c8d3dc!important;font-size:12px!important}
.sgtv-people .sgtv-producer-patrons{grid-column:1/-1!important;overflow:visible!important;padding:20px 22px!important;border:1px solid rgba(156,255,0,.2)!important;border-radius:8px!important;background:linear-gradient(135deg,rgba(13,20,30,.96),rgba(23,36,51,.82))!important;box-shadow:none!important}
.sgtv-producer-patrons .sgtv-person__body{padding:0!important}
.sgtv-producer-patrons .sgtv-kicker{margin-bottom:20px!important}
.sgtv-producer-patrons h3{margin:0 0 10px!important;color:#fff!important;font-size:22px!important;line-height:1.15!important}
.sgtv-producer-patrons p{max-width:780px!important;margin:0 0 14px!important;color:#d8e2ea!important;font-size:15px!important;line-height:1.55!important}
.sgtv-producer-patrons__list{display:flex;flex-wrap:wrap;gap:10px;margin:0!important;padding:0!important;list-style:none!important}
.sgtv-producer-patrons__list li{display:inline-flex;margin:0!important;padding:8px 10px!important;border:1px solid rgba(156,255,0,.34);border-radius:999px;background:rgba(156,255,0,.08);color:#efffe4!important;font-size:14px!important;font-weight:900!important;line-height:1.1!important}
.sgtv-section__head .sgtv-kicker,.sgtv-support-card .sgtv-kicker{display:inline-flex!important;margin-bottom:14px!important}
.sgtv-section__head h2,.sgtv-support-card h2{margin-top:0!important;padding-top:0!important;line-height:1.08!important}
.sgtv-section__head p,.sgtv-support-card p{margin-top:14px!important}
.sgtv-core-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:30px}
.sgtv-core-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid rgba(255,255,255,.13);border-radius:8px;background:linear-gradient(180deg,#101823,#090d13);color:#fff;text-decoration:none;box-shadow:0 18px 42px rgba(0,0,0,.26)}
.sgtv-core-card__image{display:block;position:relative;overflow:hidden;aspect-ratio:16/9;background:#101828 center/cover no-repeat}
.sgtv-core-card__image .sgtv-card-author-avatar{right:10px;bottom:10px}
.sgtv-core-card__body{display:flex;flex-direction:column;gap:9px;padding:16px}
.sgtv-core-card__body strong{font-size:20px;line-height:1.18;color:#fff}
.sgtv-core-card__body span:last-child{font-size:15px;line-height:1.55;color:#d8e2ea}
.sgtv-core-card__meta{display:inline-flex;width:max-content;max-width:100%;padding:5px 8px;border:1px solid rgba(156,255,0,.34);border-radius:5px;color:#9cff00;font-size:12px;font-weight:900;line-height:1.1;text-transform:uppercase}
.sgtv-contact-form{display:grid;gap:16px;max-width:760px;margin-top:28px}
.sgtv-contact-form p{margin:0!important;max-width:none!important}
.sgtv-contact-form label{display:grid;gap:8px;color:#f6fbff;font-weight:850}
.sgtv-contact-form input,.sgtv-contact-form textarea{width:100%;box-sizing:border-box;border:1px solid rgba(255,255,255,.18);border-radius:8px;background:#0b1119;color:#fff;padding:13px 14px;font:inherit;line-height:1.4}
.sgtv-contact-form textarea{resize:vertical;min-height:170px}
.sgtv-contact-form button,.sgtv-support-embed__actions a{display:inline-flex;width:max-content;align-items:center;justify-content:center;min-height:44px;padding:11px 16px;border:0;border-radius:8px;background:#9cff00;color:#071008;font-weight:950;text-decoration:none;cursor:pointer}
.sgtv-editorial-page-view .page-content .sgtv-contact-form__trap,.sgtv-contact-form__trap{display:none!important;position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.sgtv-form-notice{max-width:760px;margin:20px 0;padding:14px 16px;border-radius:8px;font-weight:850}
.sgtv-form-notice--ok{background:rgba(156,255,0,.12);border:1px solid rgba(156,255,0,.32);color:#dfffc3}
.sgtv-form-notice--error{background:rgba(248,113,113,.12);border:1px solid rgba(248,113,113,.32);color:#ffd7d7}
.sgtv-support-summary{display:grid;gap:28px;max-width:980px;margin-top:18px}
.sgtv-support-summary__intro{max-width:900px!important;font-size:20px!important;color:#f2f7fb!important}
.sgtv-support-summary h3{margin:0 0 14px!important;color:#fff;font-size:24px!important;line-height:1.2!important;text-transform:none!important}
.sgtv-support-summary__grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.sgtv-support-summary__grid article,.sgtv-support-tiers article{border:1px solid rgba(255,255,255,.14);border-radius:8px;background:linear-gradient(180deg,#101823,#080c12);padding:20px}
.sgtv-support-summary__grid ul{margin-bottom:0!important}
.sgtv-support-tiers{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.sgtv-support-tiers strong{display:block;color:#fff;font-size:18px;line-height:1.2;text-transform:none!important}
.sgtv-support-tiers span{display:inline-flex;margin-top:9px;padding:5px 8px;border:1px solid rgba(156,255,0,.34);border-radius:5px;color:#9cff00;font-size:12px;font-weight:950;line-height:1.1;text-transform:none!important}
.sgtv-support-tiers p{margin:12px 0 0!important;font-size:15px!important;line-height:1.55!important;color:#d8e2ea!important}
.sgtv-support-summary__cta{margin:4px 0 0!important}
.sgtv-support-summary__cta a{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:12px 18px;border-radius:8px;background:#9cff00;color:#071008!important;font-weight:950;text-decoration:none}
.sgtv-support-summary__small{margin-top:-12px!important;font-size:14px!important;line-height:1.55!important;color:#aebdca!important}
.sgtv-support-embed{display:grid;gap:20px;max-width:780px;margin-top:28px;padding:24px;border:1px solid rgba(255,255,255,.14);border-radius:8px;background:linear-gradient(135deg,rgba(15,23,42,.94),rgba(88,28,135,.22))}
.sgtv-support-embed strong{display:block;margin-top:12px;font-size:32px;line-height:1.1;color:#fff}
.sgtv-support-embed p{margin:12px 0 0!important;color:#d8e2ea!important}
.sgtv-support-embed__note{font-size:14px;line-height:1.55;color:#aebdca!important}
.sgtv-support-embed__actions{display:flex!important;gap:12px!important;flex-wrap:wrap!important}
.sgtv-editorial-page-view .page-content .sgtv-support-embed__actions a:first-child{color:#071008!important}
.sgtv-support-embed__actions a:nth-child(2){background:#102034;color:#fff!important;border:1px solid rgba(255,255,255,.18)}
.sgtv-support-embed__login{max-width:310px}
.sgtv-support-embed__login .ptrn-button{margin:0!important}
.sgtv-support-embed__login .ptrn-button img{max-width:100%;height:auto!important}
@media (max-width:700px){.sgtv-editorial-page-view .site-main{padding:34px 20px 58px}.sgtv-editorial-page-view .page-content h1,.sgtv-editorial-page-view .page-content h2{font-size:30px!important}.sgtv-editorial-page-view .page-content p{font-size:16px!important;line-height:1.7!important}.sgtv-editorial-page-view .page-content li{font-size:15px!important}}
@media (max-width:1000px){.sgtv-support-tiers{grid-template-columns:1fr 1fr}}
@media (max-width:900px){.sgtv-core-card-grid{grid-template-columns:1fr 1fr}}
@media (max-width:900px){.single-post .sgtv-single-hero__grid{grid-template-columns:minmax(0,1fr)!important}.single-post .sgtv-single-hero__grid>div:first-child,.single-post .sgtv-single-media,.single-post .sgtv-review-panel{grid-column:1!important;grid-row:auto!important}.single-post .sgtv-single-media{min-height:200px!important}.single-post .sgtv-review-panel{grid-template-columns:repeat(2,minmax(0,1fr))!important}.single-post .sgtv-review-score,.single-post .sgtv-review-platforms{grid-row:auto!important}.single-post .sgtv-review-platforms{grid-column:1/-1!important}}
@media (max-width:700px){.sgtv-latest-episodes.sgtv-wrap{width:calc(100% - 32px)!important;margin:26px auto!important;padding:16px!important}.sgtv-latest-episodes iframe{min-height:300px!important}.sgtv-review-panel dl{gap:12px!important}.sgtv-review-platforms{margin-top:16px!important;padding-top:14px!important}.sgtv-core-card-grid{grid-template-columns:1fr}.sgtv-support-summary__grid,.sgtv-support-tiers{grid-template-columns:1fr}.sgtv-contact-form button{width:100%}.sgtv-support-embed{padding:18px}.sgtv-support-embed strong{font-size:27px}}
@media (max-width:560px){.single-post .sgtv-review-panel{grid-template-columns:1fr!important}.sgtv-people .sgtv-producer-patrons{padding:22px!important}}

/* Keep review hero grid items inside narrow mobile viewports. */
@media (max-width:700px) {
    .single-post .sgtv-single-hero__grid {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }
    .single-post .sgtv-single-hero__grid > *,
    .single-post .sgtv-single-hero__grid > div:first-child,
    .single-post .sgtv-single-media,
    .single-post .sgtv-review-panel {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .single-post .sgtv-single-hero h1,
    .single-post .sgtv-review-hero-subtitle,
    .single-post .sgtv-review-hero-excerpt {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
    }
}

/* Migrated from sgtv-core-render-fixes; keep presentation in the child theme. */
.single-post .sgtv-review-panel {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr)) !important;
    overflow: hidden !important;
}
.single-post .sgtv-content-hero {
    display: none !important;
}
.single-post .sgtv3-single-copy h1,
.single-post .sgtv-single-hero h1 {
    max-width: 720px !important;
    font-size: clamp(34px, 4.1vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
}
.single-post .sgtv-review-panel *,
.single-post .sgtv-review-panel dl > div,
.single-post .sgtv-review-extra-facts > div {
    min-width: 0 !important;
    box-sizing: border-box !important;
}
.single-post .sgtv-review-panel dt,
.single-post .sgtv-review-panel dd,
.single-post .sgtv-review-extra-facts dt,
.single-post .sgtv-review-extra-facts dd {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}
.single-post .sgtv-review-panel dd .sgtv-review-score__value {
    display: inline !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
}
.single-post .sgtv-review-panel dd .sgtv-review-score__value small {
    font-size: 12px !important;
}
.single-post .sgtv-review-panel dl.sgtv-review-panel__facts {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: repeat(15, minmax(0, 1fr)) !important;
    gap: 18px 22px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}
.single-post .sgtv-review-panel dl.sgtv-review-panel__facts > div {
    display: block !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-author {
    grid-column: 1 / span 4 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-published {
    grid-column: 5 / span 4 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-read-time {
    grid-column: 9 / span 4 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-developer {
    grid-column: 1 / span 3 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-publisher {
    grid-column: 4 / span 3 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-release {
    grid-column: 7 / span 3 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-reviewed-platform {
    grid-column: 10 / span 3 !important;
}
.single-post .sgtv-review-panel .sgtv-fact-score {
    grid-column: 13 / span 3 !important;
}
.single-post .sgtv-review-platforms {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}
.single-post .tag-links,
.single-post .tags-links,
.single-post .entry-footer .tag-links,
.single-post .entry-footer .tags-links {
    display: none !important;
}
.single-post .sgtv-conclusion-card {
    margin: 34px 0 30px !important;
    padding: 22px !important;
    border: 1px solid rgba(156,255,0,.4) !important;
    border-radius: 7px !important;
    background: linear-gradient(90deg, rgba(156,255,0,.12), transparent 35%), linear-gradient(180deg, #151f2d 0%, #0c131b 100%) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.24) !important;
    overflow: hidden !important;
}
.single-post .sgtv-conclusion-card__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid rgba(255,255,255,.13) !important;
}
.single-post .sgtv-conclusion-card h2 {
    margin: 0 !important;
    color: #9cff00 !important;
    font-size: 25px !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}
.single-post .sgtv-conclusion-card__actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
}
.single-post .sgtv-conclusion-card__seal {
    display: block !important;
    width: 74px !important;
    height: 74px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.42)) !important;
}
.single-post .sgtv-conclusion-card__score {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    min-width: 76px !important;
    min-height: 48px !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(156,255,0,.75) !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: #9cff00 !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}
.single-post .sgtv-conclusion-card__score strong {
    font-size: 25px !important;
}
.single-post .sgtv-conclusion-card__score small {
    margin-left: 2px !important;
    font-size: 14px !important;
}
.single-post .sgtv-conclusion-card__body p {
    color: #eaf2f8 !important;
}
.single-post .sgtv-conclusion-card__genre {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 18px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255,255,255,.13) !important;
}
.single-post .sgtv-conclusion-card__genre span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 28px !important;
    padding: 5px 9px !important;
    border: 1px solid rgba(156,255,0,.45) !important;
    border-radius: 5px !important;
    background: rgba(156,255,0,.11) !important;
    color: #9cff00 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
}
@media (max-width: 560px) {
    .single-post .sgtv-review-panel {
        grid-template-columns: 1fr !important;
    }
    .single-post .sgtv-review-panel dl.sgtv-review-panel__facts {
        grid-template-columns: 1fr !important;
    }
    .single-post .sgtv-review-panel dl.sgtv-review-panel__facts > div {
        grid-column: auto !important;
    }
    .single-post .sgtv-conclusion-card__top {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .single-post .sgtv-conclusion-card__actions {
        width: 100% !important;
        justify-content: space-between !important;
    }
    .single-post .sgtv-conclusion-card__seal {
        width: 64px !important;
        height: 64px !important;
    }
}
