/*
Theme Name: Yardienews
Theme URI: https://example.com/yardienews
Author: Site Team
Author URI: https://example.com
Description: Original entertainment news theme for Yardienews.
Version: 0.4.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: yardienews
*/

:root {
    --bn-bg: #f4f2ed;
    --bn-surface: #ffffff;
    --bn-text: #161616;
    --bn-muted: #626262;
    --bn-border: #dddddd;
    --bn-brand: #111111;
    --bn-accent: #d42e12;
    --bn-accent-alt: #f3bf36;
    --bn-radius: 14px;
    --bn-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
    color: var(--bn-text);
    background:
        radial-gradient(circle at 100% -20%, rgba(212, 46, 18, 0.12), transparent 42%),
        radial-gradient(circle at -10% 20%, rgba(243, 191, 54, 0.16), transparent 38%),
        var(--bn-bg);
    line-height: 1.6;
}

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

a:hover,
a:focus {
    text-decoration: underline;
}

.site {
    max-width: 1240px;
    margin: 0 auto;
    background: var(--bn-surface);
    min-height: 100vh;
    box-shadow: var(--bn-shadow);
}

.site-header,
.site-footer {
    color: #fff;
    background: var(--bn-brand);
}

/* ---- Nav Radio Player ---- */
.primary-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.primary-nav__menu {
    flex: 1;
    min-width: 0;
}

.primary-nav__menu .menu--primary {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-radio {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 1rem;
    border-left: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
    background: rgba(0,0,0,0.18);
    transition: background 0.2s;
}

.nav-radio.is-playing {
    background: rgba(212, 46, 18, 0.25);
}

/* Play/Pause button */
.nav-radio__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bn-accent-alt);
    background: transparent;
    color: var(--bn-accent-alt);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-radio__btn:hover {
    background: var(--bn-accent-alt);
    color: #111;
    transform: scale(1.1);
}

.nav-radio__btn.is-playing {
    background: var(--bn-accent-alt);
    color: #111;
}

.nav-radio__btn.is-loading {
    background: rgba(243,191,54,0.15);
    cursor: wait;
}

.nav-radio__btn.is-error {
    border-color: #ff5555;
    color: #ff5555;
}

/* Icon visibility logic */
.nav-radio__icon { pointer-events: none; }
.nav-radio__icon--pause  { display: none; }
.nav-radio__icon--loading { display: none; }

.nav-radio__btn.is-playing .nav-radio__icon--play   { display: none; }
.nav-radio__btn.is-playing .nav-radio__icon--pause  { display: block; }

.nav-radio__btn.is-loading .nav-radio__icon--play    { display: none; }
.nav-radio__btn.is-loading .nav-radio__icon--loading { display: block; }

/* Info label */
.nav-radio__info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-radio__live {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--bn-accent-alt);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-radio.is-playing .nav-radio__live {
    opacity: 1;
}

.nav-radio__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.nav-radio__mobile-text {
    display: none;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--bn-accent-alt);
}

/* Animated bars (visible when playing) */
.nav-radio__bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-radio.is-playing .nav-radio__bars {
    opacity: 1;
}

.nav-radio__bars span {
    display: block;
    width: 3px;
    background: var(--bn-accent-alt);
    border-radius: 2px;
    animation: yn-bar 0.9s ease-in-out infinite alternate;
}

.nav-radio__bars span:nth-child(1) { height: 6px;  animation-delay: 0s;    }
.nav-radio__bars span:nth-child(2) { height: 12px; animation-delay: 0.2s;  }
.nav-radio__bars span:nth-child(3) { height: 9px;  animation-delay: 0.35s; }
.nav-radio__bars span:nth-child(4) { height: 14px; animation-delay: 0.1s;  }

@keyframes yn-bar {
    from { transform: scaleY(0.35); }
    to   { transform: scaleY(1); }
}

/* Hide on very small screens */
@media (max-width: 480px) {
    .nav-radio {
        gap: 0.45rem;
        padding: 0 0.75rem;
    }

    .nav-radio__info,
    .nav-radio__bars { display: none; }

    .nav-radio__mobile-text {
        display: inline-block;
    }
}

/* ---- Social Icons (header & footer) ---- */
.yn-social {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.yn-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.18s;
    flex-shrink: 0;
}

.yn-social__icon svg { width: 16px; height: 16px; pointer-events: none; }

.yn-social__icon:hover,
.yn-social__icon:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    outline: none;
}

.yn-social__icon--x:hover         { background: #000;    border-color: #444;    color: #fff; }
.yn-social__icon--tiktok:hover    { background: #010101; border-color: #69c9d0; color: #fff; }
.yn-social__icon--instagram:hover {
    background: radial-gradient(circle at 30% 110%, #ffdb8b 0%, #ee653d 25%, #d42f8d 50%, #a133c2 75%);
    border-color: transparent;
    color: #fff;
}
.yn-social__icon--youtube:hover { background: #ff0000; border-color: #cc0000; color: #fff; }

.yn-social--footer .yn-social__icon { width: 38px; height: 38px; }
.yn-social--footer .yn-social__icon svg { width: 18px; height: 18px; }
.yn-social--footer { margin-top: 0.9rem; }

/* ---- Inline Share Strip (article meta row) ---- */
.yn-share-inline {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    flex-shrink: 0;
}

.yn-share-inline__label {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bn-muted);
    margin-right: 0.1rem;
    white-space: nowrap;
}

.yn-si {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f2;
    border: 1.5px solid #ddd;
    color: #444;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.16s;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.yn-si svg { pointer-events: none; flex-shrink: 0; }

.yn-si:hover,
.yn-si:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    outline: none;
}

.yn-si--x:hover     { background: #000;    border-color: #000;    color: #fff; }
.yn-si--fb:hover    { background: #1877f2; border-color: #1877f2; color: #fff; }
.yn-si--wa:hover    { background: #25d366; border-color: #25d366; color: #fff; }
.yn-si--copy:hover  { background: #6366f1; border-color: #6366f1; color: #fff; }

.yn-copy__check { display: none; }
.yn-copy__link  { display: block; }

.yn-si--copy.yn-copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    transform: translateY(-3px);
}
.yn-si--copy.yn-copied .yn-copy__link  { display: none; }
.yn-si--copy.yn-copied .yn-copy__check { display: block; }

@media (max-width: 640px) {
    .yn-share-inline__label { display: none; }
    .yn-si { width: 25px; height: 25px; }
}

/* ---- Brand Row ---- */
.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.site-kicker {
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
}

.site-title {
    margin: 0;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 1;
}

.site-title a,
.site-title a:hover,
.site-title a:focus {
    text-decoration: none;
}

.site-description {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: var(--bn-accent-alt);
    color: #131313;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(243, 191, 54, 0.28);
}

.primary-nav {
    padding: 0 0 0 1.25rem;
}

.primary-nav__menu {
    padding-bottom: 0.5rem;
}

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

.menu--primary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    padding: 0.5rem 0;
}

.menu--primary li a {
    display: block;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.menu--primary li a:hover,
.menu--primary li a:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.11);
}

.site-main {
    padding: 1.2rem;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 1fr);
    gap: 1rem;
    align-items: start;
}

.content-with-sidebar .site-main {
    min-width: 0;
}

.content-with-sidebar > .home-sidebar,
.content-with-sidebar > .site-sidebar {
    align-self: start;
    position: static;
}

.home-content {
    display: block;
}

.home-sidebar {
    display: grid;
    gap: 0.5rem;
}

.sidebar-widget--ad {
    background: #fafafa;
}

.sidebar-widget--ad > * {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-widget--ad iframe,
.sidebar-widget--ad img,
.sidebar-widget--ad video,
.sidebar-widget--ad embed,
.sidebar-widget--ad object {
    display: block;
    width: 100%;
    max-width: 380px;
    aspect-ratio: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #111;
}

.sidebar-widget--ad iframe,
.sidebar-widget--ad embed,
.sidebar-widget--ad object {
    min-height: 260px;
}

.sidebar-widget--ad video {
    aspect-ratio: 16 / 9;
    max-height: 420px;
}

.sidebar-widget--ad img {
    max-height: 460px;
}

.sidebar-widget--ad p {
    margin: 0;
    color: var(--bn-muted);
    font-size: 0.95rem;
}

.site-sidebar {
    position: static;
    padding: 1rem;
    border-left: 1px solid var(--bn-border);
    background: linear-gradient(180deg, rgba(212, 46, 18, 0.04), rgba(243, 191, 54, 0.03));
}

.sidebar-widget {
    margin-bottom: 0;
    padding: 0.75rem;
    border: 1px solid var(--bn-border);
    border-radius: 12px;
    background: #fff;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget__title {
    margin: 0 0 0.6rem;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
}

.sidebar-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-widget li {
    border-top: 1px solid #f0f0f0;
    padding: 0.45rem 0;
    font-size: 0.9rem;
}

.sidebar-widget li:first-child {
    border-top: none;
    padding-top: 0;
}

.sidebar-widget li:last-child {
    padding-bottom: 0;
}

.sidebar-widget a {
    color: #202020;
}

.sidebar-widget a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.home-main {
    display: grid;
    gap: 1.35rem;
}

.home-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 1fr);
    gap: 1rem;
    align-items: start;
}

.reveal-up {
    animation: reveal-up 0.7s ease both;
}

.section-title {
    margin: 0 0 0.75rem;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    letter-spacing: 0.03em;
}

.hero-block {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.hero-block__main {
    width: 100%;
    max-width: 54rem;
}

.hero-story {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: minmax(0, 1fr);
    padding: 0.5rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fbfbfb;
}

.hero-story__image {
    position: relative;
    display: block;
    border-radius: calc(var(--bn-radius) - 4px);
    overflow: hidden;
    background: #101010;
}

.hero-story__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-story__image-fallback {
    display: block;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(145deg, #202020, #4f4f4f);
}

.story-tag {
    display: inline-flex;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-story__title {
    margin: 0.55rem 0 0.35rem;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
    line-height: 1.04;
}

.hero-story__excerpt {
    color: #343434;
    font-size: 1rem;
}

.latest-flash-panel {
    margin-top: 1.5rem;
    padding: 0.8rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
}

.stacked-cards {
    display: grid;
    gap: 0.62rem;
}

.stack-card {
    padding: 0.65rem;
    border-radius: 10px;
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
}

.stack-card__title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.25;
}

.home-grid {
    display: block;
}

.latest-stream,
.trending-panel,
.channel-card,
.entry,
.comments-area {
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    background: #fff;
}

.latest-stream,
.trending-panel,
.channel-card {
    padding: 0.95rem;
}

.stream-item {
    padding: 0.85rem 0;
    border-top: 1px solid #ececec;
}

.stream-item:first-of-type {
    border-top: none;
    padding-top: 0.2rem;
}

.stream-item__title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.24;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--bn-muted);
    margin: 0.3rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trending-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: trending;
}

.trending-list li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.4rem;
    align-items: start;
    padding: 0.62rem 0;
    border-top: 1px solid #ececec;
}

.trending-list li:first-child {
    border-top: none;
    padding-top: 0.2rem;
}

.trending-list li::before {
    counter-increment: trending;
    content: counter(trending);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: #f2f2f2;
    border: 1px solid #d7d7d7;
    color: #111;
    font-weight: 700;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.channel-card__title {
    margin: 0 0 0.6rem;
    font-size: 1.24rem;
}

.channel-posts {
    display: grid;
    gap: 0.75rem;
}

.channel-post {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    align-items: start;
    padding: 0.5rem 0;
    border-top: 1px solid #ececec;
}

.channel-post:first-child {
    border-top: none;
    padding-top: 0;
}

.channel-post__image {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.channel-post__image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

.channel-post__image-fallback {
    display: block;
    width: 100%;
    height: 60px;
    background: linear-gradient(145deg, #e0e0e0, #c0c0c0);
}

.channel-post__title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.channel-post__title a {
    text-decoration: none;
    color: inherit;
}

.channel-post__title a:hover {
    text-decoration: underline;
}
    margin-top: 0;
    padding-top: 0;
}

.entry {
    margin-bottom: 1rem;
    padding: 1rem;
}

.entry-title {
    margin: 0;
    line-height: 1.15;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.entry-content {
    margin-top: 0.7rem;
}

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

.comments-area {
    padding: 1rem;
}

/* =========================================
   FOOTER — Modern 4-column layout
   ========================================= */
.site-footer {
    background: #0d0d0f;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 3rem;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--bn-accent), var(--bn-accent-alt)) 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

/* ---- Brand col ---- */
.footer-brand {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.footer-site-name {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    line-height: 1;
}

.footer-site-name:hover {
    color: var(--bn-accent-alt);
    text-decoration: none;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    max-height: 48px;
    width: auto;
}

.footer-tagline {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
    background: var(--bn-accent);
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* ---- Generic footer col ---- */
.footer-col {
    display: grid;
    gap: 0.6rem;
    align-content: start;
}

.footer-col__title {
    margin: 0 0 0.4rem;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

/* ---- Footer nav menu ---- */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-menu li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: var(--bn-accent-alt);
    text-decoration: none;
}

/* ---- Topics list ---- */
.footer-topics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-topics li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-topics li a::before {
    content: '→';
    color: var(--bn-accent);
    font-size: 0.75rem;
}

.footer-topics li a:hover {
    color: var(--bn-accent-alt);
    text-decoration: none;
}

/* ---- Newsletter col ---- */
.footer-newsletter {
    gap: 0.7rem;
}

.footer-newsletter__sub {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.footer-newsletter__row {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-newsletter__subscribe {
    display: flex;
    gap: 0;
}

.footer-newsletter__input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 999px 0 0 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    min-width: 0;
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter__input:focus {
    border-color: var(--bn-accent);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter__btn {
    padding: 0.65rem 1.1rem;
    border: none;
    border-radius: 0 999px 999px 0;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, background 0.2s;
}

.footer-newsletter__btn:hover {
    background: #b8220d;
}

.footer-newsletter__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.footer-newsletter__human {
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-newsletter__human-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.footer-newsletter__human-target {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.footer-newsletter__human-range {
    margin-left: auto;
    width: 120px;
    accent-color: var(--bn-accent);
    outline: none;
}

.footer-newsletter__human-value {
    width: 34px;
    text-align: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.16rem 0.35rem;
}

.footer-newsletter__human-range:focus {
    outline: 2px solid rgba(212, 46, 18, 0.35);
    outline-offset: 2px;
}

.footer-newsletter__thanks {
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 600;
    margin: 0;
}

.footer-newsletter__error {
    font-size: 0.9rem;
    color: #f87171;
    margin: 0;
}

/* ---- Bottom bar ---- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__copy {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom__copy a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-bottom__copy a:hover {
    color: var(--bn-accent-alt);
}

.footer-bottom__links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-bottom__links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom__links a:hover {
    color: var(--bn-accent-alt);
}

/* ---- Footer responsive ---- */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
        padding: 2rem 1rem 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        justify-items: center;
        text-align: center;
    }

    .footer-col {
        justify-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.9rem 1rem 1.2rem;
        gap: 0.75rem;
    }

    .footer-menu,
    .footer-topics {
        justify-items: center;
    }

    .footer-newsletter__row {
        width: 100%;
    }

    .footer-newsletter__subscribe {
        flex-direction: column;
        gap: 0.55rem;
    }

    .footer-newsletter__input {
        width: 100%;
        border-right: 1.5px solid rgba(255, 255, 255, 0.15);
        border-radius: 999px;
    }

    .footer-newsletter__btn {
        width: 100%;
        border-radius: 999px;
    }

    .footer-newsletter__human {
        margin-top: 0;
        justify-content: center;
        border-radius: 16px;
    }

    .footer-newsletter__human-range {
        width: 140px;
    }

    .footer-newsletter__human-value {
        width: 40px;
    }

    .footer-bottom__copy {
        text-align: center;
    }

    .footer-bottom__links {
        width: 100%;
        justify-content: center;
    }
}

/* ---- WhatsApp share button ---- */
.share-btn--wa {
    background: #25d366;
    color: #fff;
}

.blog-main {
    display: grid;
    gap: 1.5rem;
}

.blog-header {
    text-align: center;
    padding: 1rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, rgba(212, 46, 18, 0.08), rgba(243, 191, 54, 0.08));
}

.page-title {
    margin: 0;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: 0.04em;
    line-height: 1;
}

.page-description {
    margin: 0.6rem 0 0;
    font-size: 1.1rem;
    color: var(--bn-muted);
}

.store-main {
    display: grid;
    gap: 1.5rem;
}

.store-header {
    text-align: center;
    padding: 1rem;
    border-radius: var(--bn-radius);
    border: 1px solid rgba(212, 46, 18, 0.18);
    background: linear-gradient(135deg, rgba(243, 191, 54, 0.12), rgba(212, 46, 18, 0.08));
}

.store-title {
    margin: 0;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #141414;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.store-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.store-card__image {
    display: block;
    background: #f0f0f0;
    min-height: 180px;
}

.store-card__image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.store-card__fallback {
    display: block;
    width: 100%;
    min-height: 180px;
    background: linear-gradient(145deg, #2f2f2f, #4e4e4e);
}

.store-card__content {
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem;
}

.store-card__title {
    margin: 0;
    line-height: 1.2;
    font-size: 1.15rem;
}

.store-card__title a {
    color: inherit;
    text-decoration: none;
}

.store-card__title a:hover {
    color: var(--bn-accent);
}

.store-card__price {
    margin: 0;
    font-weight: 700;
    color: var(--bn-accent);
}

.store-card__stock {
    margin: 0;
    font-size: 0.88rem;
    color: var(--bn-muted);
}

.store-card__excerpt {
    color: #4d4d4d;
    font-size: 0.93rem;
}

.store-card__excerpt p {
    margin: 0;
}

.store-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 0.2rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--bn-accent);
    color: var(--bn-accent);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.store-card__button:hover {
    background: var(--bn-accent);
    color: #fff;
    text-decoration: none;
}

.blog-filters {
    padding: 0.85rem;
    border-radius: var(--bn-radius);
    background: #fff;
    border: 1px solid var(--bn-border);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.filter-tag {
    display: inline-flex;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--bn-border);
    background: #f9f9f9;
    color: #161616;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.filter-tag:hover,
.filter-tag.active {
    border-color: var(--bn-accent);
    background: var(--bn-accent);
    color: #fff;
    text-decoration: none;
}

.blog-grid {
    min-height: 400px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.grid-item {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.grid-item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item--featured .grid-item__image {
    min-height: 340px;
}

.grid-item--featured .grid-item__title {
    font-size: 1.8rem;
}

.grid-item--secondary .grid-item__image {
    min-height: 200px;
}

.grid-item--secondary .grid-item__title {
    font-size: 1.3rem;
}

.grid-item--tertiary .grid-item__image {
    min-height: 140px;
}

.grid-item--tertiary .grid-item__title {
    font-size: 1rem;
}

.grid-item--tertiary .grid-item__excerpt,
.grid-item--tertiary .post-meta {
    display: none;
}

.grid-item__image {
    position: relative;
    width: 100%;
    background: #2b2b2b;
    overflow: hidden;
}

.grid-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-item__image-fallback {
    display: block;
    width: 100%;
    min-height: 140px;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
}

.grid-item__content {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0.55rem;
    padding: 0.9rem;
}

.grid-item__category {
    display: inline-flex;
    width: fit-content;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.grid-item__title {
    margin: 0;
    line-height: 1.2;
    color: #161616;
    text-decoration: none;
}

.grid-item__title a {
    color: inherit;
    transition: color 0.2s ease;
}

.grid-item__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.grid-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.4;
}

.post-meta {
    align-self: flex-end;
}

.pagination-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--bn-border);
    background: #fff;
    color: #161616;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    border-color: var(--bn-accent);
    background: var(--bn-accent);
    color: #fff;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--bn-muted);
    font-size: 1.1rem;
}

.news-main {
    display: grid;
    gap: 1.5rem;
}

.news-top-layout .news-page-intro {
    min-height: 100%;
}

.news-page-intro__lead {
    margin: 0;
    color: var(--bn-muted);
    line-height: 1.65;
    max-width: 62ch;
}

/* ---- Hero Stats ---- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--bn-muted);
    margin-top: 0.5rem;
}

/* ---- Stream Item Image Fallback ---- */
.stream-item__image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    background: linear-gradient(145deg, #e0e0e0, #c0c0c0);
    border-radius: 8px;
    font-size: 2rem;
    color: #666;
}

/* ---- Read More Link ---- */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bn-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.read-more-link:hover {
    color: var(--bn-brand);
    text-decoration: none;
}

/* ---- Load More Button ---- */
.load-more-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--bn-accent);
    border-radius: 999px;
    background: transparent;
    color: var(--bn-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background: var(--bn-accent);
    color: #fff;
}

.load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ---- Author Spotlight ---- */
.author-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: #f8f8f8;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--bn-muted);
}

/* ---- Newsletter Form ---- */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--bn-border);
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--bn-brand);
}

/* ---- Social Links ---- */
.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--bn-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Featured Playlist ---- */
.featured-playlist {
    padding: 1rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, rgba(243, 191, 54, 0.1), rgba(212, 46, 18, 0.1));
    border: 1px solid var(--bn-border);
}

.playlist-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #fff;
}

.playlist-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.track-info h3 {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.track-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bn-muted);
}

.track-controls {
    flex-shrink: 0;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bn-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.play-btn:hover {
    background: var(--bn-brand);
    transform: scale(1.05);
}

/* ---- Play Overlay ---- */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s;
}

.stream-item:hover .play-overlay {
    opacity: 1;
}

.mini-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.mini-play-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

/* ---- Featured Destinations ---- */
.featured-destinations {
    padding: 1rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, rgba(212, 46, 18, 0.08), rgba(243, 191, 54, 0.08));
    border: 1px solid var(--bn-border);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.destination-card {
    padding: 1rem;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    border: 1px solid var(--bn-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.destination-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--bn-accent), var(--bn-brand));
    margin: 0 auto 0.75rem;
    font-size: 2rem;
}

.destination-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.destination-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bn-muted);
}

/* ---- Breaking News Banner ---- */
.breaking-news-banner {
    padding: 0.75rem 1rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, var(--bn-brand), var(--bn-accent));
    color: #fff;
    border: 1px solid var(--bn-border);
}

.breaking-news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breaking-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.breaking-news-ticker {
    flex: 1;
    overflow: hidden;
}

.ticker-item {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.ticker-item a:hover {
    text-decoration: underline;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ---- News Categories ---- */
.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    color: var(--bn-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.category-link:hover {
    color: var(--bn-brand);
}

/* ---- Live Updates ---- */
.live-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.live-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bn-border);
}

.live-item:last-child {
    border-bottom: none;
}

.live-time {
    font-size: 0.8rem;
    color: var(--bn-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.live-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bn-text);
}

/* ---- Travel Tips ---- */
.tips-list {
    padding: 0;
    list-style: none;
}

.tips-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bn-accent);
    font-weight: bold;
}

/* ---- Weather Widget ---- */
.weather-info p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--bn-muted);
}

.weather-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--bn-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.weather-link:hover {
    color: var(--bn-brand);
}

/* ---- Chart Genres ---- */
.chart-genres {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-link {
    color: var(--bn-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.chart-link:hover {
    color: var(--bn-brand);
}

/* ---- Trending List (Updated) ---- */
.trending-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.trending-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid #ececec;
}

.trending-list li:first-child {
    border-top: none;
}

.trending-list li a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

.trending-list li a:hover {
    color: var(--bn-accent);
}

.post-date {
    font-size: 0.8rem;
    color: var(--bn-muted);
    font-weight: 500;
}

.news-header {
    text-align: center;
    padding: 1.2rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, rgba(212, 46, 18, 0.12), rgba(243, 191, 54, 0.1));
    border: 1px solid rgba(212, 46, 18, 0.2);
}

.breaking-stories {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.breaking-story {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    border: 2px solid var(--bn-accent);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.breaking-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(212, 46, 18, 0.18);
}

.breaking-story--primary {
    grid-row: span 2;
}

.breaking-story--primary .breaking-story__image {
    min-height: 380px;
}

.breaking-story--primary .breaking-story__title {
    font-size: 1.9rem;
}

.breaking-story--secondary .breaking-story__image {
    min-height: 180px;
}

.breaking-story--secondary .breaking-story__title {
    font-size: 1.25rem;
}

.breaking-story__image {
    position: relative;
    width: 100%;
    background: #2b2b2b;
    overflow: hidden;
}

.breaking-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.breaking-story__image-fallback {
    display: block;
    width: 100%;
    min-height: 180px;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
}

.breaking-story__content {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 0.6rem;
    padding: 0.95rem;
}

.breaking-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.breaking-story__title {
    margin: 0;
    line-height: 1.15;
    color: #161616;
}

.breaking-story__title a {
    color: inherit;
    transition: color 0.2s ease;
}

.breaking-story__title a:hover {
    color: var(--bn-accent);
}

.breaking-story__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.4;
}

.news-filters {
    padding: 0.85rem;
    border-radius: var(--bn-radius);
    background: #fff;
    border: 1px solid var(--bn-border);
}

.news-grid {
    min-height: 400px;
}

.news-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.95rem;
}

.news-item {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.news-item--hero {
    grid-column: span 2;
    grid-row: span 2;
}

.news-item--hero .news-item__image {
    min-height: 340px;
}

.news-item--hero .news-item__title {
    font-size: 1.8rem;
}

.news-item--featured .news-item__image {
    min-height: 200px;
}

.news-item--featured .news-item__title {
    font-size: 1.3rem;
}

.news-item--standard .news-item__image {
    min-height: 140px;
}

.news-item--standard .news-item__title {
    font-size: 1.05rem;
}

.news-item--standard .news-item__excerpt {
    display: none;
}

.news-item__image {
    position: relative;
    width: 100%;
    background: #2b2b2b;
    overflow: hidden;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item__image-fallback {
    display: block;
    width: 100%;
    min-height: 140px;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
}

.news-item__content {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0.55rem;
    padding: 0.9rem;
}

.news-item__category {
    display: inline-flex;
    width: fit-content;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(212, 46, 18, 0.15);
    color: var(--bn-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.news-item__title {
    margin: 0;
    line-height: 1.2;
    color: #161616;
    text-decoration: none;
}

.news-item__title a {
    color: inherit;
    transition: color 0.2s ease;
}

.news-item__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.news-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    color: #505050;
    line-height: 1.4;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home-top-layout,
    .hero-block,
    .home-grid,
    .channel-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-main {
        padding: 1rem;
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .content-with-sidebar > .home-sidebar,
    .content-with-sidebar > .site-sidebar {
        position: static;
    }

    .site-sidebar {
        position: static;
        border-left: none;
        border-top: 1px solid var(--bn-border);
    }

    .grid-item--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-item--featured .grid-item__image {
        min-height: 220px;
    }

    .grid-item--featured .grid-item__title {
        font-size: 1.4rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
    }

    .breaking-stories {
        grid-template-columns: 1.5fr 1fr;
    }

    .breaking-story--primary {
        grid-row: span 1;
    }

    .breaking-story--primary .breaking-story__image {
        min-height: 240px;
    }

    .breaking-story--secondary .breaking-story__image {
        min-height: 140px;
    }

    .news-item--hero {
        grid-column: span 1;
        grid-row: span 1;
    }

    .news-item--hero .news-item__image {
        min-height: 220px;
    }

    .news-item--hero .news-item__title {
        font-size: 1.4rem;
    }

    .news-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
    }

    .single-content-grid {
        grid-template-columns: 1fr;
    }

    .single-story-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .brand-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .yn-social--header {
        width: 100%;
        justify-content: center;
        align-self: center;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .menu--primary {
        gap: 0.4rem;
    }

    .menu--primary li {
        flex: 1 1 auto;
    }

    .menu--primary li a {
        text-align: center;
    }

    .hero-story__title {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .top-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .page-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .category-filter {
        gap: 0.35rem;
    }

    .filter-tag {
        padding: 0.4rem 0.65rem;
        font-size: 0.8rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.6rem;
    }

    .grid-item--secondary .grid-item__image {
        min-height: 140px;
    }

    .grid-item--secondary .grid-item__title {
        font-size: 1.1rem;
    }

    .grid-item__content {
        gap: 0.3rem;
        padding: 0.6rem;
    }

    .grid-item__excerpt {
        -webkit-line-clamp: 1;
    }

    .breaking-stories {
        grid-template-columns: 1fr;
    }

    .breaking-story--primary {
        grid-row: span 1;
    }

    .breaking-story--primary .breaking-story__image {
        min-height: 200px;
    }

    .breaking-story--primary .breaking-story__title {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }

    .breaking-story--secondary .breaking-story__image {
        min-height: 120px;
    }

    .breaking-story--secondary .breaking-story__title {
        font-size: 1.1rem;
    }

    .breaking-story__excerpt {
        -webkit-line-clamp: 1;
    }

    .news-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.6rem;
    }

    .news-item--hero .news-item__image {
        min-height: 160px;
    }

    .news-item--hero .news-item__title {
        font-size: 1.2rem;
    }

    .news-item__content {
        gap: 0.3rem;
        padding: 0.6rem;
    }

    .news-item__excerpt {
        -webkit-line-clamp: 1;
    }
}
}

.entry-title {
    margin-top: 0;
    line-height: 1.2;
}

.entry {
    margin-bottom: 2rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.6rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

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

.single-main {
    display: grid;
    gap: 1.5rem;
    max-width: none;
    margin: 0;
}

.single-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 1rem;
    align-items: start;
}

.single-content-grid--solo {
    grid-template-columns: minmax(0, 1fr);
}

.single-content-grid--solo,
.single-content-grid--solo .single-article,
.single-main > .related-stories,
.single-main > .comments-area,
.single-main > .ync-comments-area {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.single-article {
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    overflow: hidden;
}

.single-story-sidebar {
    display: grid;
    gap: 0.8rem;
    position: static;
}

.single-story-sidebar__card {
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    padding: 0.9rem;
}

.single-story-sidebar__title {
    margin: 0 0 0.65rem;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.04em;
    font-size: 1.25rem;
}

.single-story-sidebar__meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.single-story-sidebar__meta li {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px dashed var(--bn-border);
}

.single-story-sidebar__meta li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.single-story-sidebar__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bn-muted);
    font-weight: 700;
}

.single-story-sidebar__value {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f1f1f;
}

.single-story-sidebar__topics {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.single-story-sidebar__topic {
    display: inline-flex;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--bn-border);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #222;
    transition: all 0.2s ease;
}

.single-story-sidebar__topic:hover {
    text-decoration: none;
    border-color: var(--bn-accent);
    background: var(--bn-accent);
    color: #fff;
}

.single-story-sidebar__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-story-sidebar__list li {
    border-top: 1px solid #efefef;
    padding: 0.5rem 0;
    display: grid;
    gap: 0.25rem;
}

.single-story-sidebar__list li:first-child {
    border-top: none;
    padding-top: 0;
}

.single-story-sidebar__list li:last-child {
    padding-bottom: 0;
}

.single-story-sidebar__list a {
    color: #1d1d1d;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.single-story-sidebar__list a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.single-story-sidebar__list time {
    font-size: 0.76rem;
    color: var(--bn-muted);
}

.single-hero-image {
    width: 100%;
    overflow: hidden;
    background: #111;
}

.single-hero-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.single-article__inner {
    padding: 1.5rem;
    display: grid;
    gap: 1.2rem;
}

.single-article__category {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.single-article__category:hover {
    opacity: 0.85;
    text-decoration: none;
}

.single-article__title {
    margin: 0.4rem 0 0;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.single-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--bn-border);
    border-bottom: 1px solid var(--bn-border);
}

.single-article__author,
.single-article__date,
.single-article__views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bn-muted);
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #161616;
}

.meta-value a {
    color: inherit;
}

.meta-value a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.single-article__body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #282828;
}

.single-article__body h2,
.single-article__body h3,
.single-article__body h4 {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.03em;
    margin-top: 1.8rem;
}

.single-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.single-article__body blockquote {
    margin: 1.5rem 0;
    padding: 0.8rem 1.2rem;
    border-left: 4px solid var(--bn-accent);
    background: rgba(212, 46, 18, 0.05);
    font-style: italic;
    font-size: 1.15rem;
    border-radius: 0 10px 10px 0;
}

.single-article__footer {
    display: grid;
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--bn-border);
}

.single-article__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.tags-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bn-muted);
}

.tag-chip {
    display: inline-flex;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--bn-border);
    background: #f5f5f5;
    color: #333;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.tag-chip:hover {
    border-color: var(--bn-accent);
    background: var(--bn-accent);
    color: #fff;
    text-decoration: none;
}

.single-article__nav .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.single-article__nav .nav-previous,
.single-article__nav .nav-next {
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--bn-border);
    background: #fafafa;
    transition: all 0.2s ease;
}

.single-article__nav .nav-next {
    text-align: right;
}

.single-article__nav .nav-previous:hover,
.single-article__nav .nav-next:hover {
    border-color: var(--bn-accent);
    background: rgba(212, 46, 18, 0.04);
}

.nav-direction {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bn-muted);
    margin-bottom: 0.25rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #161616;
}

.related-stories {
    padding: 1rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.related-item {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 10px;
    border: 1px solid var(--bn-border);
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.related-item__image,
.related-item__fallback {
    width: 100%;
    min-height: 120px;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
    overflow: hidden;
}

.related-item__image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.related-item__content {
    padding: 0.65rem;
}

.related-item__title {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.25;
}

.related-item__title a {
    color: #161616;
    transition: color 0.2s ease;
}

.related-item__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

/* =========================================
   SINGLE POST — ENTERTAINMENT UPGRADE
   ========================================= */

/* ---- Reading Progress Bar ---- */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--bn-accent), var(--bn-accent-alt));
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(212, 46, 18, 0.6);
}

/* ---- Cinematic Hero ---- */
.single-hero {
    position: relative;
    width: 100%;
    border-radius: var(--bn-radius);
    overflow: hidden;
    background: #111;
    margin-bottom: 0;
    aspect-ratio: 16 / 7;
    min-height: 340px;
    max-height: 600px;
}

.single-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.single-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.82) 100%
    );
}

.single-hero__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.2rem, 4vw, 2.4rem);
    display: grid;
    gap: 0.55rem;
}

.single-hero__cat {
    display: inline-flex;
    align-self: flex-start;
    width: fit-content;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: opacity 0.2s;
}

.single-hero__cat:hover {
    opacity: 0.85;
    text-decoration: none;
}

.single-hero__title {
    margin: 0;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.single-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}

.single-hero__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.single-hero__author a {
    color: #fff;
    font-weight: 700;
}

.single-hero__author a:hover {
    color: var(--bn-accent-alt);
    text-decoration: none;
}

.single-hero__sep {
    opacity: 0.5;
}

.single-hero__date,
.single-hero__read {
    opacity: 0.9;
}

/* ---- Plain header (no thumbnail) ---- */
.single-plain-header {
    padding: 1.5rem 0 0.5rem;
    display: grid;
    gap: 0.75rem;
}

.single-plain-header__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

/* ---- Share Strip ---- */
.share-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    margin: 1rem 0;
    background: var(--bn-surface);
    border: 1px solid var(--bn-border);
    border-left: 4px solid var(--bn-accent);
    border-radius: var(--bn-radius);
}

.share-strip__label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bn-muted);
    margin-right: 0.25rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
    line-height: 1;
}

.share-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn--fb {
    background: #1877f2;
    color: #fff;
}

.share-btn--tw {
    background: #000;
    color: #fff;
}

.share-btn--copy {
    background: var(--bn-surface);
    color: #222;
    border: 1px solid var(--bn-border);
}

.share-btn--copy:hover {
    border-color: var(--bn-accent);
    color: var(--bn-accent);
}

/* ---- Dropcap ---- */
.dropcap-body > p:first-of-type::first-letter {
    float: left;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 4.8rem;
    line-height: 0.78;
    margin: 0.1rem 0.18rem 0 0;
    color: var(--bn-accent);
    text-shadow: 2px 2px 0 rgba(212, 46, 18, 0.15);
}

/* ---- Enhanced blockquote / pull quote ---- */
.single-article__body blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.6rem 1.2rem 2rem;
    border-left: 5px solid var(--bn-accent);
    background: linear-gradient(135deg, rgba(212, 46, 18, 0.06) 0%, rgba(243, 191, 54, 0.04) 100%);
    font-style: italic;
    font-size: 1.22rem;
    line-height: 1.6;
    border-radius: 0 var(--bn-radius) var(--bn-radius) 0;
    position: relative;
}

.single-article__body blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.4rem;
    left: 0.8rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--bn-accent);
    opacity: 0.35;
    line-height: 1;
}

/* ---- Article body h2/h3 dividers ---- */
.single-article__body h2 {
    margin-top: 2.4rem;
    padding-top: 1rem;
    border-top: 3px solid var(--bn-accent);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: #111;
}

.single-article__body h3 {
    margin-top: 1.8rem;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #222;
    padding-left: 0.75rem;
    border-left: 3px solid var(--bn-accent-alt);
}

/* ---- On Fire story rail ---- */
.on-fire-title {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fire-badge {
    font-size: 1.1rem;
    line-height: 1;
}

.fire-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 0.65rem;
    border-top: 1px solid #efefef;
    padding: 0.6rem 0;
}

.fire-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.fire-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.fire-item {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.fire-item a {
    color: #1d1d1d;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    overflow-wrap: break-word;
}

.fire-item a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.fire-item time {
    font-size: 0.74rem;
    color: var(--bn-muted);
}

/* ---- You May Also Like ---- */
.ymal {
    margin-top: 2.5rem;
    padding: 0;
}

.ymal__header {
    margin-bottom: 1.2rem;
    display: grid;
    gap: 0.2rem;
}

.ymal__eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bn-accent);
}

.ymal__title {
    margin: 0;
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: 0.04em;
    color: #111;
    line-height: 1;
}

.ymal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.1rem;
}

.ymal-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--bn-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ymal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.ymal-card__img-wrap {
    display: block;
    overflow: hidden;
}

.ymal-card__img {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #222;
}

.ymal-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ymal-card:hover .ymal-card__img img {
    transform: scale(1.05);
}

.ymal-card__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
}

.ymal-card__cat {
    position: absolute;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.ymal-card__body {
    padding: 0.85rem;
    display: grid;
    gap: 0.4rem;
    align-content: start;
}

.ymal-card__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.ymal-card__title a {
    color: #111;
    transition: color 0.2s;
}

.ymal-card__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.ymal-card__excerpt {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ymal-card__meta {
    font-size: 0.78rem;
    color: var(--bn-muted);
    margin-top: 0.2rem;
}

/* Responsive tweaks for new components */
@media (max-width: 860px) {
    .single-hero {
        aspect-ratio: 16 / 9;
        min-height: 220px;
    }

    .single-hero__title {
        font-size: clamp(1.7rem, 6vw, 2.8rem);
    }

    .ymal__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 600px) {
    .share-strip {
        gap: 0.4rem;
    }

    .share-btn {
        padding: 0.38rem 0.7rem;
        font-size: 0.78rem;
    }

    .single-hero {
        border-radius: 0;
    }

    .ymal__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
}

/* =========================================
   STATIC PAGE
   ========================================= */

/* =========================================
   CONTACT / SUBMIT PAGE
   ========================================= */

/* ── Layout ──────────────────────────────────────────────────────────── */
.yn-contact-wrap {
    background: var(--bn-brand, #111);
    min-height: 100vh;
}

.yn-contact-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    color: #e8e8e8;
}

/* ── Page header ─────────────────────────────────────────────────────── */
.yn-contact-header {
    text-align: center;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 3rem;
}

.yn-contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    letter-spacing: .04em;
    color: #fff;
    line-height: 1;
    margin: 0 0 .6rem;
}

.yn-contact-tagline {
    font-size: 1.05rem;
    color: #aaa;
    margin: 0;
}

/* ── Section headings ────────────────────────────────────────────────── */
.yn-contact-guidelines h2,
.yn-contact-legal h2,
.yn-contact-form-wrap h2,
.yn-contact-direct h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: .06em;
    color: var(--bn-accent, #d42e12);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.yn-contact-guidelines p,
.yn-contact-legal p,
.yn-contact-direct p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ── Sections spacing ────────────────────────────────────────────────── */
.yn-contact-guidelines,
.yn-contact-legal,
.yn-contact-form-wrap,
.yn-contact-direct {
    margin-bottom: 3.5rem;
}

/* ── Submit type cards ───────────────────────────────────────────────── */
.yn-submit-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0 1.8rem;
}

.yn-submit-type {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    transition: border-color .2s, transform .2s;
}

.yn-submit-type:hover {
    border-color: var(--bn-accent, #d42e12);
    transform: translateY(-2px);
}

.yn-submit-type__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: .1rem;
}

.yn-submit-type strong {
    display: block;
    color: #fff;
    font-size: .95rem;
    margin-bottom: .3rem;
}

.yn-submit-type p {
    color: #999;
    font-size: .87rem;
    line-height: 1.55;
    margin: 0;
}

/* ── File type badges ────────────────────────────────────────────────── */
.yn-filetypes-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
}

.yn-filetype-badge {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: .25rem .65rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.yn-filetype-badge--audio  { background: #1f2a1a; color: #7ecb5a; border: 1px solid #4a8a2a; }
.yn-filetype-badge--video  { background: #1a1f2a; color: #5b9cf6; border: 1px solid #2a5ab8; }
.yn-filetype-badge--image  { background: #2a1a2a; color: #d080f5; border: 1px solid #8a3ab8; }
.yn-filetype-badge--doc    { background: #2a2010; color: #f5b840; border: 1px solid #b87820; }

.yn-filetypes-bar__limit {
    margin-left: auto;
    font-size: .83rem;
    color: #777;
}

.yn-filetypes-bar__limit strong {
    color: #ccc;
}

/* ── Legal list ──────────────────────────────────────────────────────── */
.yn-legal-list {
    padding-left: 1.2rem;
    color: #aaa;
    font-size: .9rem;
    line-height: 1.7;
}

.yn-legal-list li {
    margin-bottom: .8rem;
}

.yn-legal-list strong {
    color: #ddd;
}

.yn-legal-list a {
    color: var(--bn-accent, #d42e12);
    text-decoration: none;
}

.yn-legal-list a:hover {
    text-decoration: underline;
}

/* ── Form ────────────────────────────────────────────────────────────── */
.yn-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.yn-form-row--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.yn-form-field {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.yn-form-field label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #ccc;
}

.yn-form-field label span[aria-hidden] {
    color: var(--bn-accent, #d42e12);
    margin-left: .15rem;
}

.yn-form-label-note {
    font-weight: 400;
    font-size: .75rem;
    letter-spacing: 0;
    text-transform: none;
    color: #777;
    margin-left: .3rem;
}

/* inputs / textarea / select */
.yn-contact-form input[type="text"],
.yn-contact-form input[type="email"],
.yn-contact-form textarea,
.yn-contact-form select {
    background: #181818;
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    padding: .8rem 1rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.yn-contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.yn-contact-form input[type="text"]:focus,
.yn-contact-form input[type="email"]:focus,
.yn-contact-form textarea:focus,
.yn-contact-form select:focus {
    border-color: var(--bn-accent, #d42e12);
    background: #1e1e1e;
    box-shadow: 0 0 0 3px rgba(212,46,18,.15);
}

.yn-contact-form input::placeholder,
.yn-contact-form textarea::placeholder {
    color: #555;
}

.yn-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* ── File drop zone ──────────────────────────────────────────────────── */
.yn-file-drop-zone {
    background: #181818;
    border: 2px dashed rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    position: relative;
}

.yn-file-drop-zone:hover,
.yn-file-drop-zone--active {
    border-color: var(--bn-accent, #d42e12);
    background: #1d1512;
}

.yn-file-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.yn-file-drop-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: .4rem;
}

.yn-file-drop-label {
    color: #ccc;
    font-size: .95rem;
    margin: 0 0 .3rem;
}

.yn-file-drop-label strong {
    color: var(--bn-accent-alt, #f3bf36);
    text-decoration: underline;
}

.yn-file-hint {
    color: #555;
    font-size: .78rem;
    margin: 0;
}

.yn-file-chosen {
    margin-top: .6rem;
    font-size: .85rem;
    color: #7ecb5a;
    background: #1a2515;
    border-radius: 6px;
    padding: .4rem .8rem;
    display: inline-block;
}

/* ── Agree checkbox ──────────────────────────────────────────────────── */
.yn-form-field--agree {
    padding: 1rem 1.2rem;
    background: #161616;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
}

.yn-checkbox-label {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: .87rem;
    color: #aaa;
    line-height: 1.6;
}

.yn-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: .15rem;
    accent-color: var(--bn-accent, #d42e12);
    cursor: pointer;
}

.yn-inline-link {
    color: var(--bn-accent-alt, #f3bf36);
    text-decoration: underline;
}

/* ── Submit button ───────────────────────────────────────────────────── */
.yn-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: .5rem;
}

.yn-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--bn-accent, #d42e12);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .1em;
    padding: .8rem 2.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(212,46,18,.3);
}

.yn-submit-btn:hover {
    background: #b82510;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,46,18,.45);
}

.yn-submit-btn:active {
    transform: translateY(0);
}

/* ── Feedback notices ────────────────────────────────────────────────── */
.yn-contact-notice {
    border-radius: 10px;
    padding: 1rem 1.4rem;
    font-size: .95rem;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.yn-contact-notice--success {
    background: #142010;
    border: 1px solid #3a7a1a;
    color: #7ecb5a;
}

.yn-contact-notice--error {
    background: #201010;
    border: 1px solid #7a1a1a;
    color: #f08080;
}

/* ── Direct contact block ────────────────────────────────────────────── */
.yn-contact-email {
    font-size: 1.3rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .06em;
}

.yn-contact-email a {
    color: var(--bn-accent-alt, #f3bf36);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .2s;
}

.yn-contact-email a:hover {
    border-bottom-color: var(--bn-accent-alt, #f3bf36);
}

.yn-contact-note {
    font-size: .85rem;
    color: #666;
    margin-top: .5rem;
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
    .yn-submit-types {
        grid-template-columns: 1fr;
    }

    .yn-form-row--two-col {
        grid-template-columns: 1fr;
    }

    .yn-contact-main {
        padding: 1.5rem 1rem 4rem;
    }

    .yn-form-actions {
        justify-content: stretch;
    }

    .yn-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .yn-filetypes-bar__limit {
        margin-left: 0;
        width: 100%;
    }
}

.page-main {
    display: grid;
    gap: 1.5rem;
    max-width: none;
    margin: 0;
}

.page-banner {
    position: relative;
    border-radius: var(--bn-radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bn-brand), #3a3a3a);
}

.page-banner__image img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
    opacity: 0.55;
}

.page-banner__title-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}

.page-banner .page-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.page-article {
    padding: 1.4rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
}

.page-article__body {
    font-size: 1.08rem;
    line-height: 1.78;
    color: #282828;
}

.page-article__body h2,
.page-article__body h3 {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    letter-spacing: 0.03em;
    margin-top: 1.8rem;
    color: #161616;
}

.page-article__body a {
    color: var(--bn-accent);
    font-weight: 500;
}

.page-article__body a:hover {
    text-decoration: underline;
}

.page-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================================
   ARCHIVE
   ========================================= */

.archive-main {
    display: grid;
    gap: 1.35rem;
}

.archive-header {
    padding: 1.2rem;
    border-radius: var(--bn-radius);
    background: linear-gradient(135deg, rgba(212, 46, 18, 0.1), rgba(243, 191, 54, 0.1));
    border: 1px solid rgba(212, 46, 18, 0.18);
}

.archive-filters {
    padding: 0.85rem;
    border-radius: var(--bn-radius);
    background: #fff;
    border: 1px solid var(--bn-border);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.archive-item {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.archive-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.archive-item--lead {
    grid-column: span 2;
}

.archive-item--lead .archive-item__image {
    min-height: 300px;
}

.archive-item--lead .archive-item__title {
    font-size: 1.8rem;
}

.archive-item--secondary .archive-item__image {
    min-height: 200px;
}

.archive-item--secondary .archive-item__title {
    font-size: 1.25rem;
}

.archive-item--card .archive-item__image {
    min-height: 140px;
}

.archive-item--card .archive-item__title {
    font-size: 1.05rem;
}

.archive-item__image,
.archive-item__fallback {
    width: 100%;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
    overflow: hidden;
}

.archive-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.archive-item__content {
    padding: 0.9rem;
    display: grid;
    gap: 0.5rem;
}

.archive-item__title {
    margin: 0;
    line-height: 1.2;
}

.archive-item__title a {
    color: #161616;
    transition: color 0.2s ease;
}

.archive-item__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.archive-item__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.93rem;
    color: #505050;
    line-height: 1.4;
}

/* =========================================
   404 PAGE
   ========================================= */

.error-main {
    display: grid;
    gap: 1.5rem;
}

.error-block {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--bn-radius);
    background: #fff;
    border: 1px solid var(--bn-border);
}

.error-block__number {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: clamp(5rem, 14vw, 10rem);
    line-height: 1;
    color: var(--bn-accent);
    letter-spacing: 0.05em;
}

.error-block__title {
    margin: 0.2rem 0 0.7rem;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.error-block__message {
    font-size: 1.05rem;
    color: #555;
    max-width: 480px;
    margin: 0 auto 1.4rem;
    line-height: 1.6;
}

.error-block__search {
    max-width: 460px;
    margin: 0 auto 1.2rem;
}

.error-block__search .search-form {
    display: flex;
    gap: 0.5rem;
}

/* ============================================================
   CONTACT PAGE v2  (ync-* prefix)
   ============================================================ */

/* Page shell */
.ync-page {
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
}

/* ── Hero ────────────────────────────────────────────────────── */
.ync-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}
.ync-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(212,46,18,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(243,191,54,.07) 0%, transparent 65%);
    pointer-events: none;
}
.ync-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    padding: 7rem clamp(1.5rem, 6vw, 5rem) 6rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ync-hero__kicker {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bn-accent, #d42e12);
    margin: 0 0 1.2rem;
}
.ync-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: .92;
    color: #fff;
    margin: 0 0 1.4rem;
    letter-spacing: .02em;
}
.ync-hero__title-accent {
    color: var(--bn-accent, #d42e12);
}
.ync-hero__sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #aaa;
    margin: 0 0 2.4rem;
}
.ync-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--bn-accent, #d42e12);
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9rem 2rem;
    border-radius: var(--bn-radius, 14px);
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.ync-hero__cta:hover { background: #b8260f; transform: translateY(-2px); }
.ync-hero__scroll-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
}

/* ── Main container ──────────────────────────────────────────── */
.ync-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 6vw, 5rem) 6rem;
}

/* ── Toast notices ───────────────────────────────────────────── */
.ync-toast {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: var(--bn-radius, 14px);
    margin: 2.5rem 0 0;
    font-size: .93rem;
    line-height: 1.55;
}
.ync-toast--success {
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.35);
    color: #86efac;
}
.ync-toast--error {
    background: rgba(212,46,18,.12);
    border: 1px solid rgba(212,46,18,.35);
    color: #fca5a5;
}
.ync-toast strong { display: block; margin-bottom: .25rem; color: #fff; }
.ync-toast p { margin: 0; }
.ync-toast__icon { display: flex; align-items: center; flex-shrink: 0; }
.ync-toast--success .ync-toast__icon { color: #86efac; }
.ync-toast--error .ync-toast__icon { color: #fca5a5; }

/* ── Sections ────────────────────────────────────────────────── */
.ync-section { margin-top: 4rem; }
.ync-section__header { margin-bottom: 2.4rem; text-align: center; }
.ync-section__label {
    display: inline-block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bn-accent, #d42e12);
    margin-bottom: .7rem;
}
.ync-section__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 0 0 .8rem;
    letter-spacing: .03em;
}
.ync-section__sub { color: #999; font-size: .97rem; line-height: 1.7; margin: 0; }

/* ── Cards ───────────────────────────────────────────────────── */
.ync-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}
.ync-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: var(--bn-radius, 14px);
    padding: 1.5rem;
    transition: border-color .2s, transform .15s;
}
.ync-card:hover { border-color: #333; transform: translateY(-2px); }
.ync-card__icon-wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.ync-card__icon-wrap--red    { background: rgba(212,46,18,.18); }
.ync-card__icon-wrap--green  { background: rgba(34,197,94,.14); }
.ync-card__icon-wrap--blue   { background: rgba(59,130,246,.14); }
.ync-card__icon-wrap--purple { background: rgba(168,85,247,.14); }
.ync-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 .5rem; }
.ync-card p  { font-size: .87rem; color: #888; line-height: 1.6; margin: 0 0 .8rem; }
.ync-card__tag {
    font-size: .73rem;
    font-weight: 600;
    color: #666;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: .22rem .6rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Formats bar ─────────────────────────────────────────────── */
.ync-formats-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    padding: 1rem 1.4rem;
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
}
.ync-format {
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 6px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.ync-format--audio { background: rgba(34,197,94,.15); color: #86efac; }
.ync-format--video { background: rgba(59,130,246,.15); color: #93c5fd; }
.ync-format--image { background: rgba(168,85,247,.15); color: #d8b4fe; }
.ync-format--doc   { background: rgba(243,191,54,.15); color: #fde68a; }
.ync-formats-bar__limit { margin-left: auto; font-size: .82rem; color: #666; }
.ync-formats-bar__limit strong { color: #fff; }

/* ── Legal accordion ─────────────────────────────────────────── */
.ync-legal {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: var(--bn-radius, 14px);
    overflow: hidden;
}
.ync-legal__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    user-select: none;
    outline: none;
}
.ync-legal__toggle:focus-visible { outline: 2px solid var(--bn-accent,#d42e12); outline-offset: -2px; }
.ync-legal__toggle-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .93rem;
    color: #ccc;
}
.ync-legal__chevron {
    color: #555;
    transition: transform .25s;
    flex-shrink: 0;
}
.ync-legal__toggle--open .ync-legal__chevron { transform: rotate(180deg); }
.ync-legal__body {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #1e1e1e;
}
.ync-legal__list {
    margin: 1rem 0 0;
    padding-left: 1.4rem;
}
.ync-legal__list li {
    font-size: .87rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: .5rem;
}
.ync-legal__list li strong { color: #ccc; }
.ync-legal__list a { color: var(--bn-accent,#d42e12); text-decoration: none; }
.ync-legal__list a:hover { text-decoration: underline; }

/* ── Form section ────────────────────────────────────────────── */
.ync-form-section { }

.ync-form {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: var(--bn-radius, 14px);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Honeypot — hide visually and from layout */
.ync-hp {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Row */
.ync-form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Label */
.ync-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: .45rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.ync-req { color: var(--bn-accent,#d42e12); }
.ync-label-note {
    font-weight: 400;
    font-size: .75rem;
    text-transform: none;
    letter-spacing: 0;
    color: #666;
    margin-left: .4rem;
}

/* Input wrap (icon + input) */
.ync-input-wrap {
    position: relative;
}
.ync-input-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}
.ync-input-wrap--select .ync-input-icon { display: none; }

/* Base input */
.ync-input {
    width: 100%;
    box-sizing: border-box;
    background: #0e0e0e;
    border: 1px solid #272727;
    border-radius: 9px;
    color: #e0e0e0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .93rem;
    padding: .75rem .9rem .75rem 2.4rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.ync-input-wrap--select .ync-input { padding-left: .9rem; }
.ync-input::placeholder { color: #444; }
.ync-input:focus {
    border-color: var(--bn-accent,#d42e12);
    box-shadow: 0 0 0 3px rgba(212,46,18,.15);
}

/* Select */
.ync-input-wrap--select { position: relative; }
.ync-select-arrow {
    position: absolute;
    right: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

/* Textarea */
.ync-textarea {
    resize: vertical;
    min-height: 130px;
    padding-left: .9rem;
    line-height: 1.6;
}

/* Hint text */
.ync-field__hint {
    display: block;
    font-size: .75rem;
    color: #555;
    margin-top: .35rem;
}

/* ── Drop zone ───────────────────────────────────────────────── */
.ync-dropzone {
    position: relative;
    border: 2px dashed #272727;
    border-radius: 10px;
    background: #0e0e0e;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}
.ync-dropzone--over,
.ync-dropzone:focus-within {
    border-color: var(--bn-accent,#d42e12);
    background: rgba(212,46,18,.04);
}
.ync-dropzone__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.ync-dropzone__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 2.2rem 1.5rem;
    text-align: center;
}
.ync-dropzone__icon { color: #444; }
.ync-dropzone__label { font-size: .93rem; color: #888; margin: 0; }
.ync-dropzone__label strong { color: #ccc; }
.ync-dropzone__browse { color: var(--bn-accent,#d42e12); text-decoration: underline; }
.ync-dropzone__formats { font-size: .77rem; color: #555; margin: 0; }

.ync-dropzone__preview {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.2rem;
    position: relative;
    z-index: 1;
}
.ync-dropzone__preview-icon { display: flex; align-items: center; color: #888; }
.ync-dropzone__preview-name { font-size: .9rem; color: #ddd; flex: 1; word-break: break-all; }
.ync-dropzone__preview-size { font-size: .82rem; color: #777; white-space: nowrap; }
.ync-dropzone__clear {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    padding: .2rem .4rem;
    border-radius: 4px;
    transition: color .15s, background .15s;
    z-index: 3;
    position: relative;
}
.ync-dropzone__clear:hover { color: var(--bn-accent,#d42e12); background: rgba(212,46,18,.1); }

/* ── CAPTCHA ─────────────────────────────────────────────────── */
.ync-captcha {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.ync-captcha__target {
    display: flex;
    align-items: center;
    gap: .45rem;
    background: #0e0e0e;
    border: 1px solid #272727;
    border-radius: 9px;
    padding: .55rem .85rem;
    flex-shrink: 0;
}

.ync-captcha__target-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8b8b8b;
    font-weight: 700;
}

.ync-captcha__target-value {
    min-width: 2ch;
    font-family: 'Bebas Neue', monospace;
    font-size: 1.45rem;
    line-height: 1;
    color: #fff;
}

.ync-captcha__range {
    flex: 1 1 210px;
    min-width: 170px;
    accent-color: var(--bn-accent,#d42e12);
}

.ync-captcha__current {
    width: 42px;
    text-align: center;
    border-radius: 999px;
    border: 1px solid #2c2c2c;
    background: #101010;
    color: #f0f0f0;
    font-size: .86rem;
    font-weight: 700;
    padding: .26rem .45rem;
}

/* ── Agree checkbox ──────────────────────────────────────────── */
.ync-agree {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    cursor: pointer;
}
.ync-agree__box {
    position: relative;
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin-top: .1rem;
}
.ync-agree__check {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%; height: 100%;
    z-index: 2;
    margin: 0;
}
.ync-agree__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0e0e0e;
    border: 1px solid #333;
    border-radius: 5px;
    transition: background .15s, border-color .15s;
}
.ync-agree__check:checked ~ .ync-agree__box::before,
.ync-agree__box:has(.ync-agree__check:checked)::before {
    background: var(--bn-accent,#d42e12);
    border-color: var(--bn-accent,#d42e12);
}
.ync-agree__tick {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity .15s;
    pointer-events: none;
}
.ync-agree__check:checked ~ .ync-agree__tick { opacity: 1; }
.ync-agree__box:has(.ync-agree__check:checked) .ync-agree__tick { opacity: 1; }
.ync-agree__text { font-size: .88rem; color: #888; line-height: 1.6; }
.ync-link { color: var(--bn-accent,#d42e12); text-decoration: none; }
.ync-link:hover { text-decoration: underline; }

/* ── Submit button ───────────────────────────────────────────── */
.ync-form__footer { margin-top: .6rem; }
.ync-submit {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--bn-accent,#d42e12);
    color: #fff;
    border: none;
    border-radius: var(--bn-radius, 14px);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    cursor: pointer;
    transition: background .2s, transform .15s, opacity .2s;
}
.ync-submit:hover:not(:disabled) { background: #b8260f; transform: translateY(-2px); }
.ync-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Direct contact ──────────────────────────────────────────── */
.ync-direct {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: var(--bn-radius, 14px);
    padding: 2.5rem 2rem;
}
.ync-direct__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.ync-direct__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: .4rem 0 .7rem;
    letter-spacing: .03em;
}
.ync-direct__left p { color: #888; font-size: .92rem; line-height: 1.6; margin: 0; }
.ync-email-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #0e0e0e;
    border: 1px solid #272727;
    color: #e0e0e0;
    font-weight: 600;
    font-size: .9rem;
    padding: .85rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
}
.ync-email-btn:hover { border-color: var(--bn-accent,#d42e12); background: rgba(212,46,18,.07); color: #fff; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 650px) {
    .ync-form__row--two { grid-template-columns: 1fr; }
    .ync-form { padding: 1.5rem 1.1rem; }
    .ync-captcha { flex-direction: column; align-items: flex-start; }
    .ync-direct__inner { flex-direction: column; }
    .ync-hero__inner { padding: 5rem 1.2rem 4rem; }
    .ync-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .ync-cards { grid-template-columns: 1fr; }
}

.error-block__search .search-field {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--bn-border);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.error-block__search .search-field:focus {
    border-color: var(--bn-accent);
}

.error-block__search .search-submit {
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    border: none;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.error-block__search .search-submit:hover {
    opacity: 0.85;
}

.error-block__cta {
    display: inline-flex;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 2px solid var(--bn-brand);
    background: transparent;
    color: var(--bn-brand);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s ease;
}

.error-block__cta:hover {
    background: var(--bn-brand);
    color: #fff;
    text-decoration: none;
}

.error-recent {
    padding: 1rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
}

/* =========================================
   STREAM / INDEX
   ========================================= */

.stream-main {
    display: grid;
    gap: 1.35rem;
}

.stream-list {
    display: grid;
    gap: 0.85rem;
}

.stream-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    align-items: start;
    transition: all 0.3s ease;
}

.stream-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.stream-card__image,
.stream-card__fallback {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #3a3a3a, #5a5a5a);
    min-height: 120px;
}

.stream-card__image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.stream-card__content {
    display: grid;
    gap: 0.4rem;
}

.stream-card__title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.stream-card__title a {
    color: #161616;
    transition: color 0.2s ease;
}

.stream-card__title a:hover {
    color: var(--bn-accent);
    text-decoration: none;
}

.stream-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.93rem;
    color: #505050;
    line-height: 1.4;
}

/* =========================================
   COMMENTS
   ========================================= */

.comments-area {
    padding: 1.5rem;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    margin-top: 1rem;
}

.ync-comments-area {
    padding: 1.5rem;
}

.comments-area__title {
    margin-bottom: 1rem;
}

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

.comment-list .comment,
.comment-list .pingback {
    padding: 0.9rem 0;
    border-top: 1px solid var(--bn-border);
}

.comment-list .comment:first-child {
    border-top: none;
    padding-top: 0;
}

.comment-list .comment-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.comment-list .comment-author img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.comment-list .comment-meta {
    font-size: 0.82rem;
    color: var(--bn-muted);
}

.comment-list .comment-content {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #282828;
    margin-left: 2.6rem;
}

.comment-form-inner {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.comment-form-inner p {
    margin: 0;
}

.comment-form-inner label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bn-muted);
    margin-bottom: 0.35rem;
}

.comment-form-inner input[type="text"],
.comment-form-inner input[type="email"],
.comment-form-inner input[type="url"],
.comment-form-inner textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--bn-border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    background: #fafafa;
}

.comment-form-inner input:focus,
.comment-form-inner textarea:focus {
    border-color: var(--bn-accent);
    background: #fff;
}

.comment-form-inner textarea {
    resize: vertical;
    min-height: 130px;
}

.comment-submit-btn {
    display: inline-flex;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.comment-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* =========================================
   ABOUT PAGE
   ========================================= */

/* ── Wrap ────────────────────────────────────────────────────────────── */
.yn-about-wrap {
    background: #0e0e0e;
    color: #e0e0e0;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.yn-about-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 60% 40%, #1a0a05 0%, #0e0e0e 70%);
}

/* Subtle grain texture */
.yn-about-hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .5;
}

.yn-about-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 3rem clamp(1.5rem, 6vw, 5rem) 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.yn-about-hero__kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--bn-accent, #d42e12);
    margin: 0 0 1rem;
}

.yn-about-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: .9;
    letter-spacing: .04em;
    color: #fff;
    margin: 0 0 1rem;
    text-shadow: 0 0 80px rgba(212,46,18,.25);
}

.yn-about-hero__tagline {
    font-size: .95rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bn-accent-alt, #f3bf36);
    margin: 0 0 1.8rem;
}

.yn-about-hero__lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #aaa;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.yn-about-hero__scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.15));
}

/* ── Sections shared ─────────────────────────────────────────────────── */
.yn-about-main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 6vw, 5rem) 6rem;
}

.yn-about-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.yn-about-section__label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--bn-accent, #d42e12);
    margin-bottom: 1.8rem;
}

/* ── Mission ─────────────────────────────────────────────────────────── */
.yn-about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.yn-about-mission__statement h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: .04em;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.yn-about-mission__body p {
    color: #999;
    line-height: 1.8;
    margin: 0 0 1rem;
    font-size: 1rem;
}

.yn-about-mission__body p:last-child {
    margin-bottom: 0;
}

/* ── Pillars ─────────────────────────────────────────────────────────── */
.yn-about-pillars__heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: .05em;
    color: #fff;
    margin: 0 0 2.5rem;
}

.yn-about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.yn-about-pillar {
    background: #141414;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    transition: border-color .2s, transform .2s, background .2s;
}

.yn-about-pillar:hover {
    border-color: var(--bn-accent, #d42e12);
    background: #1a0e0b;
    transform: translateY(-3px);
}

.yn-about-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(212,46,18,.12);
    color: var(--bn-accent, #d42e12);
    margin-bottom: 1rem;
}

.yn-about-pillar h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .08em;
    color: #fff;
    margin: 0 0 .5rem;
}

.yn-about-pillar p {
    color: #888;
    font-size: .87rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Values strip ────────────────────────────────────────────────────── */
.yn-about-values {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #111;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    margin: 3rem 0 0;
    overflow: hidden;
}

.yn-about-value {
    flex: 1;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.yn-about-value__divider {
    width: 1px;
    background: rgba(255,255,255,.07);
    flex-shrink: 0;
}

.yn-about-value__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(212,46,18,.25);
    letter-spacing: .06em;
}

.yn-about-value strong {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.yn-about-value p {
    font-size: .85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA block ───────────────────────────────────────────────────────── */
.yn-about-cta {
    border-bottom: none !important;
}

.yn-about-cta__inner {
    background: radial-gradient(ellipse at 30% 50%, #200e08 0%, #111 70%);
    border: 1px solid rgba(212,46,18,.2);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
}

.yn-about-cta__inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: .04em;
    color: #fff;
    margin: 0 0 .8rem;
}

.yn-about-cta__inner > p {
    color: #999;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.yn-about-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.yn-about-cta__btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .1em;
    padding: .75rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s, background .2s;
}

.yn-about-cta__btn--primary {
    background: var(--bn-accent, #d42e12);
    color: #fff;
    box-shadow: 0 4px 18px rgba(212,46,18,.35);
}

.yn-about-cta__btn--primary:hover {
    background: #b82510;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,46,18,.5);
}

.yn-about-cta__btn--secondary {
    background: transparent;
    color: #ccc;
    border: 1.5px solid rgba(255,255,255,.15);
}

.yn-about-cta__btn--secondary:hover {
    border-color: rgba(255,255,255,.4);
    color: #fff;
    transform: translateY(-2px);
}

.yn-about-cta__email {
    font-size: .82rem;
    color: #555;
    margin: 0;
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .yn-about-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .yn-about-hero {
        min-height: 80vh;
    }

    .yn-about-mission__grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .yn-about-pillars__grid {
        grid-template-columns: 1fr;
    }

    .yn-about-values {
        flex-direction: column;
    }

    .yn-about-value__divider {
        width: 100%;
        height: 1px;
    }

    .yn-about-cta__inner {
        padding: 2.2rem 1.4rem;
    }

    .yn-about-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yn-about-cta__btn {
        justify-content: center;
    }
}

/* -- Modern Blogs Page Styles ---------------------------------- */

.blogs-page-main {
    display: grid;
    gap: 2rem;
}

.blogs-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--bn-accent) 0%, var(--bn-accent-alt) 100%);
    color: #fff;
    border-radius: var(--bn-radius);
    position: relative;
    overflow: hidden;
}

.blogs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}

.blogs-filters {
    padding: 1rem;
    background: #fff;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    box-shadow: var(--bn-shadow);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-tag {
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 2px solid var(--bn-border);
    background: #f8f8f8;
    color: var(--bn-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
    border-color: var(--bn-accent);
    background: var(--bn-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 46, 18, 0.3);
}

.blogs-grid {
    min-height: 400px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: var(--bn-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.blog-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.blog-card--featured .card-image {
    height: 400px;
}

.blog-card--featured .card-title {
    font-size: 1.8rem;
}

.blog-card--large .card-image {
    height: 250px;
}

.blog-card--large .card-title {
    font-size: 1.3rem;
}

.blog-card--medium .card-image {
    height: 200px;
}

.blog-card--medium .card-title {
    font-size: 1.1rem;
}

.card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--bn-accent);
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--bn-muted);
    margin-bottom: 0.5rem;
}

.card-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--bn-text);
    margin-bottom: 1rem;
}

.card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bn-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.card-read-more:hover {
    color: var(--bn-brand);
    transform: translateX(4px);
}

.card-read-more::after {
    content: '?';
    transition: transform 0.3s ease;
}

.card-read-more:hover::after {
    transform: translateX(4px);
}

.load-more-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bn-accent);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--bn-brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 46, 18, 0.3);
}

.load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sidebar Styles */
.blogs-sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--bn-radius);
    padding: 1.5rem;
    box-shadow: var(--bn-shadow);
    border: 1px solid var(--bn-border);
}

.widget-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--bn-brand);
}

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

.trending-item {
    margin-bottom: 0.8rem;
}

.trending-item a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--bn-text);
    transition: color 0.3s ease;
}

.trending-item a:hover {
    color: var(--bn-accent);
}

.trending-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--bn-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.trending-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--bn-accent);
    color: #fff;
    border: none;
    border-radius: var(--bn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--bn-brand);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bn-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bn-brand);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blogs-hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .blog-card--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .category-filter {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }
}

/* -- Music Page Styles ---------------------------------- */

.music-page-main {
    display: grid;
    gap: 2rem;
}

.featured-playlist {
    background: linear-gradient(135deg, var(--bn-accent) 0%, #2a2a2a 100%);
    color: #fff;
    padding: 2rem;
    border-radius: var(--bn-radius);
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin: 0 0 1.5rem;
    color: var(--bn-brand);
}

.playlist-container {
    background: rgba(255,255,255,0.1);
    border-radius: var(--bn-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.playlist-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.track-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.track-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.play-btn {
    background: var(--bn-accent-alt);
    color: #111;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(243, 191, 54, 0.4);
}

.music-card .image-placeholder {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    font-size: 2rem;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .play-overlay {
    opacity: 1;
}

.mini-play-btn {
    background: rgba(255,255,255,0.9);
    color: #111;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-play-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

/* -- Travel Page Styles ---------------------------------- */

.travel-page-main {
    display: grid;
    gap: 2rem;
}

.featured-destinations {
    margin-bottom: 2rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: #fff;
    border-radius: var(--bn-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-4px);
}

.destination-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    margin: 0 0 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
}

.destination-content p {
    margin: 0 0 1rem;
    color: var(--bn-muted);
}

.destination-link {
    color: var(--bn-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.destination-link:hover {
    color: var(--bn-brand);
}

.travel-card .image-placeholder {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    color: #fff;
    font-size: 2rem;
}

/* -- News Page Styles ---------------------------------- */

.news-page-main {
    display: grid;
    gap: 2rem;
}

.breaking-news-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 2rem;
    border-radius: var(--bn-radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.breaking-news-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breaking-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.breaking-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breaking-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.top-stories {
    margin-bottom: 2rem;
}

.top-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.top-story-card {
    display: flex;
    background: #fff;
    border-radius: var(--bn-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.top-story-card:hover {
    transform: translateY(-4px);
}

.top-story-image {
    flex-shrink: 0;
    width: 120px;
}

.top-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-story-content {
    padding: 1rem;
    flex: 1;
}

.top-story-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.top-story-content h3 a {
    color: var(--bn-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-story-content h3 a:hover {
    color: var(--bn-accent);
}

.top-story-content p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--bn-muted);
    line-height: 1.4;
}

.story-date {
    font-size: 0.8rem;
    color: var(--bn-muted);
}

.news-card .image-placeholder {
    background: linear-gradient(45deg, #fd79a8, #e84393);
    color: #fff;
    font-size: 2rem;
}

/* -- Responsive Adjustments ---------------------------------- */

@media (max-width: 768px) {
    .playlist-track {
        flex-direction: column;
        text-align: center;
    }

    .destinations-grid,
    .top-stories-grid {
        grid-template-columns: 1fr;
    }

    .top-story-card {
        flex-direction: column;
    }

    .top-story-image {
        width: 100%;
        height: 150px;
    }

    .breaking-title {
        font-size: 2rem;
    }
}
