/* ================================================================
   PAGE HERO (compact banner for inner pages)
   ================================================================ */
.pg-hero {
  padding-top: 80px;
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(26, 51, 85, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pg-hero__inner {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0 clamp(52px, 6vw, 72px);
}
.pg-hero__breadcrumb {
  font-family: var(--ff-en);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pg-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}
.pg-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.pg-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

/* ================================================================
   NEWS LIST
   ================================================================ */
.nwl {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.nwl__filters {
  position: sticky;
  top: 88px;
  z-index: 30;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 clamp(36px, 5vw, 56px);
  padding: 14px;
  border: 1px solid rgba(12, 26, 46, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(12, 26, 46, 0.06);
}

.nwl__filter {
  flex: 0 0 auto;
  appearance: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--navy);
  padding: 12px 18px;
  border: 1px solid rgba(12, 26, 46, 0.12);
  /* border-radius: 999px; */
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  white-space: nowrap;
}

.nwl__filter:hover,
.nwl__filter.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.nwl__list {
  max-width: 920px;
}
.nwl__item {
  display: grid;
  grid-template-columns: 130px auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: clamp(24px, 2.8vw, 32px) 0;
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.3s;
}
.nwl__item:first-child {
  border-top: 1px solid var(--gray-border);
}
.nwl__item:hover {
  background: rgba(12, 26, 46, 0.015);
  transform: translateY(-1px);
}
.nwl__link {
  display: contents;
  color: inherit;
}
.nwl__date {
  font-family: var(--ff-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-body);
}
.nwl__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--navy);
  padding: 4px 14px;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}
.nwl__tag--info {
  background: var(--navy-soft);
}
.nwl__tag--event {
  background: #3d6b5e;
}
.nwl__text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.75;
  font-weight: 400;
  transition: color 0.3s;
}
.nwl__fallback {
  padding: 32px;
  color: var(--text-body);
}
.nwl__item:hover .nwl__text {
  color: var(--navy);
}
.nwl__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 6vw, 72px);
}
.nwl__more-btn {
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--navy);
  padding: 18px 52px;
  border: 1px solid var(--navy);
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nwl__more-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* loader */
.nwl__loader {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(12, 26, 46, 0.12);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .nwl__filters {
    top: 72px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .nwl__filters::-webkit-scrollbar {
    display: none;
  }

  .nwl__item {
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
  }

  .nwl__text {
    grid-column: 1 / -1;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .nwl__filter {
    font-size: 11px;
    padding: 11px 14px;
  }

  .nwl__date {
    font-size: 14px;
  }

  .nwl__tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

.nwl__filters-wrap {
  position: sticky;
  top: 88px;
  z-index: 30;
  max-width: 920px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

