/**
 * Site-wide — premium section headers + compact spacing (all pages)
 */

/* ── Shared premium header block ── */
body .section__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 20px 4px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  position: relative;
}

body .section__header .header-icon {
  width: 78px;
  height: 78px;
  margin: 0 0 16px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #5a91dc 0%, #3bb23c 58%, #9ed44a 100%);
  box-shadow:
    0 14px 36px rgba(66, 124, 208, 0.24),
    0 4px 12px rgba(59, 178, 60, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body .section__header .header-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--brand-blue, #427cd0), var(--brand-green, #3bb23c), var(--brand-yellow, #feb91e), var(--brand-blue, #427cd0));
  z-index: -1;
  opacity: 0.28;
  filter: blur(0.5px);
  animation: mopdicHeaderIconSpin 8s linear infinite;
}

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

body .section__header:hover .header-icon::before {
  opacity: 0.55;
}

body .section__header:hover .header-icon {
  transform: scale(1.05);
}

body .section__header .header-icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45), transparent 55%);
  pointer-events: none;
}

body .section__header .header-icon i {
  font-size: 31px;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  filter: drop-shadow(0 2px 5px rgba(15, 23, 42, 0.22));
  position: relative;
  z-index: 1;
}

body .section__header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3.2px;
  padding: 8px 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-green-dark, #2d8f30);
  background: linear-gradient(135deg, rgba(59, 178, 60, 0.14), rgba(66, 124, 208, 0.1));
  border: 1px solid rgba(59, 178, 60, 0.22);
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(59, 178, 60, 0.1);
}

body .section__header .eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-green, #3bb23c);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
  box-shadow: 0 0 8px var(--brand-green, #3bb23c);
}

body .section__header h2 {
  display: block;
  width: 100%;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(135deg, var(--brand-green-dark, #2d8f30) 0%, var(--brand-blue, #427cd0) 50%, var(--brand-green-dark, #2d8f30) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

body .section__header h2::after {
  content: '';
  display: block;
  width: 92px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--brand-blue, #427cd0) 0%, var(--brand-blue, #427cd0) 48%, var(--brand-green, #3bb23c) 52%, var(--brand-green, #3bb23c) 100%);
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(66, 124, 208, 0.22);
}

body .section__header p {
  color: var(--text-gray, #64748b);
  font-size: 1rem;
  max-width: 620px;
  margin: 4px auto 0;
  line-height: 1.75;
}

/* ── News page sections — compact spacing ── */
body .news-section-block {
  padding: 8px 0 28px !important;
}

body .news-section-block--press {
  padding: 8px 0 48px !important;
}

body #news-section {
  padding-top: 8px !important;
}

body .news-jump-nav {
  margin-bottom: 4px !important;
}

/* ── Section accent colors ── */
body .video-section .section__header .header-icon {
  background: linear-gradient(145deg, #6366f1, #427cd0 55%, #3266b5);
}

body .video-section .section__header .eyebrow {
  color: #3266b5;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(66, 124, 208, 0.08));
  border-color: rgba(66, 124, 208, 0.2);
}

body .press-section .section__header .header-icon,
body #press-release .section__header .header-icon {
  background: linear-gradient(145deg, #427cd0, #3266b5 55%, #2855a0);
}

body .press-section .section__header .eyebrow,
body #press-release .section__header .eyebrow {
  color: #2855a0;
  background: linear-gradient(135deg, rgba(66, 124, 208, 0.12), rgba(66, 124, 208, 0.06));
  border-color: rgba(66, 124, 208, 0.2);
}

body #news-section .section__header .header-icon,
body .news-articles-section .section__header .header-icon {
  background: linear-gradient(145deg, #4ade80, #3bb23c 55%, #2d8f30);
}

body #news-section .section__header .eyebrow,
body .news-articles-section .section__header .eyebrow {
  color: var(--brand-green-dark, #2d8f30);
}

@media (max-width: 768px) {
  body .section__header {
    margin-bottom: 18px;
    padding: 0 16px 2px;
  }

  body .section__header .header-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 12px;
  }

  body .section__header .header-icon i {
    font-size: 26px;
  }

  body .section__header h2 {
    font-size: 1.45rem;
  }

  body .news-section-block {
    padding: 6px 0 22px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .section__header .header-icon::before {
    animation: none;
  }
}
