/* ==========================================================
   COMPONENTS — Nav, Footer, Buttons, Cards, Shared Patterns
   ========================================================== */

/* ============================================================
   SITE NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(7, 19, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--dur) var(--ease);
}
.site-nav .container { height: 100%; }
.site-nav.scrolled { box-shadow: var(--shadow-xl); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo__mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.nav-logo__text {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo__text em {
  display: block;
  font-style: normal;
  color: var(--red-light);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-2);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
  gap: 4px;
}
.nav-dropdown > .nav-link svg {
  width: 12px; height: 12px; opacity: 0.6;
  transition: transform var(--dur) var(--ease);
}
.nav-dropdown:hover > .nav-link svg,
.nav-dropdown:focus-within > .nav-link svg {
  transform: rotate(180deg); opacity: 1;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  bottom: 100%; left: 0; right: 0;
  height: 16px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--dur-fast), color var(--dur-fast), padding-left var(--dur-fast);
}
.nav-dropdown__item:last-child { border-bottom: none; }
.nav-dropdown__item svg {
  width: 14px; height: 14px; color: var(--red); flex-shrink: 0;
}
.nav-dropdown__item:hover {
  background: var(--gray-50);
  color: var(--red);
  padding-left: var(--sp-6);
}

/* CTA */
.nav-cta { flex-shrink: 0; }

/* Toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: var(--sp-8) var(--gutter) var(--sp-20);
    gap: var(--sp-5);
    overflow-y: auto;
  }
  .nav-cta.open {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: var(--sp-4) var(--gutter);
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-link { font-size: var(--text-md); }

  .nav-dropdown__menu {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.05);
    min-width: unset;
    width: 100%;
    margin-top: var(--sp-2);
    border-left: 2px solid var(--red);
    padding: var(--sp-2) 0;
  }
  .nav-dropdown__item {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.06);
  }
  .nav-dropdown__item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px var(--sp-8);
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover svg.arrow-right { transform: translateX(3px); }

/* Primary — Red fill */
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

/* Secondary — white outline */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Navy fill */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Outline Navy */
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Sizes */
.btn--sm { padding: 10px var(--sp-5); font-size: calc(var(--text-xs) * 0.95); }
.btn--lg { padding: 18px var(--sp-10); font-size: var(--text-sm); }
.btn--full { width: 100%; justify-content: center; }
.btn--disabled, .btn[disabled] { opacity: 0.45; pointer-events: none; cursor: not-allowed; }

.btn-group {
  display: flex; align-items: center;
  gap: var(--sp-4); flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--sp-12)) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(177,14,46,0.07) 100%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: var(--sp-3);
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: var(--text-4xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  max-width: 640px;
}
.page-hero__lead {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 540px;
}
.page-hero__actions { margin-top: var(--sp-8); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-8);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }
.breadcrumb__current { color: var(--red-light); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--sp-8);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Stat card */
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  padding: var(--sp-6) var(--sp-8);
}
.stat-card__number {
  font-family: var(--font-head);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: var(--sp-2);
}
.stat-card__number .accent { color: var(--red); }
.stat-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: var(--sp-2);
}
.stat-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.6;
}

/* Icon card */
.icon-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--sp-8);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.icon-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.icon-card__icon {
  width: 48px; height: 48px;
  color: var(--red);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.icon-card__title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.icon-card__body {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.7;
}

/* Story card */
.story-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.story-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.story-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.story-card:hover .story-card__image img { transform: scale(1.04); }

.story-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.story-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-2);
}
.story-card__title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}
.story-card__excerpt {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.story-card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--dur) var(--ease);
}
.story-card__link:hover { gap: var(--sp-3); }

/* Event card */
.event-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--navy);
  transition: border-left-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.event-card:hover {
  border-left-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.event-card__date {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  flex-shrink: 0;
}
.event-card__day {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.event-card__month {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  display: block;
  margin-top: 2px;
}
.event-card__title {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.event-card__meta {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-wrap: wrap; margin-bottom: var(--sp-3);
}
.event-card__meta-item {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.event-card__meta-item svg { width: 13px; height: 13px; color: var(--red); }
.event-card__desc { font-size: var(--text-sm); color: var(--gray-700); line-height: 1.65; }
.event-card__action { align-self: center; }

@media (max-width: 640px) {
  .event-card { grid-template-columns: 64px 1fr; }
  .event-card__action { grid-column: 2; }
}

/* ============================================================
   1-IN-4 FIGURE SYSTEM
   ============================================================ */
.one-four {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-4);
}
.one-four__figure { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.one-four__icon { width: 56px; height: 80px; color: rgba(11,29,58,0.18); transition: color var(--dur) var(--ease); }
.one-four__figure--on .one-four__icon { color: var(--red); }
.one-four__num {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.one-four__figure--on .one-four__num { color: var(--red); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: var(--sp-16);
}
.footer-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-brand__logo { height: 52px; width: auto; margin-bottom: var(--sp-5); }
.footer-brand__strap {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--sp-4);
}
.footer-brand__strap span { color: var(--red-light); }
.footer-brand__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  max-width: 300px;
}

/* Footer column */
.footer-col__heading {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.52);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer-col__link:hover { color: var(--white); padding-left: 6px; }

/* Social */
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social__link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.52);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.footer-social__link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-social__link svg { width: 16px; height: 16px; }

/* Footer bottom */
.footer-bottom {
  padding-block: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.footer-bottom__links { display: flex; gap: var(--sp-6); }
.footer-bottom__link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color var(--dur-fast);
}
.footer-bottom__link:hover { color: var(--white); }

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ============================================================
   RESOURCE SIDEBAR NAV (Resources pages)
   ============================================================ */
.resource-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.resource-nav {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.resource-nav__heading {
  background: var(--navy);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.resource-nav__item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--dur-fast), color var(--dur-fast), border-left var(--dur-fast);
  border-left: 3px solid transparent;
}
.resource-nav__item:last-child { border-bottom: none; }
.resource-nav__item svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }
.resource-nav__item:hover,
.resource-nav__item.active {
  background: var(--gray-50);
  color: var(--red);
  border-left-color: var(--red);
}
.resource-nav__item:hover svg,
.resource-nav__item.active svg { color: var(--red); }

.resource-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 3px solid var(--red);
}
.resource-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--navy);
}
.resource-content h4 {
  font-size: var(--text-lg);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
}
.resource-content p {
  margin-bottom: var(--sp-4);
  font-size: var(--text-base);
  line-height: 1.8;
}
.resource-content ul,
.resource-content ol {
  margin: var(--sp-4) 0 var(--sp-6) var(--sp-6);
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.resource-content ol { list-style: decimal; }
.resource-content li {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.7;
}
.resource-content strong { color: var(--navy); }

@media (max-width: 900px) {
  .resource-layout { grid-template-columns: 1fr; }
  .resource-nav { position: static; }
}

/* ============================================================
   INLINE HIGHLIGHT / CALLOUT
   ============================================================ */
.callout {
  background: var(--off-white);
  border-left: 4px solid var(--red);
  padding: var(--sp-5) var(--sp-6);
  margin-block: var(--sp-6);
}
.callout--navy {
  background: var(--navy);
  border-left-color: var(--red);
}
.callout--navy p { color: rgba(255,255,255,0.8); }
.callout p { margin-bottom: 0; font-size: var(--text-md); }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-ph {
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gray-400);
  overflow: hidden;
}
.img-ph svg { width: 40px; height: 40px; }
.img-ph__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   TEAM CARD
   ============================================================ */
.team-card { text-align: center; }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--sp-4);
  background: var(--gray-100);
  overflow: hidden;
  border: 3px solid var(--gray-200);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.team-card__role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================
   SHARED SIDEBAR WIDGETS
   ========================================================== */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: var(--sp-6);
  overflow: hidden;
}
.sidebar-widget__head {
  background: var(--navy);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.sidebar-widget__body { padding: var(--sp-5); }
.sidebar-widget__body p { font-size: var(--text-sm); line-height: 1.7; }
.sidebar-widget__body .btn { margin-top: var(--sp-4); }

/* Tag list (categories, filters) */
.tag-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.tag:hover, .tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
