﻿/* =============================================
   TRUST TV - MAIN CSS
   ============================================= */

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: #050505;
    border-bottom: 1px solid #1a1a1a;
    padding: 0.4rem 0;
    font-size: 0.78rem;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-bar-date {
    color: #888;
}
.top-bar-nav {
    display: flex;
    gap: 1.25rem;
}
.top-bar-nav a {
    color: #aaa;
    transition: color 0.2s;
}
.top-bar-nav a:hover {
    color: #e63946;
}
.top-bar-signin {
    color: #e63946 !important;
    font-weight: 600;
}
.top-bar-signin:hover {
    color: #cc0000 !important;
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 0;
    min-height: 70px;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}
.site-branding .custom-logo {
    height: 50px;
    width: auto;
    display: block;
}
.site-name-link {
    display: block;
}
.site-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.site-name span {
    color: #e63946;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #333;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
    color: #e63946;
    background: rgba(230,57,70,0.06);
}
/* HOME menu item always red */
.nav-menu > li:first-child > a {
    color: #e63946;
    font-weight: 700;
}
/* SUBSCRIBE menu item — red button style */
.nav-menu > li.menu-item-subscribe > a,
.nav-menu > li > a[href*="subscribe"] {
    background: #e63946;
    color: #fff !important;
    border-radius: 4px;
    padding: 0.45rem 1rem;
}
.nav-menu > li.menu-item-subscribe > a:hover,
.nav-menu > li > a[href*="subscribe"]:hover {
    background: #cc0000;
    color: #fff !important;
}

/* Standard Dropdown */
.nav-menu li {
    position: relative;
}
.nav-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #e63946;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 100;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .sub-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #444;
    font-size: 0.85rem;
    transition: color 0.2s, background 0.2s;
}
.nav-menu .sub-menu li a:hover {
    color: #e63946;
    background: rgba(230,57,70,0.05);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.search-toggle {
    color: #555;
    font-size: 1rem;
    padding: 0.4rem;
    border-radius: 4px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}
.search-toggle:hover {
    color: #e63946;
}
.header-social {
    display: flex;
    gap: 0.5rem;
}
.header-social a {
    color: #888;
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.header-social a:hover {
    color: #fff;
    background: #e63946;
}

/* Header Subscribe Button */
.header-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e63946;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.header-subscribe-btn:hover {
    background: #cc0000;
    color: #fff;
    transform: translateY(-1px);
}
.header-subscribe-btn i {
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .header-subscribe-btn span { display: none; }
    .header-subscribe-btn { padding: 0.45rem 0.6rem; }
    
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Search Overlay */
.search-overlay {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0;
    display: none;
}
.search-overlay.active {
    display: block;
}
.search-overlay-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search-overlay .search-form {
    flex: 1;
}
.search-overlay .search-field {
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}
.search-overlay .search-field:focus {
    outline: none;
    border-color: #e63946;
}
.search-overlay .search-submit {
    background: #e63946;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.search-overlay .search-submit:hover {
    background: #cc0000;
}
.search-close {
    color: #555;
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    transition: color 0.2s;
}
.search-close:hover {
    color: #e63946;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-bg .container {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hero-content {
    max-width: 650px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e63946;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-watch-btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
    transition: all 0.2s;
}
.hero-watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230,57,70,0.5);
}

/* =============================================
   TRENDING TOPICS BAR
   ============================================= */
.trending {
    position: relative;
    margin: 14px 0 22px;
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    min-height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.trending strong {
    position: relative;
    z-index: 2;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 12px 0 18px rgba(255,255,255,0.92);
    white-space: nowrap;
}
.trending .topics {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    display: flex;
    gap: 18px;
    padding: 0 14px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
    transform: translateY(-50%);
    animation: ticker 26s linear infinite;
}
.trending .topics a {
    color: #687386;
    transition: color 0.2s;
}
.trending .topics a:hover,
.trending .topics a:focus {
    color: #e63946;
}
@keyframes ticker {
    from { transform: translate(100%, -50%); }
    to   { transform: translate(-100%, -50%); }
}


/* =============================================
   HOME SECTIONS - COMMON
   ============================================= */
.home-section {
    padding: 3rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e63946;
    margin-bottom: 0;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background: #e63946;
    border-radius: 2px;
}
.section-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.section-view-all:hover {
    color: #e63946;
}

/* =============================================
   POST CARDS GRID
   ============================================= */
.posts-grid {
    display: grid;
    gap: 1.25rem;
}
.posts-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.posts-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.posts-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Post Card */
.post-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.post-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.post-card-image-link {
    display: block;
    overflow: hidden;
}
.post-card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}
.post-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.post-card:hover .post-card-thumbnail {
    transform: scale(1.05);
}
.post-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #333;
    font-size: 2rem;
}
.post-card-category {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #e63946;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    z-index: 1;
}
.post-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.2s;
}
.post-card:hover .post-card-play {
    opacity: 1;
}
.post-card-play i {
    width: 44px;
    height: 44px;
    background: rgba(230,57,70,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.post-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex: 1;
}
.post-card-title a {
    color: #fff;
    transition: color 0.2s;
}
.post-card-title a:hover {
    color: #e63946;
}
.post-card-excerpt {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    color: #666;
    flex-wrap: wrap;
}
.post-card-meta i {
    margin-right: 0.2rem;
}
.post-category {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e63946;
    display: inline-block;
    margin-bottom: 0.3rem;
}
.post-category:hover {
    color: #cc0000;
}

/* =============================================
   SHOWS SECTION
   ============================================= */
.shows-section {
    background: #0d0d0d;
}
.shows-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.show-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.2s, box-shadow 0.2s;
}
.show-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.show-card-link {
    display: block;
    text-decoration: none;
}
.show-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}
.show-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.show-card:hover .show-card-image img {
    transform: scale(1.05);
}
.show-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #e63946;
    font-size: 2.5rem;
}
.show-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.show-card:hover .show-card-overlay {
    opacity: 1;
}
.show-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(230,57,70,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.show-card-info {
    padding: 0.75rem;
}
.show-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.show-card-excerpt {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
}

/* =============================================
   FEATURED + LATEST UPDATES
   ============================================= */
.featured-latest-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}
.featured-article {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}
.featured-article-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.featured-article:hover .featured-article-image img {
    transform: scale(1.03);
}
.featured-article-content {
    padding: 1.25rem;
}
.featured-article-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.featured-article-title a {
    color: #fff;
    transition: color 0.2s;
}
.featured-article-title a:hover {
    color: #e63946;
}
.featured-article-excerpt {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: #666;
}
.post-meta i {
    margin-right: 0.25rem;
}
.post-date, .post-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Latest Updates */
.latest-updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.latest-update-item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1e1e1e;
}
.latest-update-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.latest-update-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    overflow: hidden;
    border-radius: 4px;
}
.latest-update-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.latest-update-item:hover .latest-update-thumb img {
    transform: scale(1.05);
}
.latest-update-content {
    flex: 1;
    min-width: 0;
}
.latest-update-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}
.latest-update-title a {
    color: #ddd;
    transition: color 0.2s;
}
.latest-update-title a:hover {
    color: #e63946;
}

/* =============================================
   STAY UPDATED SECTION
   ============================================= */
.stay-updated-section {
    background: #0d0d0d;
}
.stay-updated-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.stay-updated-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.stay-updated-content p {
    color: #888;
    margin-bottom: 1.25rem;
}
.subscriber-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}
.subscriber-count i {
    color: #e63946;
    font-size: 1.5rem;
}
.subscriber-count strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}
.subscriber-count span {
    color: #888;
}
.social-follow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.stay-updated-social h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 1rem;
}
.social-follow-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.2s, transform 0.2s;
}
.social-follow-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: #fff;
}
.social-follow-btn.facebook { background: #1877f2; }
.social-follow-btn.twitter { background: #000; border: 1px solid #333; }
.social-follow-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-follow-btn.tiktok { background: #010101; border: 1px solid #333; }

/* =============================================
   VIDEOS SECTION
   ============================================= */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.video-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.video-card-link {
    display: block;
    text-decoration: none;
}
.video-card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}
.video-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.video-card:hover .video-card-thumbnail {
    transform: scale(1.05);
}
.video-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #333;
    font-size: 2rem;
}
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.video-card:hover .video-card-overlay {
    opacity: 1;
}
.video-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(230,57,70,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.video-duration {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.video-card-category {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #e63946;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    z-index: 1;
}
.video-card-content {
    padding: 0.75rem;
}
.video-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ddd;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}
.video-card:hover .video-card-title {
    color: #e63946;
}
.video-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    color: #666;
}

/* =============================================
   NEWS IN BRIEF + INTERVIEWS
   ============================================= */
.news-interviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.news-brief-list {
    display: flex;
    flex-direction: column;
}
.brief-item {
    border-bottom: 1px solid #1e1e1e;
}
.brief-item:last-child {
    border-bottom: none;
}
.brief-item-inner {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    align-items: flex-start;
}
.brief-item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}
.brief-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.brief-item:hover .brief-item-thumb img {
    transform: scale(1.05);
}
.brief-item-content {
    flex: 1;
    min-width: 0;
}
.brief-category {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e63946;
    display: inline-block;
    margin-bottom: 0.2rem;
}
.brief-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}
.brief-title a {
    color: #ccc;
    transition: color 0.2s;
}
.brief-title a:hover {
    color: #e63946;
}
.brief-date {
    font-size: 0.7rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Interviews */
.interviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.interview-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #1e1e1e;
}
.interview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.interview-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.interview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.interview-item:hover .interview-thumb img {
    transform: scale(1.05);
}
.interview-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.interview-item:hover .interview-play {
    opacity: 1;
}
.interview-play i {
    width: 32px;
    height: 32px;
    background: rgba(230,57,70,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}
.interview-content {
    flex: 1;
    min-width: 0;
}
.interview-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}
.interview-title a {
    color: #ddd;
    transition: color 0.2s;
}
.interview-title a:hover {
    color: #e63946;
}

/* =============================================
   APP DOWNLOAD SECTION
   ============================================= */
.app-download-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
}
.app-download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.app-download-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.app-download-text p {
    color: #888;
    margin-bottom: 1.5rem;
    max-width: 400px;
}
.app-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    transition: all 0.2s;
    min-width: 150px;
}
.app-store-btn:hover {
    background: #222;
    border-color: #e63946;
    color: #fff;
    transform: translateY(-2px);
}
.app-store-btn i {
    font-size: 1.75rem;
    color: #fff;
}
.app-store-btn span {
    display: flex;
    flex-direction: column;
}
.app-store-btn small {
    font-size: 0.65rem;
    color: #888;
    line-height: 1;
}
.app-store-btn strong {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}
.app-download-icon {
    font-size: 6rem;
    color: rgba(230,57,70,0.15);
    flex-shrink: 0;
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-post {
    width: 100%;
}
.breadcrumbs {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.breadcrumbs a {
    color: #888;
    transition: color 0.2s;
}
.breadcrumbs a:hover {
    color: #e63946;
}
.breadcrumbs .sep {
    color: #444;
}
.entry-header {
    margin-bottom: 2rem;
}
.entry-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: #666;
}
.entry-date, .entry-read-time, .entry-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.entry-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 1rem;
}
.entry-subtitle {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    border-left: 3px solid #e63946;
    padding-left: 1rem;
}
.entry-author-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.author-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ddd;
}
.author-name a {
    color: #ddd;
    transition: color 0.2s;
}
.author-name a:hover {
    color: #e63946;
}
.author-role {
    font-size: 0.72rem;
    color: #666;
}
.entry-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.share-label {
    font-size: 0.78rem;
    color: #666;
    font-weight: 600;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.85rem;
    color: #fff;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}
.share-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #fff;
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0a66c2; }
.share-copy { background: #444; }
.entry-share-bottom .share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    font-size: 0.9rem;
}
.share-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.share-tiktok { background: #000; }
.entry-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}
.entry-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}
.featured-image-caption {
    font-size: 0.78rem;
    color: #666;
    text-align: center;
    padding: 0.5rem;
    background: #111;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.entry-video {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: #07111f;
}
.video-error {
    padding: 2rem;
    text-align: center;
    background: #f5f5f5;
    border-radius: 8px;
}
.video-error a {
    color: #ec1c24;
    font-weight: 600;
}
.entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin: 1.5em 0 0.75em;
    line-height: 1.3;
}
.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.1rem; }
.entry-content p {
    margin-bottom: 1.25em;
}
.entry-content a {
    color: #e63946;
    text-decoration: underline;
}
.entry-content a:hover {
    color: #cc0000;
}
.entry-content blockquote {
    border-left: 4px solid #e63946;
    padding: 1rem 1.5rem;
    margin: 1.5em 0;
    background: #111;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #aaa;
    font-size: 1.05rem;
}
.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li {
    margin-bottom: 0.5em;
}
.entry-content img {
    border-radius: 6px;
    margin: 1em 0;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
}
.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid #2a2a2a;
    text-align: left;
}
.entry-content th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
}
.entry-content tr:nth-child(even) td {
    background: #111;
}
.entry-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}
.tags-label {
    font-size: 0.78rem;
    color: #666;
    font-weight: 600;
}
.tag-link {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    font-size: 0.75rem;
    color: #888;
    transition: all 0.2s;
}
.tag-link:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}
.entry-footer {
    margin-bottom: 2rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.25rem;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.author-box-avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.author-box-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.author-box-name a {
    color: #fff;
    transition: color 0.2s;
}
.author-box-name a:hover {
    color: #e63946;
}
.author-box-bio {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.author-box-link {
    font-size: 0.82rem;
    color: #e63946;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}
.author-box-link:hover {
    gap: 0.5rem;
    color: #e63946;
}

/* Related Posts */
.related-posts {
    margin-bottom: 2rem;
}
.related-posts .section-label {
    margin-bottom: 1.25rem;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
.nav-previous,
.nav-next {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 1rem;
    transition: border-color 0.2s;
}
.nav-previous:hover,
.nav-next:hover {
    border-color: #e63946;
}
.nav-next {
    text-align: right;
}
.nav-direction {
    display: block;
    font-size: 0.72rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}
.nav-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ddd;
    line-height: 1.4;
    transition: color 0.2s;
}
.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: #e63946;
}

/* =============================================
   ARCHIVE PAGE
   ============================================= */
.archive-header {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 2rem;
}
.archive-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.archive-description {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================
   SEARCH PAGE
   ============================================= */
.search-header {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 2rem;
}
.search-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.search-query {
    color: #e63946;
}
.search-form-wrapper {
    max-width: 500px;
}
.search-count {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 1.5rem;
}
.search-suggestions {
    margin-top: 2rem;
}
.search-suggestions h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #aaa;
    transition: all 0.2s;
}
.category-link:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}
.cat-count {
    font-size: 0.72rem;
    color: #666;
}

/* =============================================
   404 PAGE
   ============================================= */
.error-404-main {
    padding: 4rem 0;
}
.error-404-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.error-404-number {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: #e63946;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}
.error-404-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.error-404-message {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.error-404-actions {
    margin-bottom: 2rem;
}
.error-404-search {
    margin-bottom: 3rem;
}
.error-404-search h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.error-404-search .search-form {
    max-width: 400px;
    margin: 0 auto;
}
.error-404-latest {
    text-align: left;
}
.error-404-latest .section-label {
    margin-bottom: 1.25rem;
}

/* =============================================
   SIDEBAR
   ============================================= */
.content-area-wrapper {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
.content-area-wrapper.has-sidebar {
    grid-template-columns: 2fr 300px;
}
.content-area-wrapper.no-sidebar {
    grid-template-columns: 1fr;
}
.sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-post-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #1e1e1e;
    align-items: flex-start;
}
.sidebar-post-item:last-child {
    border-bottom: none;
}
.sidebar-post-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e63946;
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
}
.sidebar-post-content {
    flex: 1;
    min-width: 0;
}
.sidebar-post-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}
.sidebar-post-title:hover {
    color: #e63946;
}
.sidebar-post-date {
    font-size: 0.7rem;
    color: #666;
}
.sidebar-categories {
    display: flex;
    flex-direction: column;
}
.sidebar-categories li {
    border-bottom: 1px solid #1e1e1e;
}
.sidebar-categories li:last-child {
    border-bottom: none;
}
.sidebar-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    color: #aaa;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.sidebar-categories li a:hover {
    color: #e63946;
}
.sidebar-categories .cat-count {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    font-size: 0.7rem;
    color: #666;
}
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.sidebar-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    font-size: 0.75rem;
    color: #888;
    transition: all 0.2s;
}
.sidebar-tag:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}
.sidebar-youtube-cta {
    background: linear-gradient(135deg, #1a0a0a, #0d0d0d);
    border: 1px solid #2a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}
.sidebar-youtube-cta i {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 0.75rem;
    display: block;
}
.sidebar-youtube-cta h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.sidebar-youtube-cta p {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 1rem;
}
.sidebar-youtube-cta .btn {
    width: 100%;
    justify-content: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #111;
    border-top: 2px solid #e63946;
    margin-top: 0;
}
.footer-main {
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.footer-brand .footer-logo {
    margin-bottom: 1rem;
}
.footer-brand .footer-logo .custom-logo {
    height: 45px;
    width: auto;
}
.footer-brand .site-name {
    font-size: 1.25rem;
    color: #fff;
}
.footer-description {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 300px;
}
.footer-col-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav-list li a {
    font-size: 0.83rem;
    color: #999;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.5;
}
.footer-nav-list li a:hover {
    color: #e63946;
}
.footer-nav-list li a::before {
    content: '›';
    color: #e63946;
    font-size: 1rem;
    line-height: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid #1e1e1e;
    padding: 1rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.copyright {
    font-size: 0.78rem;
    color: #666;
}
.copyright a {
    color: #888;
    transition: color 0.2s;
}
.copyright a:hover {
    color: #e63946;
}
.footer-credits {
    font-size: 0.75rem;
    color: #555;
}
.footer-credits a {
    color: #666;
    transition: color 0.2s;
}
.footer-credits a:hover {
    color: #e63946;
}

/* =============================================
   COMMENTS SECTION
   ============================================= */
.comments-section {
    margin-top: 2rem;
}
.comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e1e1e;
}
.comment-list {
    margin-bottom: 2rem;
}
.comment {
    padding: 1.25rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.comment:last-child {
    border-bottom: none;
}
.comment .children {
    padding-left: 2rem;
    border-left: 2px solid #1e1e1e;
    margin-top: 1rem;
}
.comment-body {
    display: flex;
    gap: 1rem;
}
.comment-author .avatar {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.comment-meta {
    margin-bottom: 0.5rem;
}
.comment-author .fn {
    font-weight: 700;
    color: #ddd;
    font-size: 0.9rem;
}
.comment-metadata {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.2rem;
}
.comment-metadata a {
    color: #666;
}
.comment-content p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.comment-reply-link {
    font-size: 0.78rem;
    color: #e63946;
    font-weight: 600;
    transition: color 0.2s;
}
.comment-reply-link:hover {
    color: #cc0000;
}
.comment-respond {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}
.comment-reply-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.comment-notes {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 1rem;
}
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    margin-bottom: 1rem;
}
.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: #e63946;
}
.comment-form-cookies-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #666;
    cursor: pointer;
    margin-bottom: 1rem;
}
.form-submit .submit {
    background: #e63946;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.form-submit .submit:hover {
    background: #cc0000;
}

/* =============================================
   NO RESULTS
   ============================================= */
.no-results {
    padding: 3rem;
    text-align: center;
    background: #111;
    border-radius: 8px;
    border: 1px solid #1e1e1e;
}
.no-results .page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.no-results .page-content p {
    color: #888;
    margin-bottom: 1.5rem;
}
.no-posts {
    color: #666;
    font-size: 0.9rem;
    padding: 2rem;
    text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .posts-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .shows-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .videos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .header-social {
        display: none;
    }
    .featured-latest-grid {
        grid-template-columns: 1fr;
    }
    .stay-updated-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .content-area-wrapper.has-sidebar {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .main-navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 999;
        overflow-y: auto;
        padding: 1rem;
    }
    .main-navigation.active {
        display: block;
    }
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-menu > li > a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
    }
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: none;
        background: #f8f8f8;
        padding: 0;
        display: none;
    }
    .nav-menu li.open > .sub-menu {
        display: block;
    }
    /* Mega menu mobile fallback */
    .nav-menu li.mega-menu .mega-menu-wrap {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }
    .nav-menu li.mega-menu.open > .mega-menu-wrap {
        display: block;
    }
    .mega-menu-grid {
        flex-direction: column;
    }
    .mega-menu-cats {
        flex: none;
    }
    .block-mega-child-cats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .mega-menu-posts {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-toggle {
        display: flex;
    }
    .posts-grid-4,
    .posts-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-interviews-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }
    .hero-bg {
        min-height: 380px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .footer-yt-inner {
        flex-direction: column;
        text-align: center;
    }
    .app-download-inner {
        flex-direction: column;
        text-align: center;
    }
    .app-download-icon {
        display: none;
    }
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .posts-grid-4,
    .posts-grid-3,
    .posts-grid-2 {
        grid-template-columns: 1fr;
    }
    .shows-grid {
        grid-template-columns: 1fr 1fr;
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .social-follow-grid {
        grid-template-columns: 1fr;
    }
    .hero-bg {
        min-height: 300px;
    }
    .hero-watch-btn {
        width: 100%;
        justify-content: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .author-box {
        flex-direction: column;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .trending,
    .related-posts,
    .entry-share,
    .post-navigation,
    .comments-section {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
    .entry-content {
        color: #000;
    }
}

/* =============================================
   MEGA MENU
   ============================================= */
.nav-menu > li.mega-menu {
    position: static;
}
.mega-menu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #e63946;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 0 0 6px 6px;
    max-width: 100%;
}
.nav-menu > li.mega-menu:hover > .mega-menu-wrap,
.nav-menu > li.mega-menu:focus-within > .mega-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-grid {
    display: flex;
    gap: 1.5rem;
}
.mega-menu-cats {
    flex: 0 0 160px;
}
.block-mega-child-cats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.block-mega-child-cats a {
    display: block;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    color: #555;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}
.block-mega-child-cats a.cur-sub-cat,
.block-mega-child-cats a:hover {
    color: #e63946;
    background: rgba(230,57,70,0.06);
}
.mega-menu-posts {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.mega-menu-post {
    text-align: center;
}
.mega-menu-thumb {
    display: block;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.mega-menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.mega-menu-post:hover .mega-menu-thumb img {
    transform: scale(1.05);
}
.mega-menu-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    color: #ccc;
    font-size: 2rem;
}
.mega-menu-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}
.mega-menu-title a {
    color: #222;
    transition: color 0.2s;
}
.mega-menu-title a:hover {
    color: #e63946;
}

/* =============================================
   DON'T MISS SECTION
   ============================================= */
.dont-miss {
    background: #00479F;
    padding: 2rem 1rem;
    margin-top: 0;
}
.dont-miss-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}
.dont-miss-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f8c900;
    color: #000;
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 2px 2px 0 0;
    margin-bottom: -3px;
    position: relative;
}
.dont-miss-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-left: auto;
    padding: 0.2rem 0;
}
.dont-miss-cat {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
}
.dont-miss-cat:hover,
.dont-miss-cat.current {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.dont-miss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    min-height: 200px;
    transition: opacity 0.3s;
}
.dont-miss-grid.dont-miss-loading {
    opacity: 0.4;
    pointer-events: none;
}
.dont-miss-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s;
}
.dont-miss-card:hover {
    transform: translateY(-3px);
}
.dont-miss-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.dont-miss-thumb::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    color: #fff;
    background: rgba(0,0,0,0.55);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
    text-indent: 3px;
}
.dont-miss-card:hover .dont-miss-thumb::after {
    background: rgba(248,201,0,0.85);
    transform: translate(-50%, -50%) scale(1.08);
}
.dont-miss-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.dont-miss-card:hover .dont-miss-thumb img {
    transform: scale(1.05);
}
.dont-miss-body {
    padding: 1rem 1rem 1.25rem;
}
.dont-miss-body .post-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #f8c900;
    color: #000;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}
.dont-miss-headline {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.dont-miss-headline a {
    color: #fff;
    transition: color 0.2s;
}
.dont-miss-headline a:hover {
    color: #f8c900;
}
.dont-miss-meta {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.dont-miss-author {
    color: #f8c900;
}
@media (max-width: 768px) {
    .dont-miss {
        padding: 1.5rem 0;
    }
    .dont-miss-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .dont-miss-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   MOST WATCH
   ============================================= */
.most-watch {
    background: #f8c900;
    padding: 1.5rem 1rem;
}
.most-watch-header {
    margin-bottom: 1rem;
}
.most-watch-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-block;
    background: #00479F;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin: 0;
}
.most-watch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.most-watch-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.most-watch-item:hover {
    background: rgba(0,0,0,0.06);
}
.most-watch-num {
    flex-shrink: 0;
    width: 28px;
    font-size: 1.1rem;
    font-weight: 900;
    color: #00479F;
    line-height: 1;
    text-align: right;
}
.most-watch-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    display: block;
    position: relative;
}
.most-watch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.most-watch-thumb.play-icon::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    color: #fff;
    background: rgba(0,0,0,0.55);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}
.most-watch-text {
    flex: 1;
    min-width: 0;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    padding-top: 2px;
    transition: color 0.2s;
}
.most-watch-item:hover .most-watch-text {
    color: #00479F;
}
@media (max-width: 768px) {
    .most-watch-grid {
        grid-template-columns: 1fr;
    }
    .most-watch-thumb {
        width: 80px;
        height: 54px;
    }
}

/* =============================================
   AD CONTAINERS
   ============================================= */
.trust-tv-ad {
    padding: 1rem 0;
    text-align: center;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.trust-tv-ad:first-child {
    border-top: none;
}
.trust-tv-ad-header {
    margin-top: 0;
}
.trust-tv-ad-sidebar {
    padding: 0.75rem;
    background: transparent;
    border: none;
}
.trust-tv-ad-below-content {
    margin: 2rem 0;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 4px;
}
.trust-tv-ad-footer {
    background: #f5f5f5;
}
.trust-tv-ad .container {
    max-width: 100%;
}
.trust-tv-ad iframe,
.trust-tv-ad ins,
.trust-tv-ad script {
    max-width: 100%;
}
@media (max-width: 768px) {
    .trust-tv-ad {
        padding: 0.75rem 0;
    }
}

/* =============================================
   SIGN IN / JOIN PAGE
   ============================================= */
.signin-wrapper {
    position: relative;
}
.signin-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    z-index: 2;
    transition: color 0.2s;
}
.signin-close:hover {
    color: #fff;
}
.forgot-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.forgot-row .signin-submit {
    flex: 1;
}
.forgot-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.forgot-link:hover {
    color: #e63946;
}
.back-row {
    text-align: center;
    margin-top: -0.5rem;
}
.back-link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.back-link:hover {
    color: #fff;
}
.signin-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signin-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}
.signin-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}
.signin-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}
.signin-tab {
    flex: 1;
    padding: 0.7rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}
.signin-tab.current {
    color: #fff;
    border-bottom: 3px solid #e63946;
    margin-bottom: -2px;
}
.signin-panel {
    display: block;
}
.signin-form p {
    margin: 0 0 1rem;
}
.signin-form label {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.signin-form input[type="text"],
.signin-form input[type="email"],
.signin-form input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.signin-form input:focus {
    border-color: #e63946;
}
.signin-form input::placeholder {
    color: rgba(255,255,255,0.35);
}
.signin-submit {
    width: 100%;
    padding: 0.75rem;
    background: #e63946;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.signin-submit:hover {
    background: #c1121f;
}
.signin-msg {
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: none;
}
.signin-msg.error {
    display: block;
    background: rgba(230,57,70,0.2);
    border: 1px solid rgba(230,57,70,0.4);
    color: #ffb3b3;
}
.signin-msg.success {
    display: block;
    background: rgba(46,204,113,0.2);
    border: 1px solid rgba(46,204,113,0.4);
    color: #b3ffd9;
}
.signin-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-style: italic;
}

/* Dashboard */
.signin-dashboard {
    padding: 1.5rem 0;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.dashboard-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}
.dashboard-signout {
    font-size: 0.85rem;
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
}
.dashboard-signout:hover {
    text-decoration: underline;
}
.dashboard-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
}
.filter-group {
    display: flex;
    gap: 0.5rem;
}
.df-select {
    padding: 0.45rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    background: #fff;
    font-family: inherit;
}
.filter-search input {
    padding: 0.45rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    min-width: 200px;
    font-family: inherit;
}
.filter-search input:focus {
    border-color: #e63946;
    outline: none;
}
.dashboard-activity-list {
    min-height: 200px;
}
.dashboard-empty {
    text-align: center;
    color: #999;
    padding: 3rem 0;
    font-size: 0.95rem;
}
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e63946;
    font-size: 0.85rem;
}
.activity-body {
    flex: 1;
    min-width: 0;
}
.activity-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.35;
}
.activity-title:hover {
    color: #e63946;
}
.activity-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.2rem;
}
.activity-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 0.7rem;
    color: #999;
}
.activity-pages {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.activity-pages .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #333;
    transition: background 0.2s, color 0.2s;
}
.activity-pages .page-numbers.current,
.activity-pages .page-numbers:hover {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
}
/* Eye Witness */
.eyewitness-btn {
    padding: 0.45rem 1rem;
    background: #e63946;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.eyewitness-btn:hover {
    background: #c1121f;
}
.eyewitness-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.eyewitness-modal {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.eyewitness-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.6rem;
    line-height: 1;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-family: inherit;
}
.eyewitness-close:hover {
    color: #333;
}
.eyewitness-modal h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.eyewitness-desc {
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.eyewitness-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.eyewitness-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.eyewitness-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.eyewitness-field input[type="text"],
.eyewitness-field input[type="file"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.92rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background: #fafafa;
}
.eyewitness-field input:focus {
    border-color: #e63946;
    outline: none;
    background: #fff;
}
.eyewitness-field input[type="file"] {
    padding: 0.6rem;
    font-size: 0.85rem;
    background: #f5f5f5;
    border-style: dashed;
    cursor: pointer;
}
.eyewitness-field input[type="file"]:hover {
    background: #eee;
    border-color: #bbb;
}
.eyewitness-form .signin-submit {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.25rem;
}
.eyewitness-msg {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    display: none;
    line-height: 1.4;
}
.eyewitness-msg.error {
    display: block;
    background: #fde8e8;
    border: 1px solid #f5a3a3;
    color: #c1121f;
}
.eyewitness-msg.success {
    display: block;
    background: #e8fde8;
    border: 1px solid #a3f5a3;
    color: #1a7d1a;
}
@media (max-width: 768px) {
    .signin-hero {
        min-height: 90vh;
    }
    .signin-wrapper {
        max-width: 94%;
        padding: 1.5rem;
    }
    .dashboard-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group {
        flex-direction: column;
    }
    .filter-search input {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .eyewitness-modal {
        padding: 1.5rem;
    }
}
