:root {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  background: #f4f5f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f5f7;
  color: #1a1a1a;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
}

.site-header {
  background: #000000;
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.brand-text {
  font-family: "Arial Black", "Impact", "Segoe UI Black", "Franklin Gothic Medium", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a,
.dropdown-toggle {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.site-nav a.active,
.site-nav a:hover,
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: #ffe000;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #d7dce1;
  border-radius: 0;
  box-shadow: 0 18px 35px rgba(18, 35, 79, 0.12);
  padding: 0.5rem 0;
  z-index: 12;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 1rem;
  color: #10203b;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f4f5f7;
}

.breadcrumb-bar {
  background: #f4f5f7;
  border-bottom: 1px solid #d7dce1;
}

.breadcrumb-inner {
  padding: 1rem 0;
}

.breadcrumb {
  font-size: 0.95rem;
  color: #4d5460;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb a {
  color: #1a1a1a;
  text-decoration: none;
}

.breadcrumb span {
  color: #4d5460;
}

.main-content {
  padding: 2.5rem 0 3rem;
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e1e6ed;
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(18, 35, 79, 0.08);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: #eef6ff;
  color: #0047b3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 3.5vw, 3.6rem);
  color: #0f1f3d;
}

.hero-description {
  margin: 0;
  color: #42506f;
  max-width: 48rem;
}

.secondary-button {
  min-width: 170px;
  padding: 0.95rem 1.4rem;
  border-radius: 0;
  border: 1px solid #0047b3;
  background: #ffffff;
  color: #0047b3;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-1px);
  background: #eef6ff;
}

.page-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.page-head h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: #10203b;
}

.search-form {
  display: grid;
  gap: 0.75rem;
}

.search-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: #10203b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.search-form input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid #d7dce1;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(18, 35, 79, 0.06);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  box-shadow: 0 18px 35px rgba(18, 35, 79, 0.06);
}

.empty-state.is-visible {
  display: block;
}

.info-text {
  margin: 0;
  color: #4d5460;
  font-size: 1rem;
  line-height: 1.8;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border: 1px solid #e1e6ed;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(18, 35, 79, 0.06);
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: #eef6ff;
  color: #0047b3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-date {
  color: #64748b;
  font-size: 0.9rem;
}

.news-card h3 {
  margin: 0;
  color: #10203b;
  font-size: 1.2rem;
}

.news-card p {
  margin: 0;
  color: #4d5460;
  line-height: 1.75;
}

.open-news-btn {
  align-self: flex-start;
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.7rem 1rem;
  border: 1px solid #0047b3;
  background: #ffffff;
  color: #0047b3;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.open-news-btn:hover {
  background: #eef6ff;
}

.back-link {
  color: #0047b3;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}

.news-detail-card {
  margin-bottom: 1.5rem;
}

.news-detail-date {
  margin-top: 1rem;
  color: #64748b;
  font-weight: 700;
}

.info-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  box-shadow: 0 16px 32px rgba(18, 35, 79, 0.06);
}

.info-card h2 {
  margin: 0 0 0.7rem;
  color: #10203b;
  font-size: 1.2rem;
}

.info-card p {
  margin: 0;
  color: #42506f;
  line-height: 1.75;
}

.news-article {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  box-shadow: 0 16px 32px rgba(18, 35, 79, 0.06);
}

.news-article p {
  margin: 0 0 1rem;
  color: #42506f;
  line-height: 1.9;
  font-size: 1rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding-top: 0.5rem;
  color: #c7c7c7;
  font-size: 0.95rem;
}

.footer-attribution {
  margin: 0;
  color: #c7c7c7;
  font-size: 0.95rem;
}

.footer-copy,
.footer-version {
  margin: 0.35rem 0 0;
  color: #8f99a7;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .page-head {
    grid-template-columns: 1fr;
  }

  .hero-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-stack,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    padding: 0.85rem 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .brand {
    width: 100%;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .site-nav a,
  .dropdown-toggle {
    font-size: 0.82rem;
  }

  .dropdown-menu {
    left: 0;
    right: auto;
    min-width: min(220px, calc(100vw - 1.25rem));
  }

  .main-content {
    padding: 1.25rem 0 2rem;
  }

  .hero-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 6vw, 2.45rem);
  }

  .hero-description,
  .page-subtitle,
  .news-card p,
  .info-card p,
  .news-article p {
    font-size: 0.95rem;
  }

  .page-head h2 {
    font-size: 1.5rem;
  }

  .search-form {
    gap: 0.6rem;
  }

  .search-form input {
    padding: 0.9rem 1rem;
  }

  .news-card,
  .info-card,
  .news-article {
    padding: 1.1rem;
  }

  .news-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .open-news-btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .secondary-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 2.4rem;
    height: 2.4rem;
  }

  .brand-text {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .hero-copy .eyebrow {
    font-size: 0.72rem;
  }

  .news-pill {
    font-size: 0.72rem;
  }
}
