/* =========================================
   KAMORAN — Medijsko-analitički portal
   Glavni stilovi
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #1a3a2a;
  --green-mid:    #2d5c40;
  --green-light:  #3d7a56;
  --green-pale:   #e8f0eb;
  --beige:        #f5f0e8;
  --beige-dark:   #e8e0d0;
  --off-white:    #faf8f4;
  --white:        #ffffff;
  --orange:       #d45f1e;
  --orange-light: #e8824a;
  --text-dark:    #1c2b22;
  --text-mid:     #3d5244;
  --text-light:   #6b8070;
  --border:       #d0dbd3;
  --shadow-sm:    0 2px 8px rgba(26,58,42,.08);
  --shadow-md:    0 4px 20px rgba(26,58,42,.12);
  --shadow-lg:    0 8px 40px rgba(26,58,42,.16);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Source Sans 3', 'Helvetica Neue', sans-serif;
  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --max-width:    1200px;
  --transition:   .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul, ol { padding-left: 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--text-mid); line-height: 1.8; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--green-deep);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-meta { display: flex; gap: 1.5rem; align-items: center; }
.header-meta a, .header-meta span {
  font-size: .8rem; color: rgba(255,255,255,.65); letter-spacing: .03em;
}
.header-meta a:hover { color: var(--orange-light); }
.site-logo { display: flex; align-items: center; gap: .75rem; }
.logo-mark {
  width: 42px; height: 42px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); flex-shrink: 0;
}
.logo-mark span {
  font-family: var(--font-serif); color: #fff; font-weight: 800;
  font-size: 1.15rem; letter-spacing: -.02em;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif); color: #fff; font-weight: 700;
  font-size: 1.35rem; letter-spacing: .02em; line-height: 1;
}
.logo-tagline { font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; }

/* Nav */
.header-nav { background: var(--green-deep); padding: .15rem 0; }
.nav-list {
  display: flex; list-style: none; padding: 0; margin: 0;
  gap: 0; align-items: stretch;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: .65rem 1.1rem;
  color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500;
  letter-spacing: .02em; white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius);
}
.nav-list > li > a:hover, .nav-list > li.active > a {
  background: rgba(255,255,255,.1); color: #fff;
}
.nav-list > li > a.accent-link {
  background: var(--orange); color: #fff; border-radius: var(--radius);
}
.nav-list > li > a.accent-link:hover { background: var(--orange-light); }

/* Dropdown */
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); z-index: 999; padding: .5rem 0;
}
.dropdown a {
  display: block; padding: .6rem 1.25rem;
  font-size: .875rem; color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--green-pale); color: var(--green-deep); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: rgba(255,255,255,.9);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: currentColor; margin: 5px 0; border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--green-deep);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,.97) 0%, rgba(45,92,64,.85) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .35; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-category {
  display: inline-block; color: var(--orange-light);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15; margin-bottom: 1.25rem;
}
.hero p {
  color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.75;
  margin-bottom: 2rem; max-width: 620px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  letter-spacing: .03em; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-outline-green {
  background: transparent; color: var(--green-mid); border-color: var(--green-mid);
}
.btn-outline-green:hover { background: var(--green-mid); color: #fff; }
.btn-green { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }
.btn-green:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.btn-sm { padding: .5rem 1.25rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* =========================================
   SECTION COMMON
   ========================================= */
.section { padding: 5rem 0; }
.section-alt { background: var(--beige); }
.section-dark { background: var(--green-deep); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-green { background: var(--green-pale); }

.section-header { margin-bottom: 3rem; }
.section-header .overline {
  display: inline-block; color: var(--orange); font-size: .78rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-mid); max-width: 580px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* Divider */
.divider {
  width: 50px; height: 3px; background: var(--orange);
  margin: 1rem 0 1.5rem;
}
.divider.centered { margin-left: auto; margin-right: auto; }

/* =========================================
   GRID SYSTEMS
   ========================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.grid-sidebar-left { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-image { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; gap: .75rem; align-items: center;
  font-size: .78rem; color: var(--text-light); margin-bottom: .75rem;
}
.card-meta .tag {
  background: var(--green-pale); color: var(--green-mid);
  padding: .2rem .65rem; border-radius: 20px; font-weight: 600;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
}
.card h3 { font-size: 1.15rem; margin-bottom: .6rem; line-height: 1.3; }
.card h3 a { color: var(--text-dark); }
.card h3 a:hover { color: var(--orange); }
.card p { font-size: .9rem; color: var(--text-mid); flex: 1; }
.card-footer {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.read-more {
  font-size: .85rem; font-weight: 600; color: var(--green-mid);
  display: flex; align-items: center; gap: .3rem;
}
.read-more::after { content: '→'; transition: transform var(--transition); }
.read-more:hover::after { transform: translateX(4px); }
.read-more:hover { color: var(--orange); }

/* Featured card */
.card-featured .card-image { aspect-ratio: 16/9; }
.card-featured .card-body { padding: 2rem; }
.card-featured h3 { font-size: 1.5rem; }

/* Horizontal card */
.card-h { flex-direction: row; align-items: stretch; }
.card-h .card-image { width: 200px; min-width: 200px; aspect-ratio: unset; }
.card-h .card-image img { height: 100%; }

/* =========================================
   FEATURED ARTICLE BLOCK
   ========================================= */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.featured-main { grid-row: span 2; }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--green-mid);
  padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: .25rem;
}
.stat-item .stat-num span { color: var(--orange-light); }
.stat-item .stat-label {
  font-size: .82rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
}

/* =========================================
   OPINION / QUOTE BLOCK
   ========================================= */
.quote-block {
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem; background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}
.quote-block blockquote {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--text-dark); line-height: 1.6; margin-bottom: .75rem;
}
.quote-block cite { font-size: .85rem; color: var(--text-light); font-style: normal; }

/* =========================================
   SIDEBAR
   ========================================= */
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 1.75rem;
}
.widget-header {
  background: var(--green-deep); padding: .9rem 1.25rem;
}
.widget-header h4 {
  color: #fff; font-size: .9rem; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 700;
}
.widget-body { padding: 1.25rem; }
.widget-list { list-style: none; padding: 0; }
.widget-list li {
  padding: .65rem 0; border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.widget-list li:last-child { border-bottom: none; }
.widget-list a { color: var(--text-mid); }
.widget-list a:hover { color: var(--orange); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud a {
  background: var(--beige); color: var(--text-mid); padding: .3rem .75rem;
  border-radius: 20px; font-size: .78rem; border: 1px solid var(--border);
}
.tag-cloud a:hover { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  background: var(--beige); padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex; list-style: none; padding: 0; margin: 0; gap: .5rem;
  font-size: .82rem; align-items: center;
}
.breadcrumb-list li { display: flex; align-items: center; gap: .5rem; color: var(--text-light); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; }
.breadcrumb-list a { color: var(--text-mid); }
.breadcrumb-list a:hover { color: var(--orange); }

/* =========================================
   PAGE HEADER
   ========================================= */
.page-header {
  background: var(--green-deep); padding: 3.5rem 0 3rem;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,95,30,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .overline {
  color: var(--orange-light); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .75rem;
}
.page-header h1 { color: #fff; margin-bottom: .75rem; }
.page-header p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; }

/* =========================================
   ARTICLE CONTENT
   ========================================= */
.article-content { font-size: 1.05rem; line-height: 1.85; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 .75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin-bottom: 1.25rem; }
.article-content li { margin-bottom: .5rem; }
.article-content img {
  width: 100%; border-radius: var(--radius-md); margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.article-content .highlight-box {
  background: var(--green-pale); border-left: 3px solid var(--green-mid);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

/* =========================================
   NEWSLETTER / CTA
   ========================================= */
.newsletter-section {
  background: var(--green-deep); padding: 4rem 0; text-align: center;
}
.newsletter-section h2 { color: #fff; margin-bottom: .75rem; }
.newsletter-section p { color: rgba(255,255,255,.72); margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: .75rem; max-width: 500px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: .85rem 1.25rem; border-radius: var(--radius);
  border: none; font-family: var(--font-sans); font-size: .95rem;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: rgba(255,255,255,.5); }

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form { background: var(--white); border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }
.form-group label span { color: var(--orange); }
.form-control {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); font-family: var(--font-sans);
  font-size: .95rem; color: var(--text-dark); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,92,64,.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.success-message {
  display: none; background: #d4edda; border: 1px solid #c3e6cb;
  color: #155724; padding: 1.25rem 1.5rem; border-radius: var(--radius);
  margin-bottom: 1.5rem; font-weight: 500;
}
.success-message.show { display: flex; align-items: center; gap: .75rem; }
.success-message::before { content: '✓'; font-size: 1.2rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer-about .logo-name { font-size: 1.5rem; color: #fff; display: block; margin-bottom: .5rem; }
.footer-about p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: .8rem; color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h5 {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-links a:hover { color: var(--orange-light); }
.footer-contact-item {
  display: flex; gap: .75rem; margin-bottom: .75rem; font-size: .875rem;
}
.footer-contact-item .icon { color: var(--orange-light); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-links {
  display: flex; gap: 1.25rem; list-style: none; padding: 0; flex-wrap: wrap;
}
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--orange-light); }

/* =========================================
   POLICY PAGES
   ========================================= */
.policy-content { padding: 4rem 0; }
.policy-content h2 { margin: 2.5rem 0 1rem; }
.policy-content h3 { margin: 2rem 0 .75rem; font-size: 1.2rem; }
.policy-content p, .policy-content li { font-size: .98rem; line-height: 1.8; }
.policy-content ul, .policy-content ol { margin-bottom: 1.25rem; }
.policy-content li { margin-bottom: .5rem; }
.policy-meta {
  background: var(--beige); padding: 1rem 1.5rem; border-radius: var(--radius);
  margin-bottom: 2rem; font-size: .875rem; color: var(--text-mid);
}

/* =========================================
   TAGS & LABELS
   ========================================= */
.tag { display: inline-block; background: var(--green-pale); color: var(--green-mid); padding: .2rem .7rem; border-radius: 20px; font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.tag-orange { background: #fdeede; color: var(--orange); }
.tag-dark { background: var(--text-dark); color: #fff; }

/* =========================================
   TOPIC CARDS
   ========================================= */
.topic-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-mid);
  transition: box-shadow var(--transition), transform var(--transition);
}
.topic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.topic-card .icon {
  width: 50px; height: 50px; background: var(--green-pale);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem;
}
.topic-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.topic-card p { font-size: .875rem; color: var(--text-mid); }

/* =========================================
   AUTHOR BOX
   ========================================= */
.author-box {
  background: var(--beige); border-radius: var(--radius-md); padding: 1.75rem;
  display: flex; gap: 1.5rem; align-items: flex-start; margin: 3rem 0;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: .3rem; }
.author-info .role { font-size: .82rem; color: var(--text-light); margin-bottom: .6rem; }
.author-info p { font-size: .875rem; margin: 0; }

/* =========================================
   TIMELINE
   ========================================= */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -1.65rem; top: .35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-item h4 { font-size: 1rem; margin-bottom: .3rem; }
.timeline-item p { font-size: .875rem; color: var(--text-mid); margin: 0; }
.timeline-date { font-size: .78rem; color: var(--text-light); margin-bottom: .3rem; }

/* =========================================
   TABS
   ========================================= */
.tabs-nav {
  display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; gap: 0;
}
.tab-btn {
  padding: .75rem 1.5rem; background: none; border: none;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 500;
  color: var(--text-mid); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--green-mid); }
.tab-btn.active { color: var(--green-deep); border-bottom-color: var(--orange); font-weight: 700; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* =========================================
   ACCORDION
   ========================================= */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.1rem 0; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--font-sans); font-size: .98rem;
  font-weight: 600; color: var(--text-dark); cursor: pointer;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--orange); }
.accordion-btn .toggle {
  font-size: 1.2rem; font-weight: 400; color: var(--orange);
  transition: transform var(--transition); flex-shrink: 0;
}
.accordion-btn.open .toggle { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 1.25rem; }
.accordion-body p, .accordion-body li { font-size: .93rem; color: var(--text-mid); }

/* =========================================
   SITEMAP
   ========================================= */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.sitemap-category h3 { font-size: 1rem; color: var(--orange); border-bottom: 2px solid var(--orange); padding-bottom: .5rem; margin-bottom: 1rem; }
.sitemap-links { list-style: none; padding: 0; }
.sitemap-links li { margin-bottom: .5rem; }
.sitemap-links a { font-size: .9rem; color: var(--text-mid); }
.sitemap-links a:hover { color: var(--green-mid); }

/* =========================================
   PAGINATION
   ========================================= */
.pagination {
  display: flex; gap: .5rem; justify-content: center;
  align-items: center; margin-top: 3rem;
}
.page-num {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; color: var(--text-mid);
  border: 1.5px solid var(--border); transition: all var(--transition);
  text-decoration: none;
}
.page-num:hover, .page-num.active {
  background: var(--green-mid); color: #fff; border-color: var(--green-mid);
}

/* =========================================
   SEARCH BOX
   ========================================= */
.search-box {
  display: flex; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.search-box input {
  flex: 1; padding: .75rem 1rem; border: none; background: none;
  font-family: var(--font-sans); font-size: .9rem; color: var(--text-dark);
}
.search-box input:focus { outline: none; }
.search-box button {
  padding: .75rem 1.25rem; background: var(--green-mid); color: #fff;
  border: none; cursor: pointer; font-family: var(--font-sans);
  font-size: .85rem; font-weight: 600; transition: background var(--transition);
}
.search-box button:hover { background: var(--green-deep); }

/* =========================================
   NOTICE / INFO BOXES
   ========================================= */
.info-box {
  padding: 1.25rem 1.5rem; border-radius: var(--radius); margin: 1.5rem 0;
}
.info-box-green { background: var(--green-pale); border-left: 3px solid var(--green-mid); }
.info-box-orange { background: #fdeede; border-left: 3px solid var(--orange); }
.info-box p { margin: 0; font-size: .93rem; }

/* =========================================
   TABLE
   ========================================= */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.data-table th {
  background: var(--green-deep); color: #fff; padding: .85rem 1rem;
  text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em;
}
.data-table td { padding: .85rem 1rem; font-size: .9rem; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--beige); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .grid-sidebar, .grid-sidebar-left { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-main { grid-row: span 1; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-list { display: none; flex-direction: column; background: var(--green-deep); padding: 1rem; }
  .nav-list.open { display: flex; }
  .nav-toggle { display: block; }
  .header-top { flex-wrap: wrap; gap: .75rem; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .card-h { flex-direction: column; }
  .card-h .card-image { width: 100%; aspect-ratio: 16/9; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .header-meta { display: none; }
  .tabs-nav { flex-wrap: wrap; }
}

/* =========================================
   UTILITY
   ========================================= */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green { color: var(--green-mid); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
