/*
Theme Name: StumpView
Description: Independent editorial cricket publication theme.
Author: StumpView
Version: 1.2.0
Text Domain: stumpview
*/

:root {
    --sv-navy: #071923;
    --sv-navy2: #0d2d3d;
    --sv-orange: #f59a23;
    --sv-orange-dark: #da7c0b;
    --sv-text: #172832;
    --sv-muted: #6c7a83;
    --sv-bg: #f5f7f8;
    --sv-border: #e2e7ea;
    --sv-white: #ffffff;
    --sv-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--sv-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.wp-site-blocks {
    padding: 0;
}

.wp-site-blocks > * {
    margin-block-start: 0;
}

.wp-block-group,
.wp-block-columns,
.wp-block-query,
.wp-block-post-template {
    box-sizing: border-box;
}

.sv-container,
.sv-section,
.sv-header-container,
.sv-footer-container {
    width: min(calc(100% - 48px), var(--sv-max));
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   HEADER
   ========================================================= */

.sv-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(7,25,35,.97);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
    backdrop-filter: blur(12px);
}

.admin-bar .sv-header {
    top: 32px;
}

.sv-header-container {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.sv-brand {
    gap: 12px !important;
    flex-shrink: 0;
}

.sv-brand .wp-block-site-logo {
    margin: 0;
}

.sv-brand .wp-block-site-logo img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.sv-brand-copy {
    line-height: 1;
}

.sv-brand-copy .wp-block-site-title {
    margin: 0 !important;
}

.sv-brand-copy .wp-block-site-title a {
    color: white;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.sv-brand-copy p {
    margin: 6px 0 0;
    color: #8497a2;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.sv-nav {
    margin-left: auto;
}

.sv-nav .wp-block-navigation-item__content {
    position: relative;
    padding: 29px 0;
    color: #dfe7eb !important;
    font-size: 14px;
    font-weight: 700;
}

.sv-nav .wp-block-navigation-item__content::after {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 100%;
    bottom: 19px;
    background: var(--sv-orange);
    transition: right .18s ease;
}

.sv-nav .wp-block-navigation-item__content:hover {
    color: #fff !important;
}

.sv-nav .wp-block-navigation-item__content:hover::after {
    right: 0;
}

.sv-nav .wp-block-navigation__responsive-container-open,
.sv-nav .wp-block-navigation__responsive-container-close {
    color: white !important;
}


/* =========================================================
   FRONT PAGE HERO
   ========================================================= */

.sv-hero {
    padding: 88px 24px 82px;
    background:
        radial-gradient(circle at 82% 12%, rgba(245,154,35,.22), transparent 28%),
        linear-gradient(128deg,#061821,#0d3041);
    color: white;
}

.sv-hero-inner {
    width: min(100%, var(--sv-max));
    margin: auto;
}

.sv-kicker,
.sv-eyebrow {
    margin: 0 0 16px;
    color: var(--sv-orange);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.sv-hero h1 {
    max-width: 820px;
    margin: 0 !important;
    color: white;
    font-size: clamp(46px,6vw,76px);
    line-height: .99;
    font-weight: 900;
    letter-spacing: -3px;
}

.sv-hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: #bcc9cf;
    font-size: 18px;
    line-height: 1.7;
}

.sv-hero-actions {
    margin-top: 30px;
}

.sv-button .wp-block-button__link {
    padding: 13px 22px;
    border-radius: 6px;
    background: var(--sv-orange);
    color: #071923;
    font-weight: 900;
}


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

.sv-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.sv-section-head,
.sv-section-heading {
    padding-bottom: 18px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--sv-border);
}

.sv-section-head h2,
.sv-section-heading h2 {
    margin: 0 !important;
    color: var(--sv-navy);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.sv-section-subtitle,
.sv-section-heading > p {
    margin: 10px 0 0;
    color: var(--sv-muted);
    font-size: 14px;
}

.sv-grid .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 28px !important;
}

.sv-card {
    height: 100%;
    overflow: hidden;
    background: white;
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(7,25,35,.05);
}

.sv-card .wp-block-post-featured-image {
    margin: 0;
}

.sv-card .wp-block-post-featured-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.sv-card-body {
    padding: 21px;
}

.sv-card .taxonomy-category a {
    color: var(--sv-orange-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sv-card .wp-block-post-title {
    margin: 9px 0 10px;
    color: var(--sv-navy);
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
}

.sv-card .wp-block-post-excerpt {
    color: var(--sv-muted);
    font-size: 14px;
    line-height: 1.6;
}

.sv-meta {
    color: #849199;
    font-size: 12px;
}


/* ABOUT */

.sv-about {
    padding: 68px 24px;
    background: var(--sv-orange);
}

.sv-about-inner {
    width: min(100%,var(--sv-max));
    margin: auto;
}

.sv-about .sv-kicker {
    color: #673900;
}

.sv-about h2 {
    max-width: 850px;
    margin: 0 0 20px;
    color: #071923;
    font-size: clamp(36px,5vw,58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.sv-about p {
    max-width: 800px;
    margin-bottom: 0;
    color: #293035;
    font-size: 18px;
}


/* =========================================================
   NEWS / ARCHIVE HERO
   ========================================================= */

.sv-listing-hero {
    padding: 62px 0 58px;
    background:
        radial-gradient(circle at 82% 10%, rgba(245,154,35,.17), transparent 27%),
        linear-gradient(125deg,#071923,#0d3041);
    color: white;
}

.sv-listing-title,
.sv-listing-hero .wp-block-query-title {
    max-width: 900px;
    margin: 0 !important;
    color: white !important;
    font-size: clamp(42px,5vw,64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.sv-listing-description {
    max-width: 680px;
    margin: 18px 0 0;
    color: #afbec6;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FILTER TOOLBAR
   ========================================================= */

.sv-news-toolbar {
    width: min(calc(100% - 48px),var(--sv-max));
    margin: auto !important;
    padding: 30px 0;
}

.sv-filter-row {
    gap: 22px !important;
}

.sv-category-filters {
    gap: 8px !important;
}

.sv-category-filters .wp-block-button__link {
    padding: 9px 17px;
    border: 1px solid #dce3e6;
    border-radius: 999px;
    background: #f3f5f6;
    color: #384a54;
    font-size: 12px;
    font-weight: 800;
}

.sv-category-filters .wp-block-button__link:hover,
.sv-filter-active .wp-block-button__link {
    background: var(--sv-orange);
    border-color: var(--sv-orange);
    color: #071923;
}

.sv-search {
    width: 330px;
}

.sv-search .wp-block-search__inside-wrapper {
    height: 44px;
    overflow: hidden;
    background: white;
    border: 1px solid #dce3e6;
    border-radius: 7px;
}

.sv-search .wp-block-search__input {
    border: 0;
    padding: 0 13px;
    outline: none;
}

.sv-search .wp-block-search__button {
    width: 48px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--sv-navy);
    color: white;
}


/* =========================================================
   NEWS GRID
   ========================================================= */

.sv-news-main {
    width: min(calc(100% - 48px),var(--sv-max));
    margin: auto !important;
    padding: 28px 0 80px;
}

.sv-news-query .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 28px !important;
}

.sv-news-card {
    height: 100%;
    overflow: hidden;
    background: white;
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(7,25,35,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sv-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(7,25,35,.11);
}

.sv-news-image {
    margin: 0 !important;
    overflow: hidden;
}

.sv-news-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.sv-news-card-content {
    padding: 21px 21px 23px;
}

.sv-card-category {
    margin: 0 0 9px;
}

.sv-card-category a {
    color: var(--sv-orange-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sv-card-category span {
    display: none;
}

.sv-news-card-title {
    margin: 0 !important;
    color: var(--sv-navy);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.sv-news-card-title a:hover {
    color: var(--sv-orange-dark);
}

.sv-card-meta {
    gap: 10px !important;
    margin-top: 13px;
    color: #849199;
    font-size: 11px;
}

.sv-news-card-content .wp-block-post-excerpt {
    margin-top: 14px;
    color: var(--sv-muted);
    font-size: 14px;
    line-height: 1.62;
}

.sv-news-card-content .wp-block-post-excerpt__more-link {
    display: block;
    margin-top: 12px;
    color: var(--sv-navy);
    font-weight: 800;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.sv-pagination {
    display: flex;
    justify-content: center;
    gap: 7px !important;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--sv-border);
}

.sv-pagination a,
.sv-pagination .page-numbers {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid #dce3e6;
    border-radius: 6px;
    background: white;
    color: var(--sv-navy) !important;
    font-size: 13px;
    font-weight: 800;
}

.sv-pagination .current {
    background: var(--sv-orange);
    border-color: var(--sv-orange);
}

.sv-pagination a:hover {
    background: var(--sv-navy);
    border-color: var(--sv-navy);
    color: white !important;
}


/* =========================================================
   SINGLE ARTICLE
   ========================================================= */

.sv-single-hero {
    padding: 62px 0 58px;
    background:
        radial-gradient(circle at 83% 12%, rgba(245,154,35,.15), transparent 27%),
        linear-gradient(125deg,#071923,#0c2c3c);
    color: white;
}

.sv-single-header {
    width: min(calc(100% - 48px),960px);
    margin: auto !important;
}

.sv-single-category {
    margin-bottom: 16px;
}

.sv-single-category a {
    display: inline-block;
    padding: 6px 11px;
    border: 1px solid rgba(245,154,35,.3);
    border-radius: 999px;
    background: rgba(245,154,35,.10);
    color: var(--sv-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sv-single-category span {
    display: none;
}

.sv-single-title {
    max-width: 950px;
    margin: 0 !important;
    color: white !important;
    font-size: clamp(40px,5vw,65px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
}

.sv-single-meta {
    gap: 8px !important;
    margin-top: 21px;
    color: #a9b7bf;
    font-size: 13px;
}

.sv-single-meta p {
    margin: 0;
}

.sv-single-main {
    width: min(calc(100% - 48px),1040px);
    margin: auto !important;
    padding: 46px 0 84px;
}

.sv-single-featured {
    margin: 0 !important;
}

.sv-single-featured img {
    display: block;
    width: 100%;
    max-height: 590px;
    object-fit: cover;
    border-radius: 12px;
}

.sv-article-layout {
    margin-top: 44px;
}

.sv-article-content {
    max-width: 760px !important;
    margin: auto !important;
    color: #263943;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.84;
}

.sv-article-content p {
    margin: 0 0 1.55em;
}

.sv-article-content h2,
.sv-article-content h3,
.sv-article-content h4 {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--sv-navy);
}

.sv-article-content h2 {
    margin: 1.9em 0 .7em;
    font-size: 33px;
    line-height: 1.18;
}

.sv-article-content h3 {
    margin: 1.7em 0 .6em;
    font-size: 26px;
}

.sv-article-content blockquote {
    margin: 34px 0;
    padding: 24px 27px;
    border-left: 4px solid var(--sv-orange);
    background: var(--sv-bg);
    font-style: italic;
}

.sv-article-content a {
    color: var(--sv-orange-dark);
    text-decoration: underline;
}

.sv-single-tags {
    max-width: 760px;
    margin: 45px auto 0 !important;
    padding-top: 22px;
    border-top: 1px solid var(--sv-border);
}

.sv-single-tags a {
    display: inline-block;
    margin: 3px;
    padding: 6px 11px;
    background: #eef1f2;
    border-radius: 5px;
    color: #46565f;
    font-size: 11px;
    font-weight: 700;
}

.sv-story-navigation {
    gap: 40px !important;
    margin-top: 50px;
    padding: 28px 0;
    border-top: 1px solid var(--sv-border);
    border-bottom: 1px solid var(--sv-border);
}

.sv-story-nav-item {
    width: calc(50% - 20px);
}

.sv-story-nav-next {
    text-align: right;
}

.sv-nav-label {
    margin: 0 0 8px;
    color: #8b989f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sv-story-navigation a {
    color: var(--sv-navy);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
}

.sv-related-section {
    margin-top: 58px;
}

.sv-related-query .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 25px !important;
}

.sv-related-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--sv-border);
    border-radius: 10px;
    background: white;
}

.sv-related-card .wp-block-post-featured-image {
    margin: 0;
}

.sv-related-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.sv-related-content {
    padding: 18px;
}

.sv-related-content .wp-block-post-title {
    margin: 7px 0 9px;
    color: var(--sv-navy);
    font-size: 18px;
    line-height: 1.3;
}


/* =========================================================
   FOOTER
   ========================================================= */

.sv-footer {
    padding-top: 58px;
    background: #06151d;
    color: #a9b5bc;
}

.sv-footer-container {
    width: min(calc(100% - 48px),var(--sv-max));
}

.sv-footer-columns {
    gap: 80px !important;
    margin: 0;
}

.sv-footer-logo {
    margin: 0 !important;
}

.sv-footer-logo a {
    color: white;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sv-footer-description {
    max-width: 560px;
    margin: 16px 0 0;
    color: #82929b;
    font-size: 14px;
    line-height: 1.7;
}

.sv-footer h4 {
    margin: 0 0 17px;
    color: white;
    font-size: 15px;
}

.sv-footer-nav {
    gap: 8px !important;
}

.sv-footer-nav .wp-block-navigation-item__content {
    color: #a9b5bc !important;
    font-size: 14px;
}

.sv-footer-nav .wp-block-navigation-item__content:hover {
    color: var(--sv-orange) !important;
}

.sv-footer-bottom {
    margin-top: 45px;
    padding: 21px 0;
    border-top: 1px solid #1d2d36;
    color: #697b85;
    font-size: 12px;
}

.sv-footer-bottom p {
    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .admin-bar .sv-header {
        top: 46px;
    }

    .sv-header-container {
        min-height: 70px;
    }

    .sv-brand-copy p {
        display: none;
    }

    .sv-nav .wp-block-navigation__responsive-container.is-menu-open {
        padding: 30px 24px;
        background: var(--sv-navy);
    }

    .sv-nav .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation-item__content {
        padding: 10px 0;
        color: white !important;
        font-size: 20px;
    }

    .sv-grid .wp-block-post-template,
    .sv-news-query .wp-block-post-template,
    .sv-related-query .wp-block-post-template {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

    .sv-filter-row {
        align-items: stretch !important;
    }

    .sv-search {
        width: 100%;
    }

    .sv-single-title {
        font-size: 46px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sv-container,
    .sv-section,
    .sv-header-container,
    .sv-footer-container,
    .sv-news-toolbar,
    .sv-news-main,
    .sv-single-main,
    .sv-single-header {
        width: calc(100% - 32px);
    }

    .sv-header-container {
        min-height: 66px;
    }

    .sv-brand .wp-block-site-logo img {
        width: 38px;
        height: 38px;
    }

    .sv-brand-copy .wp-block-site-title a {
        font-size: 22px;
    }

    .sv-hero {
        padding: 58px 16px 55px;
    }

    .sv-hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .sv-hero-copy {
        font-size: 16px;
    }

    .sv-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .sv-section-head h2,
    .sv-section-heading h2 {
        font-size: 29px;
    }

    .sv-grid .wp-block-post-template,
    .sv-news-query .wp-block-post-template,
    .sv-related-query .wp-block-post-template {
        grid-template-columns: 1fr !important;
    }

    .sv-about {
        padding: 50px 16px;
    }

    .sv-about h2 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .sv-listing-hero {
        padding: 46px 0 44px;
    }

    .sv-listing-title,
    .sv-listing-hero .wp-block-query-title {
        font-size: 41px;
        letter-spacing: -1px;
    }

    .sv-news-toolbar {
        padding-top: 22px;
        padding-bottom: 15px;
    }

    .sv-category-filters {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
    }

    .sv-category-filters .wp-block-button {
        width: 100%;
    }

    .sv-category-filters .wp-block-button__link {
        width: 100%;
        text-align: center;
    }

    .sv-news-main {
        padding-top: 22px;
        padding-bottom: 58px;
    }

    .sv-section-heading {
        display: block !important;
    }

    .sv-single-hero {
        padding: 45px 0 42px;
    }

    .sv-single-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .sv-single-main {
        padding-top: 27px;
        padding-bottom: 62px;
    }

    .sv-single-featured img {
        border-radius: 7px;
    }

    .sv-article-layout {
        margin-top: 30px;
    }

    .sv-article-content {
        font-size: 17px;
        line-height: 1.78;
    }

    .sv-article-content h2 {
        font-size: 27px;
    }

    .sv-story-navigation {
        display: block !important;
    }

    .sv-story-nav-item {
        width: 100%;
    }

    .sv-story-nav-next {
        margin-top: 25px;
        text-align: left;
    }

    .sv-footer {
        padding-top: 45px;
    }

    .sv-footer-columns {
        display: block !important;
    }

    .sv-footer-columns > .wp-block-column + .wp-block-column {
        margin-top: 34px;
    }

    .sv-footer-bottom {
        display: block !important;
    }

    .sv-footer-bottom p + p {
        margin-top: 5px;
    }
}

/* =========================================================
   SINGLE POST POLISH
   ========================================================= */

.sv-single-main {
    width: min(calc(100% - 48px), 1120px);
    padding-top: 40px;
    padding-bottom: 72px;
}

.sv-single-featured {
    max-width: 980px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.sv-single-featured img {
    max-height: 560px;
    border-radius: 10px;
}

/* article width */
.sv-article-layout {
    margin-top: 34px;
}

.sv-article-content {
    max-width: 820px !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.82;
    color: #2a3942;
}

.sv-article-content p {
    margin-bottom: 1.35em;
}

.sv-article-content h2 {
    margin-top: 1.55em;
    margin-bottom: .55em;
    font-size: 30px;
    line-height: 1.2;
}

.sv-article-content h3 {
    margin-top: 1.4em;
    margin-bottom: .5em;
    font-size: 24px;
}

.sv-article-content figure {
    margin-top: 28px;
    margin-bottom: 28px;
}

.sv-article-content img {
    border-radius: 8px;
}

/* embedded/internal cards inside article */
.sv-article-content .wp-block-group,
.sv-article-content .wp-block-columns {
    max-width: 100%;
}

/* tags */
.sv-single-tags {
    max-width: 820px;
    margin-top: 32px !important;
    padding-top: 18px;
}

.sv-single-tags a {
    background: #f1f4f5;
    border: 1px solid #e2e7ea;
    color: #465761;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
}

/* previous / next */
.sv-story-navigation {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 38px;
    padding: 24px 0;
    gap: 24px !important;
}

.sv-story-nav-item {
    width: calc(50% - 12px);
    padding: 18px 20px;
    border: 1px solid var(--sv-border);
    border-radius: 9px;
    background: #fafbfb;
}

.sv-story-nav-item:hover {
    border-color: #d2dade;
    background: white;
}

.sv-nav-label {
    color: var(--sv-orange-dark);
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.sv-story-navigation a {
    display: block;
    color: var(--sv-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

/* related section */
.sv-related-section {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
}

.sv-related-section .sv-section-heading {
    margin-bottom: 24px;
}

.sv-related-section .sv-section-heading h2 {
    font-size: 30px;
}

.sv-related-query .wp-block-post-template {
    gap: 20px !important;
}

.sv-related-card {
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sv-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(7,25,35,.09);
}

.sv-related-card img {
    aspect-ratio: 16/9;
}

.sv-related-content {
    padding: 16px;
}

.sv-related-content .wp-block-post-title {
    font-size: 17px;
    line-height: 1.3;
}

/* tighten footer after article */
.single .sv-footer {
    margin-top: 0;
}

/* desktop article hero slightly more refined */
@media (min-width: 901px) {

    .sv-single-hero {
        padding-top: 54px;
        padding-bottom: 50px;
    }

    .sv-single-title {
        max-width: 860px;
        font-size: clamp(42px, 4.5vw, 60px);
        line-height: 1.04;
    }

    .sv-single-header {
        width: min(calc(100% - 48px), 980px);
    }
}

/* mobile */
@media (max-width: 600px) {

    .sv-single-main {
        width: calc(100% - 28px);
        padding-top: 22px;
        padding-bottom: 48px;
    }

    .sv-single-featured img {
        border-radius: 7px;
    }

    .sv-article-content {
        font-size: 17px;
        line-height: 1.75;
    }

    .sv-article-content h2 {
        font-size: 26px;
    }

    .sv-story-navigation {
        margin-top: 30px;
    }

    .sv-story-nav-item {
        width: 100%;
        padding: 16px;
    }

    .sv-story-nav-next {
        margin-top: 12px;
        text-align: left;
    }

    .sv-related-section {
        margin-top: 36px;
    }
}

/* =========================================================
   MOBILE NAVIGATION FIX
   ========================================================= */

@media (max-width: 900px) {

    .sv-nav .wp-block-navigation__responsive-container {
        background: var(--sv-navy) !important;
        color: #fff !important;
        z-index: 99999 !important;
    }

    .sv-nav .wp-block-navigation__responsive-container.is-menu-open {
        display: flex !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        padding: 28px 24px 40px !important;
        background: #071923 !important;
        color: #fff !important;
        overflow-y: auto !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-content {
        width: 100% !important;
        padding-top: 70px !important;
        align-items: flex-start !important;
    }

    .sv-nav .wp-block-navigation__container {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .sv-nav .wp-block-navigation-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .sv-nav .wp-block-navigation-item__content {
        display: block !important;
        width: 100% !important;
        padding: 18px 0 !important;
        color: #fff !important;
        font-size: 21px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .sv-nav .wp-block-navigation-item__content::after {
        display: none !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-close {
        display: flex !important;
        position: absolute !important;
        top: 22px !important;
        right: 22px !important;
        color: #fff !important;
        background: transparent !important;
        z-index: 100000 !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-close svg,
    .sv-nav .wp-block-navigation__responsive-container-open svg {
        fill: currentColor !important;
        stroke: currentColor !important;
        width: 28px !important;
        height: 28px !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-open {
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        background: transparent !important;
        padding: 8px !important;
    }

    body:has(.wp-block-navigation__responsive-container.is-menu-open) {
        overflow: hidden;
    }
}

/* =========================================================

/* =========================================================
   NAVIGATION DROPDOWNS - CLEAN FINAL VERSION
   ========================================================= */

/* DESKTOP */
@media (min-width: 901px) {

    .sv-nav .wp-block-navigation-submenu {
        position: relative;
    }

    .sv-nav .wp-block-navigation__submenu-container {
        min-width: 245px !important;
        padding: 8px !important;

        background: #0b2533 !important;
        border: 1px solid rgba(255,255,255,.10) !important;
        border-radius: 10px !important;

        box-shadow: 0 18px 45px rgba(0,0,0,.30) !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item {
        width: 100% !important;
        background: transparent !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item__content {
        display: block !important;

        width: 100% !important;
        padding: 11px 13px !important;

        background: transparent !important;
        color: #edf3f6 !important;

        border-radius: 6px !important;

        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;

        opacity: 1 !important;
        visibility: visible !important;
        white-space: nowrap !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item__content:hover {
        background: rgba(245,154,35,.14) !important;
        color: #f59a23 !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item__content::after {
        display: none !important;
    }

    .sv-nav .wp-block-navigation-submenu__toggle {
        margin-left: 5px !important;
        padding: 0 !important;
        color: #dfe7eb !important;
    }

    .sv-nav .wp-block-navigation-submenu__toggle svg {
        width: 11px !important;
        height: 11px !important;
        fill: currentColor !important;
        stroke: currentColor !important;
    }
}


/* MOBILE */
@media (max-width: 900px) {

    .sv-nav .wp-block-navigation__responsive-container.is-menu-open {
        position: fixed !important;
        inset: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        padding: 28px 22px 40px !important;

        background: #071923 !important;
        color: #ffffff !important;

        overflow-y: auto !important;
        z-index: 99999 !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-content {
        width: 100% !important;
        padding-top: 58px !important;
        align-items: stretch !important;
    }

    .sv-nav .wp-block-navigation__container {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        gap: 0 !important;
    }

    .sv-nav .wp-block-navigation-item,
    .sv-nav .wp-block-navigation-submenu {
        width: 100% !important;
    }

    .sv-nav .wp-block-navigation-submenu {
        display: block !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.10) !important;
    }

    .sv-nav .wp-block-navigation-item__content {
        color: #ffffff !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .sv-nav > div > div >
    .wp-block-navigation__container >
    .wp-block-navigation-item >
    .wp-block-navigation-item__content,

    .sv-nav > div > div >
    .wp-block-navigation__container >
    .wp-block-navigation-submenu >
    .wp-block-navigation-item__content {

        display: inline-flex !important;
        width: auto !important;

        padding: 17px 0 !important;

        color: #ffffff !important;

        font-size: 20px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
    }

    .sv-nav .wp-block-navigation-submenu__toggle {
        display: inline-flex !important;

        margin-left: 8px !important;
        padding: 0 !important;

        color: #f59a23 !important;
    }

    .sv-nav .wp-block-navigation__submenu-container {
        position: static !important;

        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;

        padding: 0 0 13px 16px !important;

        visibility: visible !important;
        opacity: 1 !important;

        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item {
        border: 0 !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item__content {

        display: block !important;

        width: 100% !important;
        padding: 7px 0 !important;

        color: #a9bbc4 !important;

        font-size: 15px !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }

    .sv-nav .wp-block-navigation__submenu-container
    .wp-block-navigation-item__content:hover {
        color: #f59a23 !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-close {
        position: absolute !important;

        top: 22px !important;
        right: 22px !important;

        color: #ffffff !important;
        background: transparent !important;

        z-index: 100000 !important;
    }

    .sv-nav .wp-block-navigation__responsive-container-close svg,
    .sv-nav .wp-block-navigation__responsive-container-open svg {
        width: 27px !important;
        height: 27px !important;

        fill: currentColor !important;
        stroke: currentColor !important;
    }

    body:has(.sv-nav .is-menu-open) {
        overflow: hidden;
    }
}

/* =========================================================
   TEAMS DIRECTORY
   ========================================================= */

.sv-team-page {
    background: #f5f7f8;
    min-height: 70vh;
}

.sv-team-directory {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    padding: 58px 0 80px;
}

.sv-team-directory-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;

    padding-bottom: 30px;
    margin-bottom: 32px;

    border-bottom: 1px solid #dfe5e8;
}

.sv-team-eyebrow {
    display: block;
    margin-bottom: 8px;

    color: #d87908;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.sv-team-directory-head h1 {
    margin: 0;

    color: #071923;

    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.8px;
}

.sv-team-directory-head p {
    max-width: 600px;

    margin: 14px 0 0;

    color: #687780;

    font-size: 15px;
    line-height: 1.65;
}

.sv-team-search {
    display: flex;
    width: 330px;
    flex-shrink: 0;
}

.sv-team-search input {
    flex: 1;
    min-width: 0;

    height: 44px;

    padding: 0 13px;

    border: 1px solid #d9e0e4;
    border-right: 0;
    border-radius: 7px 0 0 7px;

    background: white;

    outline: none;
}

.sv-team-search button {
    height: 44px;

    padding: 0 17px;

    border: 0;
    border-radius: 0 7px 7px 0;

    background: #071923;
    color: white;

    font-weight: 800;

    cursor: pointer;
}

.sv-team-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 19px;
}

.sv-team-section-title h2 {
    margin: 0;

    color: #071923;

    font-size: 23px;
    font-weight: 900;
}

.sv-team-section-title span {
    color: #829098;
    font-size: 12px;
}

.sv-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.sv-team-card {
    overflow: hidden;

    background: white;

    border: 1px solid #e0e6e9;
    border-radius: 10px;

    box-shadow: 0 3px 14px rgba(7,25,35,.035);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.sv-team-card:hover {
    transform: translateY(-3px);

    border-color: #cdd7dc;

    box-shadow: 0 12px 30px rgba(7,25,35,.09);
}

.sv-team-card-main {
    display: flex;
    align-items: center;

    min-height: 112px;

    padding: 18px;

    gap: 16px;
}

.sv-team-logo {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid #e2e7ea;
    border-radius: 50%;

    background: #f4f6f7;
}

.sv-team-logo img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.sv-team-logo span {
    color: #071923;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: .5px;
}

.sv-team-info {
    flex: 1;
    min-width: 0;
}

.sv-team-type {
    display: block;

    margin-bottom: 3px;

    color: #d87908;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.sv-team-info h3 {
    margin: 0;

    color: #102632;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
}

.sv-team-info p {
    margin: 5px 0 0;

    color: #7a8991;

    font-size: 12px;
}

.sv-team-arrow {
    color: #99a6ad;

    font-size: 20px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.sv-team-card:hover .sv-team-arrow {
    color: #f59a23;
    transform: translateX(3px);
}

.sv-team-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 18px;

    border-top: 1px solid #edf0f2;

    background: #fafbfb;

    font-size: 11px;
}

.sv-team-extra span {
    color: #8a969c;
}

.sv-team-extra strong {
    color: #344750;
}

.sv-team-pagination {
    margin-top: 38px;
}

.sv-team-pagination ul {
    display: flex;
    justify-content: center;

    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.sv-team-pagination a,
.sv-team-pagination .current {
    min-width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border: 1px solid #dae1e4;
    border-radius: 6px;

    background: white;
    color: #071923;

    font-size: 12px;
    font-weight: 800;
}

.sv-team-pagination .current {
    border-color: #f59a23;
    background: #f59a23;
}

.sv-team-empty {
    padding: 70px 20px;

    border: 1px dashed #ccd5da;
    border-radius: 10px;

    background: white;

    text-align: center;
}


/* TABLET */

@media (max-width: 900px) {

    .sv-team-directory-head {
        align-items: stretch;
        flex-direction: column;
    }

    .sv-team-search {
        width: 100%;
    }

    .sv-team-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .sv-team-directory {
        width: calc(100% - 30px);
        padding: 40px 0 55px;
    }

    .sv-team-directory-head {
        gap: 22px;
        margin-bottom: 26px;
    }

    .sv-team-directory-head h1 {
        font-size: 39px;
    }

    .sv-team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sv-team-card-main {
        min-height: 100px;
        padding: 15px;
    }

    .sv-team-logo {
        width: 58px;
        height: 58px;
    }

    .sv-team-logo img {
        width: 45px;
        height: 45px;
    }

    .sv-team-info h3 {
        font-size: 17px;
    }
}

/* =========================================================
   SINGLE TEAM
   ========================================================= */

.sv-single-team-page {
    background: #f4f6f7;
    min-height: 70vh;
}

.sv-team-profile {
    color: #142a35;
}

.sv-team-profile-hero {
    background: #0b2533;
    color: #fff;
}

.sv-team-profile-inner {
    width: min(calc(100% - 48px), 1180px);
    min-height: 190px;

    margin: 0 auto;
    padding: 38px 0;

    display: flex;
    align-items: center;
    gap: 26px;
}

.sv-team-profile-logo {
    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: hidden;

    background: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}

.sv-team-profile-logo img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.sv-team-profile-logo span {
    color: #071923;
    font-size: 24px;
    font-weight: 900;
}

.sv-team-profile-type {
    color: #f59a23;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.sv-team-profile-heading h1 {
    margin: 5px 0 8px;

    color: #fff;

    font-size: 43px;
    line-height: 1.05;
    font-weight: 900;
}

.sv-team-profile-sub {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #aebdc5;
    font-size: 13px;
}

.sv-team-profile-sub strong {
    padding: 4px 8px;

    color: #071923;
    background: #f59a23;

    border-radius: 4px;

    font-size: 11px;
}

.sv-team-tabs {
    background: #fff;
    border-bottom: 1px solid #dde4e7;
}

.sv-team-tabs-inner {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;

    display: flex;
    overflow-x: auto;
}

.sv-team-tabs a {
    flex-shrink: 0;

    padding: 16px 20px;

    color: #5b6d76;

    border-bottom: 3px solid transparent;

    font-size: 13px;
    font-weight: 800;
}

.sv-team-tabs a:first-child {
    padding-left: 0;
    color: #071923;
    border-bottom-color: #f59a23;
}

.sv-team-tabs a:hover {
    color: #071923;
}

.sv-team-profile-body {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    padding: 32px 0 70px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 26px;

    align-items: start;
}

.sv-team-profile-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv-team-panel {
    padding: 24px;

    background: #fff;
    border: 1px solid #e0e6e9;
    border-radius: 9px;
}

.sv-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
    padding-bottom: 13px;

    border-bottom: 1px solid #edf0f2;
}

.sv-panel-heading h2 {
    margin: 0;

    color: #102632;

    font-size: 20px;
    font-weight: 900;
}

.sv-panel-heading span {
    color: #8a979e;
    font-size: 11px;
}

.sv-team-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    border: 1px solid #e8ecee;
    border-radius: 7px;

    overflow: hidden;
}

.sv-team-facts > div {
    padding: 15px 17px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    border-bottom: 1px solid #edf0f2;
}

.sv-team-facts > div:nth-child(odd) {
    border-right: 1px solid #edf0f2;
}

.sv-team-facts span {
    color: #89969d;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.sv-team-facts strong {
    color: #213944;
    font-size: 14px;
}

.sv-team-description {
    margin-top: 23px;

    color: #596b74;

    font-size: 15px;
    line-height: 1.75;
}

.sv-squad-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}

.sv-squad-player {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;

    border: 1px solid #e5eaec;
    border-radius: 7px;

    transition: .2s ease;
}

.sv-squad-player:hover {
    border-color: #cad5da;
    background: #fafbfb;
}

.sv-squad-photo {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    overflow: hidden;

    background: #eef2f4;
    border-radius: 50%;
}

.sv-squad-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-squad-photo span {
    color: #50636c;
    font-weight: 900;
}

.sv-squad-player strong {
    display: block;
    color: #213944;
    font-size: 13px;
}

.sv-squad-player span {
    display: block;
    margin-top: 3px;

    color: #849198;
    font-size: 10px;
}

.sv-team-empty-state {
    padding: 30px;

    background: #f8fafb;
    border: 1px dashed #d7dfe3;
    border-radius: 7px;

    text-align: center;
}

.sv-team-empty-state strong {
    display: block;
    margin-bottom: 5px;

    color: #304650;
    font-size: 14px;
}

.sv-team-empty-state p {
    margin: 0;

    color: #829097;

    font-size: 12px;
    line-height: 1.5;
}

.sv-team-match-list {
    border: 1px solid #e7ebed;
    border-radius: 7px;

    overflow: hidden;
}

.sv-team-match-row {
    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #edf0f2;
}

.sv-team-match-row:last-child {
    border-bottom: 0;
}

.sv-team-match-row span:first-child {
    display: block;

    color: #e28a1b;

    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.sv-team-match-row strong {
    display: block;
    margin-top: 3px;

    color: #203843;
    font-size: 13px;
}

.sv-team-match-arrow {
    color: #9ba7ad;
    font-size: 18px;
}

.sv-team-news-list {
    display: flex;
    flex-direction: column;
}

.sv-team-news-item {
    display: grid;
    grid-template-columns: 120px minmax(0,1fr);
    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid #edf0f2;
}

.sv-team-news-item:first-child {
    padding-top: 0;
}

.sv-team-news-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sv-team-news-image {
    height: 72px;
    overflow: hidden;

    border-radius: 6px;
}

.sv-team-news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sv-team-news-item span {
    color: #89969c;
    font-size: 10px;
}

.sv-team-news-item h3 {
    margin: 5px 0 0;

    font-size: 14px;
    line-height: 1.35;
}

.sv-team-news-item h3 a {
    color: #1a323e;
}

.sv-team-sidebar {
    position: sticky;
    top: 20px;
}

.sv-team-side-card {
    padding: 20px;

    background: #fff;
    border: 1px solid #e0e6e9;
    border-radius: 9px;
}

.sv-side-label {
    color: #e18819;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sv-team-side-card h3 {
    margin: 5px 0 18px;

    color: #102632;

    font-size: 21px;
    font-weight: 900;
}

.sv-team-side-card > div {
    padding: 11px 0;

    display: flex;
    justify-content: space-between;
    gap: 15px;

    border-top: 1px solid #edf0f2;

    font-size: 11px;
}

.sv-team-side-card > div span {
    color: #8a979d;
}

.sv-team-side-card > div strong {
    color: #263d48;
    text-align: right;
}


@media (max-width: 900px) {

    .sv-team-profile-body {
        grid-template-columns: 1fr;
    }

    .sv-team-sidebar {
        position: static;
    }
}


@media (max-width: 600px) {

    .sv-team-profile-inner,
    .sv-team-tabs-inner,
    .sv-team-profile-body {
        width: calc(100% - 30px);
    }

    .sv-team-profile-inner {
        min-height: 150px;
        padding: 28px 0;
        gap: 18px;
    }

    .sv-team-profile-logo {
        width: 76px;
        height: 76px;
    }

    .sv-team-profile-logo img {
        width: 60px;
        height: 60px;
    }

    .sv-team-profile-heading h1 {
        font-size: 31px;
    }

    .sv-team-tabs a {
        padding: 14px 15px;
        font-size: 12px;
    }

    .sv-team-tabs a:first-child {
        padding-left: 0;
    }

    .sv-team-profile-body {
        padding: 20px 0 50px;
    }

    .sv-team-panel {
        padding: 18px;
    }

    .sv-team-facts,
    .sv-squad-grid {
        grid-template-columns: 1fr;
    }

    .sv-team-facts > div:nth-child(odd) {
        border-right: 0;
    }

    .sv-team-news-item {
        grid-template-columns: 90px minmax(0,1fr);
    }

    .sv-team-news-image {
        height: 64px;
    }
}

/* =========================================================
   HOME PAGE V2
   ========================================================= */

.sv-home {
    background: #fff;
}

.sv-home-inner {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}

.sv-home-hero {
    padding: 88px 0 92px;
    background:
        linear-gradient(110deg, #031a25 0%, #082c3b 58%, #17333d 100%);
}

.sv-home-eyebrow {
    margin: 0 0 18px;
    color: #f59a23;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.sv-home-title {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .99;
    letter-spacing: -3px;
    font-weight: 900;
}

.sv-home-intro {
    max-width: 680px;
    margin: 28px 0 30px;
    color: #c2d0d7;
    font-size: 17px;
    line-height: 1.8;
}

.sv-home-primary-btn .wp-block-button__link {
    background: #f59a23;
    color: #071923;
    border-radius: 7px;
    padding: 14px 22px;
    font-weight: 900;
}

.sv-home-section {
    padding: 62px 0;
}

.sv-home-soft {
    background: #f5f7f8;
}

.sv-home-section-head {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dde4e7;
}

.sv-home-section-head h2,
.sv-home-trending > h2 {
    margin: 0;
    color: #0b2230;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sv-home-section-kicker {
    margin: 0 0 5px;
    color: #e58a18;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.sv-home-section-link {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
}

.sv-home-section-link a {
    color: #5f7078;
}

.sv-home-section-link a:hover {
    color: #f59a23;
}

/* Featured */

.sv-featured-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.sv-featured-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e7ea;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(7,25,35,.04);
}

.sv-featured-image {
    overflow: hidden;
}

.sv-featured-image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.sv-featured-content {
    padding: 16px;
}

.sv-featured-content h3 {
    margin: 7px 0 9px;
    font-size: 17px;
    line-height: 1.35;
}

.sv-featured-content h3 a {
    color: #102833;
}

.sv-card-category {
    color: #e18818;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.sv-card-category a {
    color: inherit;
}

.sv-card-date {
    color: #8c999f;
    font-size: 10px;
}

/* Latest + Trending */

.sv-home-news-layout {
    display: grid;
    grid-template-columns: minmax(0,1.7fr) minmax(280px,.75fr);
    gap: 38px;
    align-items: start;
}

.sv-latest-query .wp-block-post-template {
    margin: 0;
}

.sv-latest-row {
    padding: 14px 0;
    gap: 16px;
    border-bottom: 1px solid #dde4e7;
}

.sv-latest-row:first-child {
    padding-top: 0;
}

.sv-latest-thumb {
    width: 150px !important;
    height: 92px !important;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 7px;
}

.sv-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-latest-copy h3 {
    margin: 5px 0 7px;
    font-size: 17px;
    line-height: 1.35;
}

.sv-latest-copy h3 a {
    color: #132b36;
}

.sv-home-trending {
    padding: 22px;
    background: #071923;
    border-radius: 10px;
}

.sv-home-trending > h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
}

.sv-trending-row {
    padding: 14px 0;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.sv-trending-number {
    margin: 0;
    color: #f59a23;
    font-size: 20px;
    line-height: 1;
}

.sv-trending-copy h3 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.4;
}

.sv-trending-copy h3 a {
    color: #edf4f7;
}

.sv-trending-copy .sv-card-date {
    color: #8397a2;
}

/* Matches */

.sv-home-match-grid {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.sv-home-match-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #dfe5e8;
    border-radius: 9px;
}

.sv-match-label,
.sv-series-label {
    margin: 0 0 7px;
    color: #e08817;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sv-home-match-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
}

.sv-home-match-card h3 a {
    color: #112a36;
}

.sv-home-match-link {
    margin: 18px 0 0;
    font-size: 11px;
    font-weight: 800;
}

.sv-home-match-link a {
    color: #f59a23;
}

/* Series */

.sv-home-series-section {
    background: #0a2230;
}

.sv-home-series-section .sv-home-section-head {
    border-color: rgba(255,255,255,.12);
}

.sv-home-series-section .sv-home-section-head h2 {
    color: #fff;
}

.sv-home-series-section .sv-home-section-link a {
    color: #afbec6;
}

.sv-home-series-grid {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.sv-home-series-card {
    min-height: 160px;
    padding: 20px;
    background: #102e3d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;
}

.sv-home-series-card h3 {
    margin: 5px 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.sv-home-series-card h3 a {
    color: #fff;
}

.sv-home-series-card .wp-block-post-excerpt {
    color: #9eb0ba;
    font-size: 12px;
    line-height: 1.6;
}

.sv-home-empty {
    padding: 30px;
    border: 1px dashed #ccd6da;
    border-radius: 8px;
    text-align: center;
    color: #78878f;
}

.sv-home-series-section .sv-home-empty {
    border-color: rgba(255,255,255,.16);
    color: #98aab4;
}


/* TABLET */

@media (max-width: 900px) {

    .sv-featured-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sv-home-news-layout {
        grid-template-columns: 1fr;
    }

    .sv-home-match-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sv-home-series-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .sv-home-inner {
        width: calc(100% - 30px);
    }

    .sv-home-hero {
        padding: 62px 0 68px;
    }

    .sv-home-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .sv-home-intro {
        font-size: 15px;
    }

    .sv-home-section {
        padding: 44px 0;
    }

    .sv-home-section-head {
        align-items: flex-start !important;
        gap: 10px;
    }

    .sv-featured-grid,
    .sv-home-match-grid,
    .sv-home-series-grid {
        grid-template-columns: 1fr;
    }

    .sv-featured-image img {
        height: 210px;
    }

    .sv-latest-row {
        align-items: flex-start !important;
    }

    .sv-latest-thumb {
        width: 105px !important;
        height: 72px !important;
    }

    .sv-latest-copy h3 {
        font-size: 14px;
    }

    .sv-home-section-head h2,
    .sv-home-trending > h2 {
        font-size: 24px;
    }
}

/* =========================================================
   HEADER LOGO SIZE
   ========================================================= */

.sv-header .wp-block-site-logo img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain;
}

.sv-brand {
    gap: 12px !important;
}

@media (max-width: 600px) {
    .sv-header .wp-block-site-logo img {
        width: 48px !important;
        height: 48px !important;
    }
}
