/* -------------------------------------------------- */
/* HEADER STYLES (site title, nav lines, social icons) */
/* -------------------------------------------------- */

/* Container for the site title */
.site-header {
    position: relative;
    padding-bottom: 0; /* space between title and first line */
}

/* Line under the site title and above the menu */
.site-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dcdcdc;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Position of main navigation */
.main-navigation {
    margin-top: 0;
    position: relative;
    padding-bottom: 0; /* space between menu and its line */
}

/* Line under the menu */
.main-navigation::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #dcdcdc;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Header right-side widget with social icons */
.header-widget {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.simple-social-icons {
    display: flex;
    justify-content: flex-end;
}

.simple-social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.simple-social-icons li {
    margin-left: 8px;
}

.simple-social-icons a {
    text-decoration: none;
}

/* Hide the social icon row under the site title on phone + iPad portrait ONLY */
@media (max-width: 900px) {
    .site-header .header-widget {
        display: none !important;
    }
}

/* Show them again on iPad landscape / desktop */
@media (min-width: 901px) {
    .site-header .header-widget {
        display: block !important;
    }
}

/* Fluid site title sizing (desktop safe, mobile tidy) */
.site-branding .site-title,
.site-branding .site-title a,
.main-title,
.site-logo-text a {
    /* Desktop caps at ~44px, phones won't drop below 24px */
    font-size: clamp(24px, 5.2vw, 44px) !important;
    line-height: 1.15;
    letter-spacing: -0.01em; /* tiny optical tighten */
    margin: 10px 0 12px; /* subtle breathing room */
    text-decoration: none;
}

/* Optional: keep the wordmark centered on small screens */
@media (max-width: 900px) {
    .site-branding {
        text-align: center;
    }

    .site-branding .site-title {
        margin: 12px 0 10px;
    }
}

/* Optional micro-tweak for very small phones */
@media (max-width: 480px) {
    .site-branding .site-title {
        letter-spacing: -0.005em;
    }
}



/* -------------------------------- */
/* HOMEPAGE INTRO   */
/* -------------------------------- */
.homepage-intro {
    text-align: left;
    font-size: 13px;
    color: #777;
    max-width: 1400px;
    margin: 10px auto 18px;
    padding: 0 20px 0 60px;
    line-height: 1.6;
    box-sizing: border-box;
}



/* -------------------------------------------------- */
/* CONTENT AREA / BLOG LIST LAYOUT                    */
/* -------------------------------------------------- */
/* -------------------------------- */
/* BLOG META (CATEGORY + DATE)      */
/* -------------------------------- */

.post-meta-inline {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
    color: #6f7c86;
}

.post-meta-inline .post-category a {
    color: #446197;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.post-meta-inline .post-category a:hover {
    color: #dc143c;
}

.post-meta-inline .post-date {
    color: #8a8a8a;
}
.blog .entry-summary,
.archive .entry-summary,
.search .entry-summary {
    display: none !important;
}
/* -------------------------------- */
/* BLOG FEED GRID                   */
/* -------------------------------- */

.blog .site-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog .site-main > .latest-stories-heading,
.blog .site-main > .paging-navigation,
.blog .site-main > .navigation,
.blog .site-main > .nav-links {
    grid-column: 1 / -1;
}

.blog .site-main .type-post {
    margin: 0;
    padding: 0;
    border: none;
}

.blog .inside-article {
    padding: 0;
}

.blog .post-image {
    width: 100% !important;
    margin: 0 0 12px !important;
}

.blog .post-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.blog .inside-article {
    display: flex;
    flex-direction: column;
}

.blog .post-image {
    order: 1;
	border-radius: 8px;
}

.blog .post-meta-inline {
    order: 2;
     margin: 8px 0 6px;
    font-size: 12px;
}

.blog .entry-header {
    order: 3;
}
.blog .entry-title {
    font-size: 19px;
    line-height: 1.25;
    margin: 0;
}

.blog .entry-title a {
    color: #032540;
    text-decoration: none;
}

.blog .entry-title a:hover {
    color: #dc143c;
	  font-size: 19px;
    line-height: 1.26;
    margin: 0;
}

.post-meta-inline .post-category a {
    color: #446197;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    text-decoration: none;
}



/* -------------------------------- */
/* LATEST STORIES */
/* -------------------------------- */

.latest-stories-heading {
    text-align: center;
    margin: 50px auto 35px;
    padding: 0;
    border: none;
    max-width: 1200px;
}

.latest-stories-heading h2 {
    font-family: "Lora", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #032540;
    margin: 0;
    text-transform: none;
}
@media (max-width: 600px) {

    .latest-stories-heading {
        width: 72%;
        margin: 42px auto 24px;
        text-align: left;
    }

    .latest-stories-heading h2 {
        font-size: 22px;
        line-height: 1.12;
        text-align: left;
    }
}

/* -------------------------------------------------- */
/* HOMEPAGE HERO */
/* -------------------------------------------------- */

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 40px;
    max-width: 1200px;
    margin: 70px auto 55px;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: start;
}

.hero-left img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    margin-bottom: 18px;
}

.hero-left-text {
    max-width: 100%;
}

.hero-left-text h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 10px;
}

.hero-left-text h2 a,
.hero-left-text h2 a:visited,
.side-post-text h3 a,
.side-post-text h3 a:visited {
    color: #032540;
    text-decoration: none;
}

.hero-left-text h2 a:hover,
.side-post-text h3 a:hover,
.hero-cat a:hover,
.side-post-text .post-category a:hover {
    color: #dc143c;
}

.hero-excerpt {
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 14px;
}

.hero-meta {
    font-size: 13px;
    color: #828282;
}

.hero-meta p {
    margin: 1px 0;
}

.hero-cat a,
.side-post-text .post-category a {
    color: #446197;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.hero-right-title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    color: #032540;
    margin: 0 0 26px;
    letter-spacing: 0.02em;
}

.hero-right-title em {
    font-style: italic;
    font-weight: 400;
}

.side-posts-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.side-post {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.side-post img {
    width: 150px;
    height: 85px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
	margin-bottom: 2px;
}

.side-post-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    min-width: 0;
}

.side-post-text .post-category {
    order: 1;
     margin: 0 0 3px;
    line-height: 1;
}

.side-post-text .post-category a {
    font-size: 10px;
    letter-spacing: 0.04em;
}

.side-post-text h3 {
    order: 2;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 600;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 720px;
        margin: 45px auto 45px;
        padding: 0 20px;
    }

    .hero-right-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/* iPad landscape: desktop-style hero */
@media (min-width: 901px) and (max-width: 1024px) {
    .hero-section {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) 380px;
        gap: 28px;
       width: 100%;
max-width: 1120px;
        margin: 46px auto 50px;
        padding: 0;
        align-items: start;
    }

    .hero-left img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .hero-left-text h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .hero-excerpt {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-right-title {
        font-size: 27px;
        margin-bottom: 18px;
    }

    .side-post {
        grid-template-columns: 125px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .side-post img {
        width: 125px;
        height: 70px;
    }

    .side-post-text h3 {
        font-size: 14px;
        line-height: 1.22;
    }
}

/* Phone */
@media (max-width: 600px) {
    .hero-section {
        margin: 32px auto 38px;
        padding: 0 16px;
    }

    .hero-left-text h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .hero-excerpt {
        display: none !important;
    }

    .side-post {
        display: grid;
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
        align-items: center;
    }

    .side-post img {
        width: 100px;
        height: 62px;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .side-post-text h3 {
        font-size: 15px;
        line-height: 1.25;
    }

    .hero-right-title {
       font-size: 24px;
    line-height: 1.12;
    margin-bottom: 16px;
    }
}

/* -------------------------------- */
/* SINGLE POST LAYOUT               */
/* -------------------------------- */

.single .site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.single .content-area,
.single .site-main,
.single .inside-article {
    width: 100%;
    max-width: 100%;
}

.single .entry-header {
    max-width: 920px;
    margin: 0 auto 28px;
}

.single .entry-title {
    font-size: 34px;
    line-height: 1.15;
}

.single .entry-meta {
    margin-bottom: 30px;
}

.single .entry-content {
    max-width: 920px;
    margin: 0 auto;
}

.single .featured-image,
.single .post-image,
.single .entry-content > figure.wp-block-image {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.single .featured-image img,
.single .post-image img,
.single .entry-content img {
    width: 100%;
    height: auto;
    display: block;
}

.single .entry-content p,
.single .entry-content h2,
.single .entry-content h3,
.single .entry-content ul,
.single .entry-content ol,
.single .entry-content blockquote {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.single .entry-content p {
    margin-bottom: 18px;
    line-height: 1.65;
}

.single .entry-content h2 {
    margin-top: 40px;
    margin-bottom: 12px;
}

.single .entry-content figure.wp-block-image {
    margin-top: 36px;
    margin-bottom: 34px;
}
.single .site-content {
    padding-top: 36px;
}
/* -------------------------------- */
/* HOMEPAGE STREAMER GRIDS */
/* -------------------------------- */

.tvp-streamer-grid-section {
    background: #fff;
    padding: 52px 20px 20px;
}

.tvp-streamer-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tvp-streamer-grid-title {
    font-family: "Lora", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #032540;
    margin: 0 0 26px;
}

.tvp-streamer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.tvp-streamer-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.tvp-streamer-card-image {
    display: block;
    overflow: hidden;
}

.tvp-streamer-card-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.tvp-streamer-card-text {
    padding: 18px 18px 20px;
}

.tvp-streamer-card-kicker {
    margin: 0 0 8px;
}

.tvp-streamer-card-kicker a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.tvp-streamer-card h3 {
    font-size: 18px;
    line-height: 1.28;
    font-weight: 600;
    margin: 0;
}

.tvp-streamer-card h3 a {
    color: #032540;
    text-decoration: none;
}

.tvp-streamer-card h3 a:hover {
    color: #dc143c;
}

/* Netflix accent */
.tvp-streamer-grid--netflix .tvp-streamer-grid-title {
    color: #dc143c;
}

.tvp-streamer-grid--netflix .tvp-streamer-card {
    border: 1px solid #dc143c;
}

.tvp-streamer-grid--netflix .tvp-streamer-card-kicker a {
    color: #dc143c;
}

/* Apple TV+ accent */
.tvp-streamer-grid--apple .tvp-streamer-grid-title {
    color: #032540;
}

.tvp-streamer-grid--apple .tvp-streamer-card {
    border: 1px solid #032540;
}

.tvp-streamer-grid--apple .tvp-streamer-card-kicker a {
    color: #032540;
}

/* Tablet portrait */
@media (min-width: 700px) and (max-width: 900px) {
    .tvp-streamer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .tvp-streamer-card-text {
        padding: 12px;
    }

    .tvp-streamer-card-kicker a {
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    .tvp-streamer-card h3 {
        font-size: 14px;
        line-height: 1.25;
    }
}


@media (max-width: 699px) {

    .tvp-streamer-grid-section {
        padding: 38px 16px 10px;
    }

    .tvp-streamer-grid-title {
        font-size: 24px;
    line-height: 1.12;
    margin-bottom: 18px;
    }

    .tvp-streamer-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    /* Featured first post */
    .tvp-streamer-grid article:first-child {
        grid-column: 1 / -1;
    }

    .tvp-streamer-grid article:first-child .post-thumbnail img {
        height: 210px !important;
        object-fit: cover;
    }

    .tvp-streamer-grid article:first-child h3 {
        font-size: 24px;
        line-height: 1.18;
    }

    /* Smaller cards */
    .tvp-streamer-grid article:not(:first-child) .post-thumbnail img {
        height: 115px !important;
        object-fit: cover;
    }

    .tvp-streamer-grid article:not(:first-child) h3 {
        font-size: 14px;
        line-height: 1.24;
    }

    .tvp-streamer-card-text {
        padding: 12px 12px 14px;
    }

    .tvp-streamer-card-excerpt {
        display: none;
    }
}

/* -------------------------------- */
/* FEATURED EDITORIAL BLOCK */
/* -------------------------------- */

.tvp-featured-editorial {
    max-width: 1200px;
    margin: 64px auto 48px;
    padding: 0 20px;
}

.tvp-featured-editorial-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;

    background: #eef3f7; /* ← key change */
    border: 1px solid #e6e6e6;
}

.tvp-featured-editorial-image {
    display: block;
    min-height: 360px;
}

.tvp-featured-editorial-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.tvp-featured-editorial-text {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tvp-featured-editorial-kicker {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #032540;
}

.tvp-featured-editorial-text h2 {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.tvp-featured-editorial-text h2 a {
    color: #1f1f1f;
    text-decoration: none;
}

.tvp-featured-editorial-text h2 a:hover {
    color: #dc143c;
}

.tvp-featured-editorial-excerpt {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #032540;
}
.tvp-featured-editorial-image {
    overflow: hidden;
}

@media (max-width: 900px) {
    .tvp-featured-editorial-inner {
        grid-template-columns: 1fr;
    }

    .tvp-featured-editorial-text {
        padding: 30px 24px;
    }

    .tvp-featured-editorial-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .tvp-featured-editorial {
        margin: 48px auto 36px;
        padding: 0 16px;
    }

    .tvp-featured-editorial-image,
    .tvp-featured-editorial-image img {
        min-height: 220px;
    }

    .tvp-featured-editorial-text {
        padding: 24px 20px;
    }

    .tvp-featured-editorial-excerpt {
        font-size: 14px;
    }
}


/* -------------------------------- */
/* HOMEPAGE MOST POPULAR STRIP      */
/* -------------------------------- */

.tvp-home-popular {
    max-width: 1200px;
    margin: 70px auto 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.tvp-home-popular-title {
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 22px;
    color: #032540;
}

.tvp-home-popular-wrapper {
    position: relative;
}

.tvp-home-popular-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 28px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tvp-home-popular-scroll::-webkit-scrollbar {
    display: none;
}

.tvp-home-popular-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border: 1px solid #e6e6e6;
    background: #fff;
    box-sizing: border-box;
}

.tvp-home-popular-image {
    display: block;
    overflow: hidden;
}

.tvp-home-popular-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.tvp-home-popular-text {
    padding: 14px 14px 16px;
}

.tvp-home-popular-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0 0 6px;
    color: #446197;
}

.tvp-home-popular-text h3 {
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
}

.tvp-home-popular-text h3 a {
    color: #032540;
    text-decoration: none;
}

.tvp-home-popular-text h3 a:hover {
    color: #dc143c;
}

.tvp-home-popular-card:hover img {
    transform: scale(1.03);
    transition: transform 0.25s ease;
}

/* line under carousel */
.tvp-home-popular-wrapper::after {
    content: "";
    display: block;
    height: 3px;
    width: calc(100% - 115px);
    background: #eef3f7;
    margin-top: 18px;
}

/* arrows beside the line, both on the right */
.tvp-scroll-btn {
    position: absolute;
    bottom: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #c7d3dc;
    background: #fff;
    color: #032540;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;

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

.tvp-scroll-btn:hover {
    background: #032540;
    color: #fff;
    border-color: #032540;
}

.tvp-scroll-left {
    right: 52px;
    left: auto;
}

.tvp-scroll-right {
    right: 6px;
}

/* -------------------------------- */
/* MOBILE                           */
/* -------------------------------- */

@media (max-width: 768px) {
    .tvp-scroll-btn {
        display: none;
    }

    .tvp-home-popular-card {
        flex: 0 0 220px;
    }
}

@media (max-width: 600px) {
    .tvp-home-popular {
        margin: 55px auto 55px;
        padding: 0 16px;
    }

    .tvp-home-popular-title {
        font-size: 26px;
    }
}

/* -------------------------------- */
/* MONTHLY NETFLIX GUIDE            */
/* -------------------------------- */

.tvp-monthly-guide {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 50px;
    padding: 0 20px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
}

.tvp-monthly-guide-inner {
    display: block;
    max-width: 760px; /* makes it editorial-sized */
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    background: #fff;
}

.tvp-monthly-guide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.tvp-monthly-guide-inner:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .tvp-monthly-guide {
        padding: 0 16px;
        margin: 10px auto 40px;
    }

    .tvp-monthly-guide-inner {
        max-width: 100%;
    }
}

/* -------------------------------------------------- */
/* SINGLE POST META / TAG SECTION                     */
/* -------------------------------------------------- */

/* Style the date, author, and category under the single post title */
/* TOP meta under title */
.single .entry-meta {
    border-bottom: 3px solid #dc143c;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #828282;
    font-weight: bold;
}

.single .entry-meta .posted-on,
.single .entry-meta .byline,
.single .entry-meta .cat-links {
    display: block;
}

/* Separator line above tag section */
.post-separator {
    border-top: 1px solid #eef3f7;
    margin: 28px 0 18px;
}

/* Tag section block under posts */
.tags-section {
    margin-top: 20px;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.tags-section h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
}

.post-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-tags li {
    display: inline-block;
    margin: 3px 4px 3px 0;
    padding: 3px 8px;
    background-color: #eee;
    border-radius: 4px;
    font-size: 13px;
}

.post-tags a {
    text-decoration: none;
    color: #0073aa;
}

.post-tags a:hover {
    color: #dc143c;
}

/* -------------------------------- */
/* BLOCKQUOTE — CLEAN EDITORIAL     */
/* -------------------------------- */

blockquote,
.wp-block-quote,
.wp-block-quote blockquote {
    position: relative;
    margin: 1.5rem 0;
    padding: 1.2rem 1.4rem;
    background: #f1f2f4;
    border-left: 4px solid #446197;
    border-radius: 4px;
}

/* Paragraph text inside quote */
blockquote p,
.wp-block-quote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 450;
    color: #222;
}

/* Optional: citation / source */
blockquote cite,
.wp-block-quote cite {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* -------------------------------------------------- */
/* RESPONSIVE LAYOUT (TABLET / MOBILE)                */
/* -------------------------------------------------- */

/* Shared tablet header layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .site-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .site-header .site-branding {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .site-header .header-widget {
        order: 2;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        position: static;
    }

    .simple-social-icons {
        justify-content: center;
    }

    .simple-social-icons li {
        margin-left: 5px;
    }

    .simple-social-icons a {
        font-size: 14px;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
        max-width: 700px;
        min-height: auto;
        margin: 40px auto 30px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-left,
    .side-posts-container {
        width: 100%;
        max-width: 100%;
    }

    .hero-left img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        margin-bottom: 16px;
    }

    .hero-left-text {
        max-width: 100%;
    }

    .hero-left-text h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-excerpt {
        font-size: 15px;
        line-height: 1.55;
    }

    .side-posts-container {
        gap: 22px;
    }

    .side-post {
        width: 100%;
        gap: 18px;
        padding: 12px;
        flex-direction: row;
        align-items: flex-start;
        box-sizing: border-box;
    }

    .side-post img {
        width: 205px;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .side-post-text h3 {
        font-size: 16px;
        line-height: 1.34;
    }
}

@media (max-width: 600px) {
    .hero-section {
        margin: 30px 15px 30px;
        gap: 28px;
        max-width: none;
    }

    .hero-left-text h2 {
        font-size: 18px;
    }

    .hero-excerpt {
        font-size: 14px;
        line-height: 1.5;
    }

    .side-post {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        padding: 12px;
        box-sizing: border-box;
    }

    .side-post img {
        width: 100%;
        height: auto;
    }

    .side-post-text {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
}



/* iPad LANDSCAPE (≈1024 wide in landscape) */
@media (min-width: 901px) and (max-width: 1024px) {
    .main-navigation ul {
        flex-wrap: nowrap;
        justify-content: center;
        column-gap: 20px;
    }
	}

 @media (max-width: 768px) {
    html,
    body,
    #page,
    .site,
    .site-content {
        overflow-x: hidden;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .site-content {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .content-area {
        width: 100%;
        max-width: 700px;
        padding: 0 16px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .site-main {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .main-navigation .main-nav > ul,
    .main-navigation .menu > ul,
    .main-navigation ul.menu {
        display: none !important;
    }

    .main-navigation .menu-toggle,
    .main-navigation .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        margin: 10px auto 10px 20px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        border: 1px solid #dcdcdc;
        padding: 8px 14px;
        border-radius: 4px;
        color: #373838;
        background: #fff;
        cursor: pointer;
    }

    .main-navigation {
        display: block !important;
    }

    .main-navigation.toggled ul {
        display: block !important;
        text-align: center;
        background: #fff;
        padding: 10px 0;
    }

    .main-navigation.toggled ul li {
        display: block;
        padding: 8px 0;
    }

    .main-navigation.toggled ul li a {
        color: #373838;
        text-decoration: none;
    }
}

@media (min-width: 1025px) {
    .main-navigation .menu-toggle,
    .main-navigation .mobile-menu-toggle {
        display: none !important;
    }

    .main-navigation {
        text-align: center;
    }

    .main-navigation .inside-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-navigation .main-nav {
        float: none !important;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .main-navigation .main-nav > ul,
    .main-navigation .menu > ul,
    .main-navigation ul.menu {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

	/* -------------------------------------------------- */
/* HERO + BLOG IMAGE RULES */
/* -------------------------------------------------- */

/* iPad landscape: make hero fluid */
@media (min-width: 901px) and (max-width: 1023px) {
    .hero-left img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block;
    }

    .hero-left-text,
    .hero-excerpt,
    .hero-meta {
        max-width: 100% !important;
    }
}

/* Desktop: keep blog-list thumbnails at native width */


.archive .post-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* ================================
   BLOG LIST: Phones (≤600)
   ================================ */
@media (max-width: 900px) {
    .blog .site-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
        padding: 0 16px;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .blog .site-main {
        max-width: 920px;
        margin: 0 auto;
        gap: 26px 18px;
    }
}

@media (max-width: 600px) {
    .blog .site-main {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .blog .site-main article {
       width: 77%;
    margin: 0 auto 14px;
    }

    .blog .entry-title {
        font-size: 18px;
        line-height: 1.25;
    }
}

@media (max-width: 600px) {
    .blog .post-meta-inline {
        display: block;
        line-height: 1.35;
    }

    .blog .post-meta-inline .post-category,
    .blog .post-meta-inline .post-date {
        display: block;
    }

    .blog .post-meta-inline .post-date {
        margin-top: 2px;
    }
}

	/* -------------------------------- */
/* ARCHIVE / SEARCH / AUTHOR GRIDS  */
/* -------------------------------- */

:is(.category, .search, .search-results, .author) #primary,
:is(.category, .search, .search-results, .author) .content-area {
    width: 100%;
    max-width: 100%;
}

:is(.category, .search, .search-results, .author) .site-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 22px;
    align-items: start;
}

:is(.category, .search, .search-results, .author) .site-main > .page-header,
:is(.category, .search, .search-results, .author) .paging-navigation,
:is(.category, .search, .search-results, .author) .navigation.pagination,
:is(.category, .search, .search-results, .author) .nav-links {
    grid-column: 1 / -1;
    width: 100%;
}

:is(.category, .search, .search-results, .author) .post-image img {
    display: block;
    width: 100%;
    height: auto;
}

:is(.category, .search, .search-results, .author) .entry-title,
:is(.category, .search, .search-results, .author) .entry-title a {
    display: block;
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    text-decoration: none;
}

:is(.category, .search, .search-results, .author) .inside-article {
    display: flex;
    flex-direction: column;
    padding: 0;
}

:is(.category, .search, .search-results, .author) .post-image {
    order: 1;
    width: 100%;
    margin: 0 0 10px;
}

:is(.category, .search, .search-results, .author) .post-meta-inline {
    order: 2;
    margin: 8px 0 6px;
    font-size: 12px;
}

:is(.category, .search, .search-results, .author) .entry-header {
    order: 3;
}

:is(.category, .search, .search-results, .author) .post-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 768px) {
    :is(.category, .search, .search-results, .author) .site-main {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    :is(.category, .search, .search-results, .author) article {
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    :is(.category, .search, .search-results, .author) .post-meta-inline {
        display: block;
        line-height: 1.35;
    }

    :is(.category, .search, .search-results, .author) .post-meta-inline .post-category,
    :is(.category, .search, .search-results, .author) .post-meta-inline .post-date {
        display: block;
    }

    :is(.category, .search, .search-results, .author) .post-meta-inline .post-date {
        margin-top: 2px;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    :is(.category, .search, .search-results, .author) .site-main {
        max-width: 920px;
        margin: 0 auto;
        gap: 26px 18px;
    }
}



/* === GLOBAL IMAGE RADIUS (clean + consistent) === */
.post-image img,
.hero-left img,
.side-post img,
.tvp-streamer-card-image img,
.tvp-featured-editorial-image img {
    border-radius: 4px !important;
}
.side-post,
.tvp-streamer-card,
.tvp-featured-editorial-inner {
    border-radius: 4px;
    overflow: hidden;
}

/* -------------------------------- */
/* HOMEPAGE NEWSLETTER BLOCK        */
/* -------------------------------- */


.tvp-newsletter {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;

    background: #eef3f7;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;

    padding: 42px 20px;
    box-sizing: border-box;

    max-width: none !important;
}

.blog .tvp-newsletter,
.archive .tvp-newsletter {
    grid-column: 1 / -1;
}

.tvp-newsletter-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.tvp-newsletter-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 10px;
    color: #032540;
}

.tvp-newsletter h2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 600;
    color: #032540;
}

.tvp-newsletter-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 18px;
}

.tvp-newsletter-button {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #032540;
    color: #032540;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.tvp-newsletter-button:hover {
    background: #032540;
    color: #fff;
}

@media (max-width: 600px) {
    .tvp-newsletter {
        margin: 50px 0;
        margin-left: -50vw;
        padding: 34px 16px;
    }

    .tvp-newsletter h2 {
        font-size: 22px;
    }
}


/* -------------------------------- */
/* SHARED IMAGE HOVER               */
/* -------------------------------- */

.home article img,
.hero-left img,
.recent-post img,
.side-post img,
.category .site-main .post-image img,
.search .site-main .post-image img,
.search-results .site-main .post-image img,
.author .site-main .post-image img,
.pick img,
.tvp-featured-editorial-image img {
    transition: transform 0.25s ease;
}

.home article:hover img,
.hero-left:hover img,
.recent-post:hover img,
.side-post:hover img,
.category .site-main article:hover .post-image img,
.search .site-main article:hover .post-image img,
.search-results .site-main article:hover .post-image img,
.author .site-main article:hover .post-image img,
.pick:hover img,
.tvp-featured-editorial:hover .tvp-featured-editorial-image img {
    transform: scale(1.02);
}

