.navbar-solid {
  background: linear-gradient(180deg, rgba(6, 9, 14, .97) 0%, rgba(4, 11, 14, .96) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.social-page {
  overflow-x: clip;
  background: #eef7f6;
}

.social-hero {
  padding: calc(var(--nav-h) + 52px) 0 72px;
  color: var(--white);
  background:
    radial-gradient(1000px 420px at 12% -20%, rgba(98, 197, 188, .28), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(68, 183, 173, .18), transparent 55%),
    linear-gradient(180deg, #03100f 0%, #081f1c 100%);
}

.social-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.social-hero .section-label {
  margin-bottom: 14px;
}

.social-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}

.social-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  line-height: 1.82;
}

.social-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-feed-section {
  padding: 56px 0 88px;
  background:
    radial-gradient(900px 360px at 50% 0%, rgba(98, 197, 188, .12), transparent 55%),
    linear-gradient(180deg, #dff2f0 0%, #eef7f6 40%, #f5faf9 100%);
}

.social-section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-section-head .section-label {
  margin-bottom: 12px;
}

.social-section-head .section-title {
  margin-bottom: 12px;
  line-height: 1.2;
  overflow: visible;
}

.social-section-head .section-desc {
  margin: 0 auto;
  max-width: 560px;
  color: var(--n-600);
}

.social-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 34px;
  padding: 6px;
  max-width: 460px;
  background: rgba(255, 255, 255, .72);
  border: 1.5px solid #d4ece8;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(14, 55, 50, .06);
}

.social-tab {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--t800);
  background: transparent;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.social-tab:hover {
  background: rgba(98, 197, 188, .12);
}

.social-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--t600), var(--t500));
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(68, 183, 173, .28);
}

.social-tab-panel {
  display: none;
}

.social-tab-panel.is-active {
  display: block;
}

.social-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 504px));
  justify-content: center;
  gap: 22px;
  width: 100%;
}

/* ── Post card (copy this block to add a new post) ── */
.social-post {
  width: 100%;
  max-width: 504px;
  margin: 0 auto;
}

.social-post-card {
  background: #ffffff;
  border: 1.5px solid #d4ece8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 55, 50, .08);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.social-post-card:hover {
  transform: translateY(-4px);
  border-color: #8fd6cf;
  box-shadow: 0 16px 38px rgba(14, 55, 50, .12);
}

.social-post-embed {
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
  line-height: 0;
}

.social-post-embed iframe {
  width: 100%;
  max-width: 100%;
  height: 670px;
  border: 0;
  display: block;
}

.social-feed-cta {
  margin-top: 42px;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
  border: 1.5px solid #d4ece8;
  border-radius: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.social-feed-cta p {
  color: var(--n-600);
  font-size: .95rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .social-feed {
    grid-template-columns: minmax(0, 504px);
  }
}

@media (max-width: 768px) {
  .social-hero {
    padding: calc(var(--nav-h) + 34px) 0 48px;
  }

  .social-feed-section {
    padding: 36px 0 64px;
  }

  .social-section-head {
    margin-bottom: 28px;
  }

  .social-tabs {
    max-width: 100%;
    border-radius: 16px;
    gap: 8px;
    margin-bottom: 24px;
  }

  .social-tab {
    min-width: 0;
    font-size: .72rem;
    padding: 10px 14px;
  }

  .social-feed {
    gap: 16px;
  }

  .social-post-card {
    border-radius: 14px;
  }

  .social-post-embed iframe {
    height: min(670px, 85vh);
  }

  .social-feed-cta {
    margin-top: 28px;
    padding: 22px 18px;
  }
}

@media (max-width: 540px) {
  .social-post-embed iframe {
    height: 620px;
  }
}
