/*
Theme Name: Inspira TV
Theme URI: https://inspira.tv
Author: Inspira TV
Author URI: https://inspira.tv
Description: WordPress theme untuk portal berita TV Inspira - Bandung
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inspira-tv
Tags: news, magazine, tv, responsive
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #e62020;
    --red-dark:  #c01818;
    --navy:      #0d1b2a;
    --navy-mid:  #1a2d42;
    --white:     #ffffff;
    --gray-100:  #f5f6f7;
    --gray-200:  #e8eaed;
    --gray-400:  #9aa0a8;
    --gray-700:  #3c4043;
    --text:      #1f2937;
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --radius:    4px;
    --shadow:    0 2px 8px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--gray-100); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.breaking-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
    position: relative;
    z-index: 200;
}
.breaking-bar__label {
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.breaking-bar__label::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--red-dark);
}
.breaking-bar__ticker {
    flex: 1;
    overflow: hidden;
    padding-left: 16px;
}
.breaking-bar__ticker-inner {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}
.breaking-bar__ticker-inner a { color: #fff; opacity: .9; }
.breaking-bar__ticker-inner a:hover { opacity: 1; color: #ffd; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* =============================================
   HEADER / NAVBAR  — dark style (image 2)
   ============================================= */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* --- LOGO --- */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.logo-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}
.logo-wordmark {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -.03em;
    line-height: 1;
}
.logo-icon { display: flex; align-items: center; }
/* old fallback .logo-text kept for compat */
.logo-text { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.logo-text span { color: var(--red); }

/* --- PRIMARY NAV --- */
.primary-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    height: 68px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(255,255,255,.88);
    white-space: nowrap;
    transition: color .18s, background .18s;
    text-transform: uppercase;
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
    color: #fff;
    background: rgba(255,255,255,.07);
}
.primary-nav > li > a .arrow {
    font-size: 9px;
    opacity: .55;
    transition: transform .2s;
}
.primary-nav > li:hover > a .arrow { transform: rotate(180deg); opacity: .9; }

/* --- DROPDOWN --- */
.primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--navy-mid);
    min-width: 200px;
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 300;
}
.primary-nav > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .15s, color .15s, padding-left .15s;
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    padding-left: 26px;
}

/* --- HEADER RIGHT --- */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Search */
.header-search { display: flex; align-items: center; }
.header-search form { display: flex; }
.header-search input {
    border: 1.5px solid rgba(255,255,255,.18);
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    width: 180px;
    color: #fff;
    background: rgba(255,255,255,.1);
    transition: border-color .2s, background .2s;
}
.header-search input::placeholder { color: rgba(255,255,255,.45); }
.header-search input:focus {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.4);
}
.header-search button {
    border: 1.5px solid rgba(255,255,255,.18);
    border-left: none;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    padding: 8px 14px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background .2s;
}
.header-search button:hover { background: rgba(255,255,255,.2); color: #fff; }

/* LIVE TV Button — purple like original */
.btn-live-tv {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #7c3aed;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    text-decoration: none;
}
.btn-live-tv:hover { background: #6d28d9; transform: translateY(-1px); color: #fff !important; }
.btn-live-tv .dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Keep old .btn-streaming for footer/sidebar compat */
.btn-streaming {
    background: var(--red);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    white-space: nowrap;
    text-decoration: none;
}
.btn-streaming:hover { background: var(--red-dark); color: #fff !important; }
.btn-streaming .dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s; }

/* =============================================
   HERO SECTION (Feature + Side Articles)
   ============================================= */
.hero-section { max-width: 1200px; margin: 24px auto 0; padding: 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }

.hero-main { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-main a { display: block; }
.hero-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-main__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    padding: 32px 24px 20px;
    color: #fff;
}
.hero-main__cat {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.hero-main__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-main__meta { margin-top: 10px; font-size: 12.5px; opacity: .75; }

.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-side-card { display: flex; gap: 12px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.hero-side-card:hover { transform: translateY(-2px); }
.hero-side-card img { width: 110px; height: 78px; object-fit: cover; flex-shrink: 0; }
.hero-side-card__body { padding: 10px 12px 10px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.hero-side-card__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.hero-side-card__title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--navy); }
.hero-side-card__title:hover { color: var(--red); }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    margin-top: 32px;
}
.section-label__text {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.section-label::before {
    content: '';
    display: block;
    width: 4px;
    height: 22px;
    background: var(--red);
    border-radius: 2px;
}
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* =============================================
   MAIN CONTENT LAYOUT
   ============================================= */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 48px;
}
.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* =============================================
   NEWS GRID
   ============================================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.news-card__thumb { overflow: hidden; }
.news-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s; }
.news-card:hover .news-card__thumb img { transform: scale(1.04); }
.news-card__body { padding: 14px 16px 16px; }
.news-card__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; }
.news-card__title { font-size: 14px; font-weight: 700; line-height: 1.45; color: var(--navy); margin-bottom: 8px; }
.news-card__title a:hover { color: var(--red); }
.news-card__excerpt { font-size: 12.5px; color: var(--gray-400); line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card__meta { font-size: 11.5px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.news-card__meta .author { font-weight: 600; color: var(--navy); }
.news-card__meta .sep { opacity: .4; }

/* News List (berita terbaru) */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list-item { display: flex; gap: 14px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.news-list-item:hover { transform: translateX(3px); }
.news-list-item__thumb { flex-shrink: 0; }
.news-list-item__thumb img { width: 130px; height: 88px; object-fit: cover; }
.news-list-item__body { padding: 12px 14px 12px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.news-list-item__cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.news-list-item__title { font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--navy); }
.news-list-item__title a:hover { color: var(--red); }
.news-list-item__meta { font-size: 11.5px; color: var(--gray-400); }

/* Load More */
.btn-loadmore {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    color: var(--red);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}
.btn-loadmore:hover { background: var(--red); color: #fff; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.widget-header {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-left: 4px solid var(--red);
}
.widget-body { padding: 16px; }

/* Popular Posts */
.popular-posts { display: flex; flex-direction: column; gap: 14px; }
.popular-post-item { display: flex; gap: 12px; align-items: flex-start; }
.popular-post-item__num {
    width: 26px; height: 26px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.popular-post-item:first-child .popular-post-item__num { background: var(--navy); }
.popular-post-item__title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--navy); }
.popular-post-item__title a:hover { color: var(--red); }
.popular-post-item__meta { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* Categories Widget */
.cat-list { display: flex; flex-direction: column; }
.cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13.5px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    transition: color .15s;
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: var(--red); }
.cat-list li a .count {
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Tags Widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-700);
    transition: all .15s;
}
.tag-cloud a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Streaming Widget */
.streaming-widget { text-align: center; padding: 20px; }
.streaming-widget__logo { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -.02em; margin-bottom: 6px; }
.streaming-widget__logo span { color: var(--red); }
.streaming-widget__desc { font-size: 12.5px; color: var(--gray-400); margin-bottom: 14px; }
.streaming-widget .btn-streaming { justify-content: center; width: 100%; font-size: 13px; }

/* =============================================
   PROGRAM SECTION
   ============================================= */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.program-card:hover { transform: translateY(-3px); }
.program-card__thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.program-card__body { padding: 12px; }
.program-card__title { font-size: 13.5px; font-weight: 700; line-height: 1.4; color: var(--navy); }
.program-card__title a:hover { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 40px 20px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo-text { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: background .2s;
}
.footer-socials a:hover { background: var(--red); }

.footer-widget h4 { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; border-left: 3px solid var(--red); padding-left: 10px; }
.footer-widget ul { display: flex; flex-direction: column; gap: 8px; }
.footer-widget ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-widget ul li a:hover { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }

/* =============================================
   SINGLE POST
   ============================================= */
.single-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.single-cat { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
.single-title { font-size: 28px; font-weight: 900; line-height: 1.3; color: var(--navy); margin-bottom: 12px; }
.single-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--gray-400); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.single-meta a { font-weight: 600; color: var(--navy); }
.single-meta .sep { opacity: .4; }
.entry-content { font-size: 15.5px; line-height: 1.8; color: var(--text); }
.entry-content p { margin-bottom: 18px; }
.entry-content h2 { font-size: 20px; font-weight: 800; margin: 28px 0 12px; color: var(--navy); }
.entry-content h3 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; color: var(--navy); }
.entry-content img { border-radius: var(--radius); margin: 20px 0; }
.entry-content blockquote { border-left: 4px solid var(--red); padding-left: 18px; color: var(--gray-700); font-style: italic; margin: 20px 0; }

/* Post Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.post-tags span { font-weight: 700; font-size: 13px; }
.post-tags a { padding: 4px 12px; border: 1px solid var(--gray-200); border-radius: 20px; font-size: 12.5px; color: var(--gray-700); transition: all .15s; }
.post-tags a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Share Bar */
.share-bar { background: var(--gray-100); border-radius: var(--radius); padding: 16px; margin: 24px 0; display: flex; align-items: center; gap: 10px; }
.share-bar span { font-weight: 700; font-size: 13px; }
.share-btn { padding: 7px 16px; border-radius: var(--radius); font-size: 12.5px; font-weight: 600; color: #fff; cursor: pointer; border: none; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }
.share-btn.cp { background: var(--gray-700); }

/* =============================================
   PAGE: LIVE STREAMING
   ============================================= */
.live-page { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.live-page h1 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.live-page__desc { color: var(--gray-400); margin-bottom: 20px; }
.live-embed { background: #000; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; width: 100%; position: relative; }
.live-embed iframe { width: 100%; height: 100%; border: none; }
.live-embed__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; gap: 12px; }
.live-embed__placeholder .live-icon { font-size: 48px; }
.live-embed__placeholder p { opacity: .6; font-size: 14px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { display: grid; grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .content-sidebar { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .primary-nav, .header-search, .btn-live-tv { display: none; }
    .hamburger { display: flex; }
    .news-grid { grid-template-columns: 1fr; }
    .hero-side { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .sidebar { grid-template-columns: 1fr; }
    .single-title { font-size: 20px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero-main__title { font-size: 17px; }
    .program-grid { grid-template-columns: 1fr 1fr; }
    .breaking-bar { font-size: 12px; }
}

/* Mobile nav open */
.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    z-index: 99;
}
.primary-nav.is-open > li > a {
    height: auto;
    line-height: 1.4;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
}
.primary-nav.is-open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    box-shadow: none;
    background: rgba(0,0,0,.2);
}
.primary-nav.is-open .sub-menu li a {
    padding-left: 40px;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

/* =============================================
   UTILITY
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; clip: rect(0,0,0,0); width: 1px; height: 1px; overflow: hidden; }
