/*
Theme Name:  ACJ UNIBEN
Theme URI:   https://acjuniben.com
Author:      Association of Campus Journalists, UNIBEN Chapter
Author URI:  https://acjuniben.com
Description: Official theme for the Association of Campus Journalists, University of Benin Chapter. Bringing Truth to Light.
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: acjuniben
Tags:        news, journalism, editorial, custom-colors, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   ACJ UNIBEN — Global Stylesheet
   Bringing Truth to Light
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* === TOKENS === */
:root {
  --navy:       #0D1B3E;
  --navy-mid:   #1A2B6D;
  --gold:       #F5C518;
  --gold-dark:  #C9A00E;
  --white:      #FFFFFF;
  --off-white:  #F7F7F5;
  --grey-light: #EBEBEB;
  --grey-mid:   #9A9A9A;
  --grey-dark:  #3A3A3A;
  --ink:        #111111;
  --red-alert:  #CC2200;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-label:   'Bebas Neue', Impact, sans-serif;

  --max-width:    1280px;
  --gutter:       1.5rem;
  --nav-height:   60px;
  --ticker-height:36px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITY === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section-label { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-mid); }
.section-label.gold { color: var(--gold); }
.section-label.navy { color: var(--navy); }
.gold-bar { width: 40px; height: 3px; background: var(--gold); display: block; margin-bottom: 1rem; }
.gold-bar.wide { width: 80px; }
.tag { display: inline-block; font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 3px 8px; margin-bottom: 0.5rem; }
.tag.navy { background: var(--navy); color: var(--gold); }
.btn { display: inline-block; font-family: var(--font-label); letter-spacing: 0.1em; font-size: 0.85rem; padding: 0.7rem 1.6rem; transition: all 0.2s ease; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* === NEWS TICKER === */
.news-ticker { background: var(--navy); height: var(--ticker-height); overflow: hidden; display: flex; align-items: center; }
.ticker-label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.15em; background: var(--gold); color: var(--navy); padding: 0 1rem; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; z-index: 2; }
.ticker-track { display: flex; animation: ticker 50s linear infinite; white-space: nowrap; }
.ticker-track a { font-family: var(--font-body); font-size: 0.75rem; color: rgba(255,255,255,0.85); padding: 0 2rem; text-decoration: none; transition: color 0.2s; }
.ticker-track a:hover { color: var(--gold); }
.ticker-track a::after { content: "◆"; margin-left: 2rem; color: var(--gold); font-size: 0.5rem; vertical-align: middle; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === TOP BAR === */
.top-bar { background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 0.4rem 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-date { font-size: 0.72rem; color: var(--grey-mid); font-style: italic; }
.top-bar-social { display: flex; gap: 1rem; }
.top-bar-social a { font-size: 0.72rem; color: var(--grey-mid); transition: color 0.2s; }
.top-bar-social a:hover { color: var(--navy); }

/* === MASTHEAD === */
.masthead { background: var(--white); border-bottom: 4px solid var(--navy); padding: 1rem 0; }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.masthead-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.masthead-logo img { height: 64px; width: 64px; object-fit: contain; }
.masthead-title .org-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--navy); line-height: 1.1; display: block; }
.masthead-title .chapter { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold-dark); display: block; }
.masthead-title .tagline { font-size: 0.68rem; color: var(--grey-mid); font-style: italic; margin-top: 2px; display: block; }
.masthead-right { display: flex; align-items: center; gap: 1rem; }
.search-form { display: flex; border: 1px solid var(--grey-light); overflow: hidden; }
.search-form input { border: none; outline: none; padding: 0.4rem 0.8rem; font-size: 0.8rem; font-family: var(--font-body); width: 180px; background: var(--off-white); }
.search-form button { background: var(--navy); color: var(--white); padding: 0.4rem 0.8rem; font-size: 0.8rem; transition: background 0.2s; }
.search-form button:hover { background: var(--navy-mid); }

/* === NAVIGATION === */
.main-nav { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: stretch; justify-content: space-between; }
.nav-links { display: flex; }
.nav-links a, .nav-links .nav-dropdown-toggle { display: flex; align-items: center; font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 0 1.2rem; height: var(--nav-height); transition: all 0.2s; border-bottom: 3px solid transparent; position: relative; cursor: pointer; }
.nav-links a:hover, .nav-links .nav-dropdown-toggle:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links a.current-menu-item, .nav-links a.current_page_item { color: var(--gold); border-bottom-color: var(--gold); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); border-top: 3px solid var(--gold); min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: none; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.6rem 1.2rem; font-family: var(--font-body); font-size: 0.8rem; color: var(--navy); border-bottom: 1px solid var(--grey-light); transition: background 0.15s; height: auto; letter-spacing: 0; text-transform: none; border-bottom-color: var(--grey-light); }
.dropdown-menu a:hover { background: var(--off-white); }
.nav-cta { display: flex; align-items: center; padding: 0 1.5rem; }
.nav-cta a { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.15em; background: var(--gold); color: var(--navy); padding: 0.5rem 1.2rem; transition: background 0.2s; }
.nav-cta a:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 1rem; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-nav { display: none; background: var(--navy); padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a { display: block; padding: 0.7rem 1.5rem; font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: block; }

/* === HERO === */
.hero { background: var(--navy); display: grid; grid-template-columns: 1fr 340px; gap: 0; min-height: 480px; }
.hero-main { position: relative; overflow: hidden; cursor: pointer; }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transition: opacity 0.3s; }
.hero-main:hover .hero-main-img { opacity: 0.35; }
.hero-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(13,27,62,0.97) 0%, transparent 100%); }
.hero-main-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 0.75rem; }
.hero-main-content h2:hover { text-decoration: underline; }
.hero-main-content .excerpt { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.hero-main-content .byline { font-size: 0.72rem; color: var(--gold); margin-top: 0.8rem; font-family: var(--font-label); letter-spacing: 0.1em; }
.hero-sidebar { border-left: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; }
.hero-story { padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: background 0.2s; }
.hero-story:hover { background: rgba(255,255,255,0.04); }
.hero-story h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-top: 0.4rem; }
.hero-story .meta { font-size: 0.68rem; color: var(--grey-mid); margin-top: 0.4rem; }

/* === SECTION HEADERS === */
.section-header { display: flex; align-items: center; justify-content: space-between; border-top: 3px solid var(--navy); border-bottom: 1px solid var(--grey-light); padding: 0.6rem 0; margin-bottom: 1.5rem; }
.section-header h2 { font-family: var(--font-label); font-size: 1.1rem; letter-spacing: 0.15em; color: var(--navy); }
.section-header a { font-size: 0.75rem; color: var(--grey-mid); transition: color 0.2s; }
.section-header a:hover { color: var(--navy); }

/* === NEWS GRID === */
.news-section { padding: 3rem 0; background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { background: var(--white); border: 1px solid var(--grey-light); transition: box-shadow 0.2s, transform 0.2s; cursor: pointer; }
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.news-card-img { height: 200px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.03); }
.news-card-img .no-img { width: 100%; height: 100%; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.news-card-img .no-img span { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); }
.news-card-body { padding: 1.2rem; }
.news-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.news-card-body p { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.5; }
.news-card-meta { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1.2rem; border-top: 1px solid var(--grey-light); font-size: 0.7rem; color: var(--grey-mid); }
.news-card-meta .author { font-weight: 600; color: var(--navy); }

/* === FEATURED ARTICLE === */
.featured-article { display: grid; grid-template-columns: 1fr 1.2fr; border: 1px solid var(--grey-light); background: var(--white); margin-bottom: 1.5rem; cursor: pointer; transition: box-shadow 0.2s; }
.featured-article:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.featured-article-img { height: 260px; overflow: hidden; }
.featured-article-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-article-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.featured-article-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1.25; margin: 0.5rem 0 0.75rem; }
.featured-article-body p { font-size: 0.88rem; color: var(--grey-dark); line-height: 1.6; }
.featured-article-body .meta { font-size: 0.72rem; color: var(--grey-mid); margin-top: 1rem; }

/* === CONTENT + SIDEBAR === */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 3rem 0; }
.sidebar-widget { background: var(--white); border: 1px solid var(--grey-light); padding: 1.4rem; margin-bottom: 1.5rem; }
.sidebar-widget h4 { font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.15em; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; margin-bottom: 1rem; }
.sidebar-list-item { display: flex; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid var(--grey-light); cursor: pointer; }
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item img { width: 64px; height: 50px; object-fit: cover; flex-shrink: 0; }
.sidebar-list-item .no-img-sm { width: 64px; height: 50px; background: var(--navy); flex-shrink: 0; }
.sidebar-list-item p { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.sidebar-list-item .meta { font-size: 0.68rem; color: var(--grey-mid); margin-top: 4px; }

/* === OPINION SECTION === */
.opinion-section { padding: 3rem 0; background: var(--navy); }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.opinion-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; cursor: pointer; transition: background 0.2s; }
.opinion-card:hover { background: rgba(255,255,255,0.08); }
.opinion-card .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 0.5; margin-bottom: 1rem; opacity: 0.5; }
.opinion-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0.75rem; }
.opinion-card .author-row { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.opinion-card .author-avatar { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-size: 0.85rem; color: var(--navy); flex-shrink: 0; overflow: hidden; }
.opinion-card .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.opinion-card .author-name { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.opinion-card .author-role { font-size: 0.65rem; color: var(--gold); font-family: var(--font-label); letter-spacing: 0.1em; }

/* === CATEGORIES ROW === */
.categories-row { padding: 1.5rem 0; background: var(--white); border-bottom: 1px solid var(--grey-light); }
.categories-scroll { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.25rem; }
.category-pill { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.12em; padding: 0.4rem 1rem; border: 1.5px solid var(--navy); color: var(--navy); white-space: nowrap; transition: all 0.2s; cursor: pointer; text-decoration: none; display: inline-block; }
.category-pill:hover, .category-pill.active { background: var(--navy); color: var(--white); }

/* === ARTICLE LIST ROW === */
.article-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); }
.article-row { display: grid; grid-template-columns: 160px 1fr; gap: 1.2rem; background: var(--white); padding: 1.2rem; cursor: pointer; transition: background 0.15s; text-decoration: none; color: inherit; }
.article-row:hover { background: var(--off-white); }
.article-row img { width: 160px; height: 110px; object-fit: cover; flex-shrink: 0; }
.article-row .no-img-rect { width: 160px; height: 110px; background: var(--navy); flex-shrink: 0; }
.article-row h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 0.4rem 0 0.5rem; }
.article-row p { font-size: 0.8rem; color: var(--grey-dark); line-height: 1.5; }
.article-row .meta { font-size: 0.7rem; color: var(--grey-mid); margin-top: 0.5rem; }
.article-row .meta .author { font-weight: 600; color: var(--navy); }

/* === MULTIMEDIA BANNER === */
.multimedia-banner { background: var(--gold); padding: 3rem 0; }
.multimedia-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.multimedia-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 0.5rem; }
.multimedia-text p { font-size: 0.9rem; color: var(--navy-mid); max-width: 480px; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.gallery-item { overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: rgba(13,27,62,0.6); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay span { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--white); }

/* === INSTAGRAM FEED === */
.instagram-section { padding: 3rem 0; background: var(--off-white); }
.instagram-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.instagram-header a { font-size: 0.75rem; color: var(--grey-mid); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.instagram-placeholder { aspect-ratio: 1; background: var(--grey-light); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--grey-mid); font-family: var(--font-label); letter-spacing: 0.1em; }

/* === NEWSLETTER === */
.newsletter-bar { background: var(--navy); padding: 2.5rem 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.newsletter-text h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 0.25rem; }
.newsletter-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; gap: 0; flex-shrink: 0; }
.newsletter-form input { border: none; outline: none; padding: 0.75rem 1.2rem; font-size: 0.85rem; font-family: var(--font-body); width: 280px; background: rgba(255,255,255,0.1); color: var(--white); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { background: var(--gold); color: var(--navy); font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.1em; padding: 0.75rem 1.5rem; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--gold-dark); }

/* === LEADERS / ABOUT === */
.about-hero { background: var(--navy); padding: 5rem 0 4rem; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--white); line-height: 1.05; }
.about-hero .lead { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin-top: 1rem; line-height: 1.7; }
.about-hero .gold-rule { width: 80px; height: 4px; background: var(--gold); margin: 1.5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { border-top: 3px solid var(--gold); padding: 1.5rem; background: var(--white); }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--grey-dark); line-height: 1.6; }
.admin-year { margin-bottom: 3rem; }
.admin-year-label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold-dark); border-bottom: 2px solid var(--gold); padding-bottom: 0.4rem; margin-bottom: 1.5rem; display: block; }
.leaders-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.leader-card { text-align: center; }
.leader-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-size: 1.4rem; margin: 0 auto 0.75rem; overflow: hidden; }
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.leader-card .role { font-size: 0.72rem; color: var(--grey-mid); font-family: var(--font-label); letter-spacing: 0.1em; display: block; margin-top: 0.2rem; }
.leader-card .session { font-size: 0.68rem; color: var(--gold-dark); display: block; margin-top: 0.1rem; }
.timeline { border-left: 3px solid var(--gold); padding-left: 2rem; }
.timeline-item { margin-bottom: 2rem; position: relative; }
.timeline-item::before { content: ''; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; position: absolute; left: -2.45rem; top: 5px; }
.timeline-item h4 { font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--navy); }
.timeline-item p { font-size: 0.85rem; color: var(--grey-dark); line-height: 1.6; margin-top: 0.25rem; }
.timeline-year { font-family: var(--font-label); font-size: 1.2rem; color: var(--gold); }

/* === ARCHIVE NOTICE === */
.archive-notice-hero { background: var(--grey-dark); padding: 4rem 0; border-bottom: 4px solid var(--red-alert); }
.archive-notice-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); }
.archive-notice-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; max-width: 600px; line-height: 1.7; }
.notice-box { border-left: 4px solid var(--red-alert); background: #FFF5F5; padding: 1.5rem 2rem; margin: 2rem 0; }
.notice-box p { font-size: 0.9rem; color: var(--grey-dark); line-height: 1.7; }

/* === JOURNALIST PROFILES === */
.journalist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.journalist-card { background: var(--white); border: 1px solid var(--grey-light); overflow: hidden; transition: box-shadow 0.2s; }
.journalist-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.journalist-photo { height: 200px; overflow: hidden; background: var(--navy); }
.journalist-photo img { width: 100%; height: 100%; object-fit: cover; }
.journalist-photo .initials { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-label); font-size: 3rem; color: var(--gold); }
.journalist-info { padding: 1.2rem; }
.journalist-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.journalist-info .beat { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold-dark); display: block; margin-bottom: 0.5rem; }
.journalist-info p { font-size: 0.8rem; color: var(--grey-dark); line-height: 1.5; }

/* === AWARDS === */
.awards-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-light); }
.award-item { background: var(--white); padding: 1.5rem; display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start; }
.award-year { font-family: var(--font-label); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.award-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.award-item p { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.5; }
.award-item .awarding-body { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--grey-mid); margin-top: 0.25rem; display: block; }

/* === EVENTS === */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event-card { background: var(--white); border: 1px solid var(--grey-light); overflow: hidden; }
.event-date-bar { background: var(--navy); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; }
.event-date-bar .day { font-family: var(--font-label); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.event-date-bar .month-year { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); }
.event-info { padding: 1.2rem; }
.event-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.3; }
.event-info p { font-size: 0.8rem; color: var(--grey-dark); line-height: 1.5; }
.event-info .location { font-size: 0.72rem; color: var(--grey-mid); margin-top: 0.5rem; font-family: var(--font-label); letter-spacing: 0.1em; }

/* === MEMBERSHIP FORM === */
.membership-hero { background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid)); padding: 5rem 0; }
.membership-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--white); }
.membership-hero p { color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--white); border: 1px solid var(--grey-light); }
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; }
.benefit-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--grey-light); padding: 0.65rem 0.8rem; font-family: var(--font-body); font-size: 0.85rem; outline: none; transition: border-color 0.2s; background: var(--white); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.faq-item { border-bottom: 1px solid var(--grey-light); padding: 1.2rem 0; cursor: pointer; }
.faq-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; }
.faq-item p { font-size: 0.83rem; color: var(--grey-dark); line-height: 1.6; margin-top: 0.7rem; display: none; }
.faq-item.open p { display: block; }
.faq-arrow { font-size: 0.8rem; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; padding: 3rem 0; }
.contact-info-card { background: var(--navy); padding: 1.5rem; margin-bottom: 1.2rem; }
.contact-info-card h4 { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.75rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.6; display: block; }
.contact-info-card a:hover { color: var(--gold); }
.source-protection { background: #1A0A0A; border: 1px solid rgba(204,34,0,0.3); padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; }
.source-protection .sp-label { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--red-alert); margin-bottom: 0.4rem; }
.source-protection p { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* === FOOTER === */
footer { background: #080F1F; color: rgba(255,255,255,0.7); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 56px; opacity: 0.9; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-brand .tagline-footer { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); margin-top: 1rem; display: block; }
.footer-col h5 { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 32px; height: 32px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* === SINGLE POST === */
.single-post-hero { background: var(--navy); padding: 4rem 0 3rem; }
.single-post-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.2; max-width: 860px; }
.single-post-hero .post-meta { margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.single-post-hero .post-meta span { margin-right: 1rem; }
.post-content-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; padding: 3rem 0; }
.post-featured-img { width: 100%; max-height: 480px; object-fit: cover; margin-bottom: 2rem; }
.post-body { font-size: 1rem; line-height: 1.8; color: var(--grey-dark); }
.post-body h2, .post-body h3 { font-family: var(--font-display); color: var(--navy); margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body blockquote { border-left: 4px solid var(--gold); margin: 2rem 0; padding: 1rem 1.5rem; background: var(--off-white); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--navy); }
.post-body a { color: var(--navy-mid); border-bottom: 1px solid var(--gold); }
.post-tags { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-light); }
.post-tags a { display: inline-block; border: 1px solid var(--grey-light); padding: 0.3rem 0.8rem; font-size: 0.75rem; color: var(--grey-dark); margin: 0.2rem; transition: all 0.2s; }
.post-tags a:hover { border-color: var(--navy); color: var(--navy); }
.empty-notice { text-align: center; padding: 4rem 2rem; color: var(--grey-mid); }
.empty-notice h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.empty-notice p { font-size: 0.85rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leaders-row { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .post-content-wrap { grid-template-columns: 1fr; }
  .opinion-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .leaders-row { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .journalist-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .masthead-inner { flex-direction: column; text-align: center; }
  .masthead-right { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .multimedia-inner { flex-direction: column; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; }
  .top-bar { display: none; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .article-row { grid-template-columns: 1fr; }
  .article-row img, .article-row .no-img-rect { width: 100%; height: 180px; }
}
@media (max-width: 480px) {
  .leaders-row { grid-template-columns: 1fr; }
  .journalist-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.acj-announcement-bar {
  background: var(--gold);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  position: relative;
  z-index: 110;
}
.acj-announcement-bar a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.acj-announcement-bar a:hover { text-decoration: underline; }

/* =============================================
   BACK TO TOP
   ============================================= */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  z-index: 500;
  line-height: 1;
}
#backToTop:hover { background: var(--navy-mid); transform: translateY(-2px); }
#backToTop.visible { display: flex; }
[data-theme="dark"] #backToTop { background: var(--gold); color: var(--navy); }

/* =============================================
   JOURNALIST PROFILE PAGE
   ============================================= */
.journalist-profile-hero { background: var(--navy); padding: 4rem 0 3rem; border-bottom: 4px solid var(--gold); }
.journalist-profile-inner { display: flex; gap: 2.5rem; align-items: flex-start; }
.journalist-profile-photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--navy-mid); flex-shrink: 0;
  border: 3px solid var(--gold); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-size: 2.5rem; color: var(--gold);
}
.journalist-profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.journalist-profile-name { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; color: var(--white); line-height: 1.1; }
.journalist-profile-role { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--gold); margin-top: 0.4rem; display: block; }
.journalist-profile-beat { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.journalist-profile-since { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; font-family: var(--font-label); letter-spacing: 0.1em; }
.journalist-article-count { display: inline-block; background: var(--gold); color: var(--navy); font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.12em; padding: 3px 10px; margin-top: 0.75rem; }

/* =============================================
   AWARDS PAGE — INTERNAL vs EXTERNAL
   ============================================= */
.award-type-label {
  font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.15em;
  padding: 2px 7px; display: inline-block; margin-bottom: 0.3rem;
}
.award-type-internal { background: var(--gold); color: var(--navy); }
.award-type-external { background: var(--navy); color: var(--gold); }

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 768px) {
  .journalist-profile-inner { flex-direction: column; }
  #backToTop { bottom: 1.2rem; right: 1.2rem; width: 38px; height: 38px; font-size: 1.1rem; }
}
