:root {
  --brand-blue: #046b99;
  --brand-blue-dark: #035376;
  --brand-blue-deep: #214a68;
  --accent-orange: #ff682c;
  --accent-orange-dark: #f05423;
  --accent-yellow: #ffb109;
  --teal: #21708c;
  --teal-light: #5894a7;
  --text-primary: #1c2026;
  --text-secondary: #4a4958;
  --bg-soft: #f3f3f4;
  --bg-light: #f7f9fb;
  --border-light: #e6e9ee;
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", "Public Sans", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.55;
}

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

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

main {
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1100;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Public Sans", sans-serif;
}

.brand-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue-deep);
}

.site-nav {
  display: flex;
  justify-content: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.menu-toggle-lines {
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: "Public Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  color: var(--text-primary);
  position: relative;
}

.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.menu-item a:hover,
.menu-item a:focus {
  color: var(--brand-blue-dark);
}

.menu-item a:hover::after,
.menu-item a:focus::after {
  background: var(--accent-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-pill {
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f3f5;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.social:hover,
.social:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(4, 107, 153, 0.2);
  border-color: rgba(4, 107, 153, 0.3);
}

.cta {
  background: var(--accent-orange);
  color: #ffffff;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
  box-shadow: 0 10px 20px rgba(240, 84, 35, 0.25);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta:hover,
.cta:focus {
  background: var(--accent-orange-dark);
}

.cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent-orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-text {
  padding-right: 8px;
}


.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 160px 0 120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero h1 {
  font-family: "Public Sans", sans-serif;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 24px;
}

.hero-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 999px;
}

.hero-search button {
  border: none;
  background: var(--accent-yellow);
  color: #1c2026;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Public Sans", sans-serif;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent-orange);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.button.accent {
  background: var(--accent-orange);
  color: #ffffff;
}

.button.outlined {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button.outlined:hover,
.button.outlined:focus-visible {
  background: rgba(4, 107, 153, 0.08);
}

.quick-cards {
  margin-top: -64px;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}

.quick-cards-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.quick-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.quick-card-action {
  appearance: none;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-card-action:hover,
.quick-card-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(4, 107, 153, 0.35);
}

.quick-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe1cf, #fff7e0);
  font-size: 14px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  color: var(--accent-orange-dark);
}

.quick-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.quick-card-icon-newsletter {
  background: var(--accent-orange);
  color: #ffffff;
  border-radius: 50%;
}

.quick-card-icon-newsletter svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.quick-card h3 {
  margin: 0 0 4px;
  font-family: "Public Sans", sans-serif;
}

.quick-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.section {
  padding: 72px 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 30, 40, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
  transform: translateY(14px);
  transition: transform 0.2s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal .button.secondary {
  color: var(--text-primary);
  border-color: var(--border-light);
  background: #ffffff;
}

.modal-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.modal-subtitle {
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form label {
  font-weight: 600;
  font-size: 14px;
}

.newsletter-form input {
  border-radius: 999px;
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(4, 107, 153, 0.15);
}

.newsletter-form .button {
  width: 100%;
  justify-content: center;
}

.newsletter-status {
  min-height: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.newsletter-status.is-error {
  color: #c0392b;
}

.newsletter-status.is-success {
  color: #1f7a4d;
}

.newsletter-confirm {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.newsletter-confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.newsletter-confirm-actions .button {
  flex: 1;
  justify-content: center;
}

.modal-open {
  overflow: hidden;
}

.maintenance-section {
  padding-top: 72px;
}

.section.alt {
  background: var(--bg-light);
}

.section-header h2 {
  font-family: "Public Sans", sans-serif;
  font-size: 32px;
  margin: 0 0 8px;
}

.section-header p {
  color: var(--text-secondary);
  margin: 0 0 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-family: "Public Sans", sans-serif;
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.link {
  color: var(--brand-blue);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  border: 1px solid var(--border-light);
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.info-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.page-header {
  padding: 140px 0 56px;
  background-color: var(--bg-soft);
  background-image: url("../assets/header_path.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 360px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ededf0;
  border: 1px solid #e0e3e8;
  color: #7a7f87;
}

.breadcrumb-home svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.breadcrumb-sep {
  color: #9aa1ab;
  font-size: 18px;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e7e8ec;
  border: 1px solid #dde0e6;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
}

.page-title {
  font-family: "Public Sans", sans-serif;
  font-size: 40px;
  margin: 0 0 8px;
}

.page-subtitle {
  margin: 0;
  max-width: 640px;
  color: var(--text-secondary);
}

.page-intro {
  padding: 40px 0 24px;
  background: #ffffff;
}

.page-intro .lead,
.page-intro .lead-secondary {
  color: var(--text-secondary);
}

.page-intro .lead {
  max-width: 720px;
  margin: 0;
}

.page-intro .lead-secondary {
  max-width: 820px;
  margin: 16px 0 0;
}

.page-hero {
  padding: 160px 0 72px;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  text-align: left;
}

.page-hero--light .eyebrow {
  color: var(--brand-blue-dark);
}

.page-hero h1 {
  font-family: "Public Sans", sans-serif;
  font-size: 40px;
  margin: 0 0 12px;
}

.page-hero .lead {
  max-width: 720px;
  color: var(--text-secondary);
  margin: 0;
}

.page-hero .lead-secondary {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--text-secondary);
}

.eyebrow.dark {
  color: var(--brand-blue-dark);
}

.institution-section {
  padding: 72px 0;
}

.institution-section.alt {
  background: var(--bg-light);
}

.institution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.institution-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.institution-card h3 {
  font-family: "Public Sans", sans-serif;
  margin: 0 0 8px;
}

.institution-card p {
  margin: 0;
  color: var(--text-secondary);
}

.institution-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(4, 107, 153, 0.3);
  background: rgba(4, 107, 153, 0.05);
}

.institution-note p {
  margin: 6px 0 0;
  color: var(--text-secondary);
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue-dark);
  font-weight: 600;
  margin: 0 0 8px;
}

.content-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
}

.content-list li {
  margin: 8px 0;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  counter-reset: steps;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.step-list li::before {
  counter-increment: steps;
  content: counter(steps);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(4, 107, 153, 0.12);
  color: var(--brand-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Public Sans", sans-serif;
}

.step-list h3 {
  margin: 0 0 8px;
  font-family: "Public Sans", sans-serif;
}

.step-list p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.step-list p:last-child {
  margin-bottom: 0;
}

.schedule-box {
  margin-top: 24px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-table th,
.schedule-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.schedule-table th {
  background: var(--bg-light);
  font-family: "Public Sans", sans-serif;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.authority-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.authority-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5eef5, #ffffff);
  border: 1px solid var(--border-light);
}

.authority-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue-dark);
  margin: 0 0 6px;
  font-weight: 600;
}

.authority-body h3 {
  margin: 0 0 14px;
  font-family: "Public Sans", sans-serif;
}

.authority-body p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.authority-body {
  width: 100%;
}

.site-footer {
  background: #0f2b3a;
  color: #ffffff;
  padding: 64px 0 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact h3,
.footer-social h3 {
  font-family: "Public Sans", sans-serif;
  margin: 0 0 12px;
}

.footer-contact p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: #ffffff;
}

.footer-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 8px;
}

.footer-social-pill {
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social .social {
  background: #ffffff;
  color: #0f2b3a;
  box-shadow: none;
}

.footer-social .social:hover,
.footer-social .social:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .menu-list {
    gap: 12px;
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    top: 0;
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .header-inner {
    border-radius: 12px;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    width: 100%;
    box-shadow: var(--shadow-card);
  }

  body.menu-open .menu-list {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .social-pill {
    display: none;
  }

  .page-header {
    padding: 120px 0 48px;
    background-size: 240px;
  }

  .page-title {
    font-size: 32px;
  }

  .breadcrumb-home {
    width: 34px;
    height: 34px;
  }

  .breadcrumb-home svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding: 120px 0 96px;
  }

  .maintenance-section {
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search input {
    width: 100%;
    text-align: center;
  }

  .hero-search button {
    width: 100%;
  }

  .quick-cards-inner,
  .card-grid,
  .split,
  .institution-grid,
  .authority-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .step-list li {
    grid-template-columns: 1fr;
  }

  .step-list li::before {
    width: 34px;
    height: 34px;
  }

  .page-hero {
    padding: 140px 0 56px;
  }

  .authority-card {
    grid-template-columns: 1fr;
  }

  .authority-avatar {
    width: 160px;
    height: 160px;
  }

  .footer-logo {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .brand-title {
    font-size: 16px;
  }

  .cta {
    display: none;
  }

  .access-pill {
    padding: 6px 10px;
  }

  .quick-cards {
    margin-top: -40px;
  }

  .modal-dialog {
    padding: 22px 20px;
  }

  .newsletter-confirm-actions {
    flex-direction: column;
  }
}


.news-hero {
  padding: 140px 0 32px;
  background: #ffffff;
}

.news-hero h1 {
  font-family: "Public Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  color: var(--brand-blue-deep);
}

.news-categories {
  background: #e6e6e6;
  padding: 24px 0 32px;
}

.news-category-list {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  text-align: center;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
}

.news-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2ea3f2;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.12);
}

.news-category-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.news-grid-section {
  background: #f5f5f5;
  padding: 32px 0 64px;
}

.news-grid {
  column-count: 3;
  column-gap: 24px;
}

.home-news-carousel {
  background: var(--bg-soft);
}

.news-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  padding: 24px;
}

.news-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
}

.news-carousel-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-blue-deep);
}

.news-carousel-prev {
  left: 12px;
}

.news-carousel-next {
  right: 12px;
}

.news-carousel-next svg {
  transform: rotate(180deg);
}

.news-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.news-carousel-slide {
  min-width: 100%;
}

.news-carousel-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-carousel-row.is-single {
  grid-template-columns: 1fr;
}

.news-carousel-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  color: inherit;
}

.news-carousel-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}

.news-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-carousel-content h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  font-family: "Public Sans", sans-serif;
}

.news-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.news-carousel-dot {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--brand-blue);
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.news-carousel-dot.is-active {
  background: var(--brand-blue);
}

.news-carousel-cta {
  margin-top: 16px;
  text-align: center;
}

.search-hero {
  padding: 140px 0 24px;
  background: #ffffff;
}

.search-hero h1 {
  margin: 0 0 8px;
  font-family: "Public Sans", sans-serif;
  font-size: 32px;
  color: var(--brand-blue-deep);
}

.search-query {
  color: var(--text-secondary);
  margin: 0;
}

.search-results {
  background: var(--bg-soft);
  padding: 24px 0 64px;
}

.search-grid {
  display: grid;
  gap: 16px;
}

.search-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  color: inherit;
}

.search-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b8b8b;
  margin: 0 0 6px;
}

.search-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: "Public Sans", sans-serif;
  color: #3d3d3d;
}

.search-excerpt {
  margin: 0;
  font-size: 14px;
  color: #5f5f5f;
}

.search-empty {
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 900px) {
  .news-carousel-row {
    grid-template-columns: 1fr;
  }

  .news-carousel-card {
    grid-template-columns: 1fr;
  }
}

.news-loader {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 16px 0 8px;
}

.news-sentinel {
  width: 100%;
  height: 1px;
}

.news-card {
  break-inside: avoid;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.news-card-image {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border-light);
}

.news-card-body {
  padding: 16px 18px 20px;
}

.news-card-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 6px;
}

.news-card h3 {
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1024px) {
  .news-grid {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .news-hero {
    padding-top: 120px;
  }

  .news-grid {
    column-count: 1;
  }

  .news-category-list {
    justify-content: center;
  }
}


.news-card-link {
  color: inherit;
  display: block;
}

.news-card-link:hover .news-card {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
}

.news-detail {
  padding: 140px 0 64px;
  background: var(--bg-soft);
}

.news-detail-breadcrumb {
  margin-bottom: 24px;
}

.news-detail-hero {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}

.news-detail-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.news-detail-card .news-detail-hero {
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.news-detail-header,
.news-detail-body,
.news-detail-body-image,
.news-share {
  padding: 0 32px;
}

.news-detail-header {
  padding-top: 24px;
}

.news-detail-hero img {
  width: 100%;
  display: block;
}

.news-detail-hero.is-cropped {
  aspect-ratio: 4 / 3;
}

.news-detail-hero.is-cropped img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail-header h1 {
  font-family: "Public Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 0 12px;
  color: #3d3d3d;
}

.news-detail-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #8b8b8b;
  margin: 0;
}

.news-detail-bajada {
  font-size: 15px;
  color: #5f5f5f;
  font-style: italic;
  margin: 6px 0 64px;
}

.news-detail-body {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a4a;
}

.news-detail-body p {
  margin: 0 0 18px;
}

.news-detail-body img {
  max-width: 100%;
  border-radius: 16px;
  margin: 16px 0;
}

.news-detail-body-image {
  margin: 32px 0;
}

.news-share {
  margin: 0;
  padding: 24px 32px 32px;
  background: #f3f3f4;
}

.news-detail-body-image + .news-share {
  margin-top: 40px;
}

.news-detail-body + .news-share {
  margin-top: 40px;
}

.news-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.news-share-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--brand-blue-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.news-share-link:hover {
  background: #eef8fb;
}

.news-share-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-share-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.news-share-icon svg.icon-outline {
  fill: none;
  stroke: currentColor;
}

.copy-feedback {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
