/* Social page */

.social-page {
  background: var(--color-white);
}

.social-hero {
  position: relative;
  background: var(--color-navy);
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
  overflow: hidden;
}

.social-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
  pointer-events: none;
}

.social-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 30% 10%, rgb(255 235 59 / 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgb(26 36 68 / 0.35) 0%, rgb(26 36 68 / 0.86) 70%, rgb(26 36 68 / 0.96) 100%);
}

.social-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.social-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.social-hero__lead {
  font-weight: 500;
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  line-height: 1.55;
  color: rgb(255 255 255 / 0.92);
  max-width: 85ch;
}

.social-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-blue-heading);
  margin-bottom: 0.75rem;
  text-align: left;
}

.social-section-title--on-dark {
  color: var(--color-white);
}

.social-subtitle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1b2a41;
  margin-bottom: 0.5rem;
}

.social-text {
  font-weight: 500;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: #2f3b4a;
}

.social-text--on-dark {
  color: rgb(255 255 255 / 0.9);
}

.social-text--center {
  text-align: center;
  max-width: 85ch;
  margin: 0 auto 1.25rem;
}

.social-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.92);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.social-demo,
.social-articles,
.social-help,
.social-disclaimer {
  padding-block: var(--section-pad);
}

.social-demo__head {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.social-bullets {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.25rem;
  color: #2f3b4a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.social-demo__frame {
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  overflow: hidden;
  background: #0c1630;
  box-shadow: 0 12px 36px rgb(14 113 181 / 0.14);
  aspect-ratio: 16 / 9;
}

.social-demo__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.social-articles__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  .social-articles__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.social-card {
  background: #e8f4fc;
  border: 1px solid rgb(14 113 181 / 0.12);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  height: 100%;
}

.social-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1b2a41;
  margin-bottom: 0.65rem;
}

.social-card__text {
  font-weight: 500;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: #2f3b4a;
  margin-bottom: 0.65rem;
}

.social-card__list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.25rem;
  color: #2f3b4a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.social-help__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.social-help {
  background: var(--color-navy);
}

.social-help .social-section-title {
  margin-bottom: 0.5rem;
}

.social-help__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  background: #0f1a3a;
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
}

.social-help__logo:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.social-help__logo:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

.social-help__logo img {
  max-height: 2.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.social-help__logo--age {
  background: var(--color-navy);
}

.social-disclaimer__box {
  background: #f5f8fc;
  border: 1px solid rgb(14 113 181 / 0.12);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  display: grid;
  gap: 0.65rem;
  color: #2f3b4a;
  font-weight: 500;
  line-height: 1.6;
}

.social-disclaimer__card {
  display: grid;
  gap: 0.85rem;
}

.social-disclaimer__list {
  padding-left: 1.15rem;
  display: grid;
  gap: 0.25rem;
  color: #2f3b4a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.social-disclaimer__small {
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  opacity: 0.9;
}

