/* =============================================================
   SOMALILAND NTV — GLOBAL DESIGN SYSTEM
   Premium News Portal | somalilandntv.com
   Niche: Somaliland National Television & News Media
   ============================================================= */

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

/* ── ROOT VARIABLES ────────────────────────────────────────── */
:root {
  --c-navy:        #0b1829;
  --c-navy-mid:    #0f2241;
  --c-navy-light:  #16305a;
  --c-green:       #00a86b;
  --c-green-d:     #007a4d;
  --c-green-l:     #00cf85;
  --c-red:         #c0392b;
  --c-red-bright:  #e74c3c;
  --c-gold:        #c8a94a;
  --c-gold-l:      #e8c96a;
  --c-white:       #ffffff;
  --c-off-white:   #f5f7fa;
  --c-gray-50:     #f8fafc;
  --c-gray-100:    #f0f4f8;
  --c-gray-200:    #e2e8f0;
  --c-gray-300:    #cbd5e1;
  --c-gray-400:    #94a3b8;
  --c-gray-500:    #64748b;
  --c-gray-600:    #475569;
  --c-gray-700:    #334155;
  --c-gray-800:    #1e293b;
  --c-text:        #1a202c;
  --c-text-muted:  #64748b;

  --ff-head:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:  'Inter', system-ui, -apple-system, sans-serif;
  --ff-label: 'Oswald', sans-serif;

  --sh-sm:   0 1px 4px rgba(0,0,0,.08);
  --sh-md:   0 4px 16px rgba(0,0,0,.12);
  --sh-lg:   0 8px 32px rgba(0,0,0,.18);
  --sh-card: 0 2px 10px rgba(11,24,41,.07);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .24s var(--ease);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--c-text); background: var(--c-white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

.badge {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  line-height: 1.6;
}
.badge--green  { background: var(--c-green);   color: #fff; }
.badge--red    { background: var(--c-red);     color: #fff; }
.badge--gold   { background: var(--c-gold);    color: #fff; }
.badge--navy   { background: var(--c-navy);    color: #fff; }
.badge--outline{ border: 1.5px solid var(--c-navy-light); color: var(--c-navy-light); background: transparent; }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--c-navy);
  border-left: 4px solid var(--c-green);
  padding-left: 14px;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* ── TOP INFO STRIP ────────────────────────────────────────── */
.top-strip {
  background: var(--c-navy);
  color: var(--c-gray-300);
  font-size: .78rem;
  font-family: var(--ff-label);
  letter-spacing: .05em;
}
.top-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 16px;
}
.top-strip .date-txt { color: var(--c-gray-400); }
.top-strip .top-socials { display: flex; gap: 12px; align-items: center; }
.top-strip .top-socials a {
  color: var(--c-gray-400);
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t);
}
.top-strip .top-socials a:hover { color: var(--c-green-l); }
.top-strip .top-socials svg { width: 14px; height: 14px; fill: currentColor; }

/* ── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  background: var(--c-navy);
  border-bottom: 3px solid var(--c-green);
  padding: 14px 0;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-logo img {
  width: 70px;
  height: 70px;
  border-radius: var(--r-md);
  object-fit: contain;
  background: var(--c-navy-mid);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .ntv-name {
  font-family: var(--ff-label);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: .04em;
}
.logo-text .ntv-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.header-right { display: flex; align-items: center; gap: 20px; }

.search-form {
  display: flex;
  align-items: center;
  background: var(--c-navy-mid);
  border: 1px solid var(--c-navy-light);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--t);
}
.search-form:focus-within { border-color: var(--c-green); }
.search-form input {
  background: transparent;
  border: none;
  color: var(--c-white);
  padding: 9px 14px;
  font-size: .875rem;
  width: 220px;
  outline: none;
}
.search-form input::placeholder { color: var(--c-gray-500); }
.search-form button {
  padding: 9px 14px;
  background: var(--c-green);
  color: #fff;
  transition: background var(--t);
}
.search-form button:hover { background: var(--c-green-d); }
.search-form button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.live-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.3); }
}

/* ── HAMBURGER ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: var(--c-white);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--t);
}

/* ── MAIN NAVIGATION ───────────────────────────────────────── */
.main-nav {
  background: var(--c-navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { flex-shrink: 0; }
.nav-list > li > a {
  display: block;
  padding: 0 18px;
  height: 48px;
  line-height: 48px;
  color: var(--c-gray-300);
  font-size: .88rem;
  font-weight: 500;
  font-family: var(--ff-label);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--c-white);
  border-bottom-color: var(--c-green);
  background: rgba(255,255,255,.04);
}
.nav-list > li.nav-home > a { color: var(--c-gold); }
.nav-list > li.nav-home > a:hover { color: var(--c-gold-l); border-bottom-color: var(--c-gold); }

/* ── BREAKING NEWS TICKER ──────────────────────────────────── */
.ticker-wrap {
  background: var(--c-red);
  overflow: hidden;
}
.ticker-wrap .inner {
  display: flex;
  align-items: center;
  height: 38px;
  gap: 0;
}
.ticker-label {
  background: var(--c-navy);
  color: var(--c-gold);
  font-family: var(--ff-label);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 0 16px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-scroll {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-move 55s linear infinite;
}
.ticker-scroll span {
  font-size: .83rem;
  font-weight: 500;
  color: #fff;
  padding: 0 28px;
}
.ticker-scroll span::before {
  content: '◆';
  margin-right: 12px;
  font-size: .6rem;
  opacity: .7;
}
@keyframes ticker-move {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-scroll { animation-play-state: paused; }

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  background: var(--c-navy);
  padding: 32px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Main Hero Card */
.hero-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.hero-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.hero-main:hover .hero-main-img { transform: scale(1.03); }
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 50%, transparent 100%);
}
.hero-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 28px;
}
.hero-main-content .badge { margin-bottom: 10px; }
.hero-main-content h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-main-content .hero-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-main-content .hero-meta span { display: flex; align-items: center; gap: 4px; }

/* Sidebar latest */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-side-title {
  font-family: var(--ff-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px;
  margin-bottom: 0;
}
.hero-side-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--t);
  cursor: pointer;
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: rgba(255,255,255,.03); }
.hero-side-item-img {
  width: 90px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.hero-side-item-body { display: flex; flex-direction: column; gap: 5px; }
.hero-side-item-body .badge { align-self: start; }
.hero-side-item-body h3 {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.35;
}
.hero-side-item-body .meta {
  font-size: .72rem;
  color: var(--c-gray-500);
}
.hero-side-item:hover .hero-side-item-body h3 { color: var(--c-green-l); }

/* ── MAIN + SIDEBAR LAYOUT ─────────────────────────────────── */
.content-wrap { padding: 40px 0 48px; background: var(--c-off-white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* ── ARTICLE CARDS ─────────────────────────────────────────── */
.article-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.article-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.article-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.art-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.art-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.art-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.art-card:hover .art-card-img { transform: scale(1.04); }
.art-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.art-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.art-card-body .badge { align-self: start; }
.art-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.35;
  transition: color var(--t);
}
.art-card:hover .art-card-body h3 { color: var(--c-green-d); }
.art-card-body p {
  font-size: .83rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-card-meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--c-gray-100);
  display: flex;
  gap: 14px;
  font-size: .75rem;
  color: var(--c-gray-400);
}

/* Large featured card */
.art-card--featured .art-card-img { height: 240px; }
.art-card--featured .art-card-body h3 { font-size: 1.15rem; }

/* Horizontal card */
.art-card-h {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
  display: grid;
  grid-template-columns: 130px 1fr;
  transition: box-shadow var(--t), transform var(--t);
  margin-bottom: 14px;
}
.art-card-h:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.art-card-h-img {
  width: 130px;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.art-card-h:hover .art-card-h-img { transform: scale(1.06); }
.art-card-h-img-wrap { overflow: hidden; }
.art-card-h-body { padding: 14px; display: flex; flex-direction: column; gap: 5px; }
.art-card-h-body .badge { align-self: start; }
.art-card-h-body h3 {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
  transition: color var(--t);
}
.art-card-h:hover .art-card-h-body h3 { color: var(--c-green-d); }
.art-card-h-body .meta { font-size: .73rem; color: var(--c-gray-400); margin-top: auto; }

/* ── SIDEBAR ───────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.sidebar-widget-head {
  background: var(--c-navy);
  padding: 12px 18px;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 2px solid var(--c-green);
}
.sidebar-widget-body { padding: 16px; }

.latest-list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-gray-100);
  cursor: pointer;
  transition: background var(--t);
}
.latest-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.latest-list-item:first-child { padding-top: 0; }
.latest-list-item:hover { background: var(--c-gray-50); margin-inline: -16px; padding-inline: 16px; border-radius: var(--r-sm); }
.latest-list-item .num {
  font-family: var(--ff-label);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.latest-list-item-body h4 {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
  transition: color var(--t);
}
.latest-list-item:hover .latest-list-item-body h4 { color: var(--c-green-d); }
.latest-list-item-body .meta { font-size: .72rem; color: var(--c-gray-400); margin-top: 3px; }

/* Category tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  font-family: var(--ff-label);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--c-gray-200);
  color: var(--c-gray-600);
  transition: var(--t);
}
.tag-pill:hover { border-color: var(--c-green); color: var(--c-green-d); background: rgba(0,168,107,.06); }

/* Newsletter widget */
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form p { font-size: .83rem; color: var(--c-text-muted); margin-bottom: 4px; }
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-sm);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--t);
}
.newsletter-form input[type="email"]:focus { border-color: var(--c-green); }
.btn-subscribe {
  width: 100%;
  padding: 11px;
  background: var(--c-green);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  transition: background var(--t);
}
.btn-subscribe:hover { background: var(--c-green-d); }

/* ── CATEGORY SECTION ──────────────────────────────────────── */
.category-section {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--sh-card);
}

/* ── ABOUT / INNER PAGES ───────────────────────────────────── */
.page-hero {
  background: var(--c-navy);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,107,.15) 0%, transparent 70%);
}
.page-hero .inner { position: relative; }
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--c-gray-400);
  margin-bottom: 16px;
  font-family: var(--ff-label);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a { color: var(--c-gold); }
.page-hero .breadcrumb span { color: var(--c-gray-500); }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero .subtitle {
  font-size: 1rem;
  color: var(--c-gray-400);
  max-width: 560px;
  margin-inline: auto;
}

.page-content { padding: 56px 0 72px; }
.prose-wrap {
  max-width: 820px;
  margin-inline: auto;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  box-shadow: var(--sh-md);
}

.prose { color: var(--c-text); }
.prose h2 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-gray-100);
}
.prose h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy-light);
  margin: 24px 0 10px;
}
.prose p { margin-bottom: 16px; line-height: 1.75; font-size: .97rem; }
.prose ul, .prose ol {
  margin: 0 0 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: .97rem; line-height: 1.7; }
.prose a { color: var(--c-green-d); text-decoration: underline; }
.prose a:hover { color: var(--c-green); }
.prose strong { font-weight: 600; }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 40px;
}
.contact-card h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.contact-card .sub { color: var(--c-text-muted); font-size: .9rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--c-gray-700); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--r-sm);
  font-size: .9rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  background: var(--c-gray-50);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(0,168,107,.1);
  background: var(--c-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--c-green);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover { background: var(--c-green-d); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,168,107,.3); }

.contact-info-card {
  background: var(--c-navy);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  color: var(--c-white);
}
.contact-info-card h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(0,168,107,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item-body h4 { font-weight: 600; font-size: .9rem; color: var(--c-gold-l); margin-bottom: 2px; }
.contact-info-item-body p { font-size: .85rem; color: var(--c-gray-400); line-height: 1.5; }

.social-links-contact { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.social-link-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--ff-label);
  letter-spacing: .04em;
  transition: var(--t);
}
.social-link-btn.tw  { background: #1da1f2; color: #fff; }
.social-link-btn.fb  { background: #1877f2; color: #fff; }
.social-link-btn.yt  { background: #ff0000; color: #fff; }
.social-link-btn.tg  { background: #2ca5e0; color: #fff; }
.social-link-btn:hover { opacity: .85; transform: translateY(-2px); }

/* ── FAQ PAGE ──────────────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-category { margin-bottom: 40px; }
.faq-cat-title {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--c-green);
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  margin-bottom: 10px;
  border: 1.5px solid var(--c-gray-100);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-item:hover { box-shadow: var(--sh-card); }
.faq-item.open { border-color: var(--c-green); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  background: none;
  font-family: var(--ff-body);
}
.faq-question span {
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-navy);
  transition: color var(--t);
}
.faq-item.open .faq-question span { color: var(--c-green-d); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--c-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t), transform var(--t);
  font-size: .7rem;
  color: var(--c-gray-500);
}
.faq-item.open .faq-chevron {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .2s;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--c-gray-100);
  padding-top: 14px;
}

/* ── BLOG / NEWS LIST PAGE ─────────────────────────────────── */
.blog-hero {
  background: var(--c-navy);
  padding: 40px 0;
}
.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0 28px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--c-gray-200);
  font-family: var(--ff-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--c-gray-600);
  background: var(--c-white);
  cursor: pointer;
  transition: var(--t);
}
.filter-btn:hover { border-color: var(--c-green); color: var(--c-green-d); }
.filter-btn.active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

/* ── SITE FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--c-navy);
  color: var(--c-gray-300);
}
.footer-top {
  border-top: 4px solid var(--c-green);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-logo img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  object-fit: contain;
}
.footer-brand-logo .ntv-word {
  font-family: var(--ff-label);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: .04em;
}
.footer-brand-logo .ntv-sub {
  font-size: .6rem;
  color: var(--c-gold);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--c-gray-400);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-300);
  font-size: .85rem;
  transition: background var(--t), color var(--t);
}
.footer-social-btn:hover { background: var(--c-green); color: #fff; }

.footer-col h4 {
  font-family: var(--ff-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--c-gray-400);
  transition: color var(--t), padding-left var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--c-green);
  font-size: 1rem;
  line-height: 1;
}
.footer-col ul li a:hover { color: var(--c-white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: var(--c-gray-500); }
.footer-legal {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--c-gray-500);
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color var(--t);
}
.footer-legal a:last-child { border-right: none; }
.footer-legal a:hover { color: var(--c-green-l); }

/* ── ABOUT PAGE SPECIFIC ───────────────────────────────────── */
.about-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  box-shadow: var(--sh-lg);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}
.mission-card {
  background: var(--c-gray-50);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--c-green);
  text-align: center;
}
.mission-card .icon { font-size: 2rem; margin-bottom: 12px; }
.mission-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.mission-card p { font-size: .87rem; color: var(--c-text-muted); line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.team-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  text-align: center;
}
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 18px 16px; }
.team-card-body h4 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; color: var(--c-navy); margin-bottom: 4px; }
.team-card-body .role { font-size: .78rem; color: var(--c-green-d); font-weight: 600; font-family: var(--ff-label); letter-spacing: .06em; text-transform: uppercase; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-side-title { grid-column: 1 / -1; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-strip .inner { justify-content: center; }
  .top-strip .date-txt { display: none; }
  .site-header .inner { flex-wrap: wrap; }
  .search-form { display: none; }
  .hamburger { display: flex; }
  .main-nav.open .nav-list {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    background: var(--c-navy-mid);
  }
  .main-nav.open .nav-list > li > a { height: 44px; line-height: 44px; }
  .article-grid-3 { grid-template-columns: 1fr 1fr; }
  .article-grid-2 { grid-template-columns: 1fr; }
  .article-grid-4 { grid-template-columns: 1fr 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .inner { flex-direction: column; align-items: flex-start; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .prose-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-main-img { height: 300px; }
}

@media (max-width: 480px) {
  .article-grid-3 { grid-template-columns: 1fr; }
  .article-grid-4 { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 4px; }
  .footer-legal a { border-right: none; padding: 2px 0; }
}
