/* ==========================================================================
   Selqindo — portal de știri regional Sibiu / Transilvania
   Classic newspaper reinvented — style.css
   ========================================================================== */

:root {
  --paper: #FAF7F2;
  --white: #FFFFFF;
  --ink: #161616;
  --red: #D62828;
  --red-dark: #A81E1E;
  --gray: #6B6B6B;
  --gray-light: #DEDAD2;
  --line: #161616;
  --shadow: 0 6px 18px rgba(22,22,22,.10);
  --radius: 2px;
  --ff-head: 'Roboto Slab', 'Georgia', serif;
  --ff-body: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- reveal / fade-in animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: #E9E5DC;
  font-size: 12.5px;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__date { color: #B9B4A8; }
.topbar__socials { display: flex; gap: 10px; align-items: center; }
.topbar__socials a {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .25s ease, transform .25s ease;
}
.topbar__socials a:hover { background: var(--red); transform: translateY(-2px); }
.topbar__socials svg { width: 13px; height: 13px; fill: #fff; }

/* ---------- breaking / live ticker bar ---------- */
.breaking {
  background: var(--red);
  color: #fff;
  overflow: hidden;
}
.breaking .container { display: flex; align-items: stretch; padding: 0; max-width: 1180px; }
.breaking__label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red-dark);
  padding: 8px 16px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.breaking__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 1.4s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}
.ticker {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerScroll 32s linear infinite;
  font-size: 13.5px;
  font-weight: 600;
}
.breaking:hover .ticker__track { animation-play-state: paused; }
.ticker__track a { white-space: nowrap; }
.ticker__track a:hover { text-decoration: underline; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- masthead ---------- */
.masthead {
  background: var(--white);
  border-bottom: 3px solid var(--line);
  padding: 22px 0 16px;
  transition: padding .3s ease;
}
.masthead .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.masthead__logo {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.masthead__logo span { color: var(--red); }
.masthead__tagline {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- sticky nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid #000;
  transition: box-shadow .3s ease;
}
.nav.is-scrolled { box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}
.nav__brand {
  display: none;
  font-family: var(--ff-head);
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}
.nav.is-scrolled .nav__brand { display: block; }
.nav.is-scrolled .nav__brand span { color: var(--red); }
.nav__list {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav__list a {
  display: block;
  color: #EDEAE2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 16px 14px;
  border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav__list a:hover, .nav__list a.is-active {
  color: #fff;
  border-color: var(--red);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav__list.is-open { max-height: 600px; }
  .nav__list a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ---------- section headings (rubrică label) ---------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 3px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.section-head__title {
  font-family: var(--ff-head);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0;
  position: relative;
  padding-bottom: 6px;
}
.section-head__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -9px;
  width: 46px; height: 4px;
  background: var(--red);
}
.section-head__more { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--red); }
.section-head__more:hover { text-decoration: underline; }

.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(214,40,40,.08);
  padding: 3px 9px;
  border-radius: var(--radius);
}
.meta {
  font-size: 12.5px;
  color: var(--gray);
}

/* ---------- hero / lead story ---------- */
.hero {
  padding: 34px 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
}
.hero__main { border-right: 1px solid var(--gray-light); padding-right: 34px; }
.hero__img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.hero__img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 0; top: 0;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 6px 12px;
}
.hero__title {
  font-size: 34px;
  margin-bottom: 12px;
}
.hero__title a:hover { text-decoration: underline; text-decoration-color: var(--red); }
.hero__lead {
  font-size: 17px;
  color: #333;
}
.hero__side { display: flex; flex-direction: column; gap: 18px; }
.side-story {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--gray-light);
}
.side-story:last-child { border-bottom: none; padding-bottom: 0; }
.side-story__img { overflow: hidden; }
.side-story__img img { width: 96px; height: 72px; object-fit: cover; }
.side-story__title { font-size: 15px; margin-bottom: 4px; }
.side-story__title a:hover { text-decoration: underline; text-decoration-color: var(--red); }

/* live/acum badge pulsing */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.live-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulseDot 1.4s infinite ease-in-out;
}

/* ---------- news grid / columns ---------- */
.news {
  padding: 40px 0;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card__img { overflow: hidden; }
.card__img img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { font-size: 18px; }
.card__title a:hover { text-decoration: underline; text-decoration-color: var(--red); }
.card__lead { font-size: 14px; color: #3d3d3d; flex: 1; }
.card__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); }

/* columns list (rubrici pages) */
.article-list { display: flex; flex-direction: column; gap: 0; }
.article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-light);
}
.article-row__img { overflow: hidden; }
.article-row__img img { width: 100%; height: 150px; object-fit: cover; }
.article-row__title { font-size: 21px; margin: 8px 0 8px; }
.article-row__title a:hover { text-decoration: underline; text-decoration-color: var(--red); }
.article-row__lead { color: #333; margin-bottom: 8px; }

/* ---------- cele mai citite (most read) ---------- */
.most-read {
  background: var(--ink);
  color: #EDEAE2;
  padding: 36px 0;
}
.most-read .section-head { border-color: #3a3a3a; }
.most-read .section-head__title { color: #fff; }
.most-read__list { list-style: none; margin: 0; padding: 0; counter-reset: mr; display: flex; flex-direction: column; gap: 18px; }
.most-read__item { counter-increment: mr; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.most-read__item::before {
  content: counter(mr);
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.most-read__item a:hover { text-decoration: underline; text-decoration-color: var(--red); }
.most-read__meta { color: #B9B4A8; font-size: 12px; margin-top: 4px; }

/* ---------- featured carousel ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.carousel__track {
  display: flex;
  transition: transform .6s ease;
}
.carousel__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.carousel__img { overflow: hidden; height: 320px; }
.carousel__img img { width: 100%; height: 100%; object-fit: cover; }
.carousel__content {
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.carousel__content .tag { align-self: flex-start; }
.carousel__content h3 { font-size: 26px; }
.carousel__content h3 a:hover { text-decoration: underline; text-decoration-color: var(--red); }
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
  transition: background .25s ease, color .25s ease;
}
.carousel__arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel__arrow--prev { left: 14px; }
.carousel__arrow--next { right: 14px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  background: var(--white);
}
.carousel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.carousel__dot.is-active { background: var(--red); border-color: var(--red); }

@media (max-width: 720px) {
  .carousel__slide { grid-template-columns: 1fr; }
  .carousel__img { height: 200px; }
}

/* ---------- newsletter CTA ---------- */
.newsletter {
  background: var(--red);
  color: #fff;
  padding: 40px 0;
}
.newsletter .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.newsletter__text h2 { margin-bottom: 4px; font-size: 24px; }
.newsletter__text p { margin: 0; color: rgba(255,255,255,.9); }
.newsletter__form { display: flex; gap: 0; flex-wrap: wrap; }
.newsletter__form input[type="email"] {
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  width: 260px;
  max-width: 100%;
  font-family: var(--ff-body);
}
.newsletter__form button {
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter__form button:hover { background: #000; }
.newsletter__note { width: 100%; font-size: 12.5px; color: rgba(255,255,255,.85); margin-top: 8px; }

/* ---------- topic tags row ---------- */
.topics { padding: 30px 0; }
.topics__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.topics__list a {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease;
}
.topics__list a:hover { background: var(--ink); color: #fff; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: 44px 0 34px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.page-hero__eyebrow { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.page-hero h1 { font-size: 38px; margin: 8px 0 10px; }
.page-hero__lead { max-width: 720px; color: #333; font-size: 17px; }
.breadcrumb { font-size: 12.5px; color: var(--gray); margin-bottom: 10px; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- generic content section ---------- */
.content { padding: 40px 0; }
.content--narrow .container { max-width: 860px; }
.content h2 { font-size: 24px; margin-top: 30px; border-bottom: 2px solid var(--line); padding-bottom: 8px; }
.content h2:first-child { margin-top: 0; }
.content--alt { background: var(--white); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.mission-grid h2 { border: none; padding: 0; margin-top: 0; }

/* ---------- despre: mission / team / values ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mission-grid__img { overflow: hidden; }
.mission-grid__img img { width: 100%; height: 340px; object-fit: cover; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--red);
  padding: 22px 20px;
}
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #3d3d3d; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: var(--white); border: 1px solid var(--gray-light); text-align: center; padding-bottom: 18px; }
.team-card__img { overflow: hidden; margin-bottom: 14px; }
.team-card__img img { width: 100%; height: 210px; object-fit: cover; }
.team-card h3 { font-size: 17px; margin-bottom: 2px; }
.team-card__role { color: var(--red); font-size: 12.5px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.team-card p { font-size: 13.5px; color: var(--gray); padding: 0 16px; margin: 0; }

.timeline { display: flex; flex-direction: column; gap: 0; border-left: 3px solid var(--red); margin-left: 6px; }
.timeline__item { position: relative; padding: 0 0 26px 26px; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -9px; top: 2px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--paper);
}
.timeline__year { font-family: var(--ff-head); font-weight: 700; color: var(--red); }

/* ---------- forms (contact) ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 26px;
  margin-bottom: 20px;
}
.info-card h3 { font-size: 17px; margin-bottom: 12px; }
.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.info-list strong { display: inline-block; min-width: 78px; color: var(--gray); font-weight: 600; }

.contact-form { width: 100%; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #C9C4B8;
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 14.5px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; margin-bottom: 20px; }
.form-check input { margin-top: 3px; }
.btn {
  display: inline-block;
  border: none;
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.form-success {
  display: none;
  background: #E9F6EA;
  border: 1px solid #86C48F;
  color: #1F5A28;
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 14px;
}
.form-success.is-visible { display: block; }
.map-frame { border: 1px solid var(--gray-light); margin-top: 24px; }
.tip-box {
  background: #FBEAEA;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  font-size: 14px;
  margin-top: 22px;
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-light); background: var(--white); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 46px 18px 20px;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--red);
  transition: transform .25s ease;
}
.faq-item.is-open .faq-item__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 20px;
  font-size: 14.5px;
  color: #333;
}
.faq-item.is-open .faq-item__a { max-height: 400px; padding-bottom: 20px; }

/* ---------- privacy numbered sections ---------- */
.legal-section { counter-reset: none; }
.legal-section h2 { counter-increment: legalnum; }
.legal-section h2::before { content: counter(legalnum) ". "; color: var(--red); }
.legal-section { counter-reset: legalnum; }

/* ---------- cookie table ---------- */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table.cookie-table { border-collapse: collapse; width: 100%; min-width: 640px; }
table.cookie-table th, table.cookie-table td {
  border: 1px solid var(--gray-light);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}
table.cookie-table th { background: var(--ink); color: #fff; font-family: var(--ff-head); }
table.cookie-table tr:nth-child(even) td { background: #F3EFE7; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #C9C4B8; padding: 50px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid #333;
}
.footer__brand { font-family: var(--ff-head); font-size: 26px; color: #fff; margin-bottom: 10px; }
.footer__brand span { color: var(--red); }
.footer__desc { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  display: inline-flex; width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .25s ease, transform .25s ease;
}
.footer__socials a:hover { background: var(--red); transform: translateY(-3px); }
.footer__socials svg { width: 16px; height: 16px; fill: #fff; }
.footer h4 { color: #fff; font-size: 14.5px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer__links a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--red); }
.footer address { font-style: normal; font-size: 13.5px; line-height: 1.8; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8f8b80;
}

/* ---------- cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--ink);
  color: #EDEAE2;
  border-top: 3px solid var(--red);
  padding: 18px 0;
  transform: translateY(120%);
  transition: transform .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 13.5px; max-width: 640px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions button {
  padding: 10px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cookie-banner__actions .btn-accept { background: var(--red); border-color: var(--red); }
.cookie-banner__actions .btn-accept:hover { background: var(--red-dark); }
.cookie-banner__actions .btn-decline:hover { background: #fff; color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__main { border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-light); padding-bottom: 24px; }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .masthead__logo { font-size: 36px; }
  .news__grid { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .article-row__img img { height: 190px; }
  .footer__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .carousel__content { padding: 24px 22px; }
  .carousel__content h3 { font-size: 20px; }
  .newsletter .container { flex-direction: column; align-items: flex-start; }
}
