/* ── Health blog hub ── */
.health-hub {
  background: linear-gradient(180deg, #f4fafb 0%, #fff 35%);
}

.health-hub-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  background: linear-gradient(135deg, #0d4f5c 0%, #1aa8b6 55%, #2ec4d4 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.health-hub-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.health-hub-hero h1 {
  margin: 0.6rem 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.35;
}

.health-hub-hero__copy p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.85;
  opacity: 0.92;
  font-size: 1.05rem;
}

.health-hub-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.health-hub-hero__stats strong {
  display: block;
  font-size: 1.35rem;
  color: #ffe9a8;
}

.health-hub-hero__visual {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.health-hub-hero__orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.health-hub-hero__orb--1 {
  width: 140px;
  height: 140px;
  animation: health-pulse 4s ease-in-out infinite;
}

.health-hub-hero__orb--2 {
  width: 100px;
  height: 100px;
  animation: health-pulse 4s ease-in-out infinite 1s;
}

.health-hub-hero__icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

@keyframes health-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.health-hub-body {
  padding: 2rem 0 3rem;
}

.health-callout--blog {
  background: linear-gradient(135deg, #c62828, #e53935);
  margin-bottom: 2rem;
}

.health-hub-section-head {
  margin: 2.5rem 0 1.25rem;
}

.health-hub-section-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.health-hub-section-head p {
  margin: 0;
  color: #5a7a8a;
}

/* Featured article */
.health-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e0eef2;
  box-shadow: 0 20px 48px rgba(8, 72, 96, 0.1);
  margin-bottom: 2rem;
}

.health-featured__visual {
  position: relative;
  min-height: 280px;
  background: #edf3f6;
}

.health-featured__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.health-featured__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #1a2a32;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.health-featured__body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.health-featured__body h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.45;
}

.health-featured__body h2 a {
  color: var(--ink, #1a2a32);
  text-decoration: none;
}

.health-featured__body h2 a:hover {
  color: var(--teal, #1aa8b6);
}

.health-featured__body > p {
  margin: 0;
  color: #527184;
  line-height: 1.85;
  flex: 1;
}

.health-featured__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #7a96a6;
}

.health-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* Filters */
.health-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.health-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d8e8ed;
  border-radius: 999px;
  background: #fff;
  color: #3d5a68;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.health-filter:hover {
  border-color: var(--teal, #1aa8b6);
  color: var(--teal-deep, #0d4f5c);
}

.health-filter.is-active {
  background: var(--teal, #1aa8b6);
  border-color: var(--teal, #1aa8b6);
  color: #fff;
}

/* Article cards grid */
.health-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.health-article-card {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.health-article-card.is-hidden {
  display: none;
}

.health-article-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 28px rgba(8, 72, 96, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.health-article-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 72, 96, 0.12);
}

.health-article-card__visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #edf3f6;
}

.health-article-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.health-article-card__link:hover .health-article-card__visual img {
  transform: scale(1.04);
}

.health-article-card__chip {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--teal-deep, #0d4f5c);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.health-article-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}

.health-article-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink, #1a2a32);
}

.health-article-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a7a8a;
  line-height: 1.75;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.health-article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8aa4b2;
  margin-top: 0.35rem;
}

.health-article-card__read {
  color: var(--teal, #1aa8b6);
  font-weight: 800;
}

/* FAQ section */
.health-faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #fff 0%, #f0f7f9 100%);
  border-top: 1px solid #e5f0f3;
}

.health-faq__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.health-faq__head h2 {
  margin: 0.6rem 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.health-faq__head p {
  margin: 0;
  color: #5a7a8a;
  line-height: 1.8;
}

.health-faq__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.health-faq__aside {
  position: sticky;
  top: 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid #e0eef2;
  box-shadow: 0 12px 32px rgba(8, 72, 96, 0.06);
}

.health-faq__cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f5f7;
}

.health-faq__cat:last-of-type {
  border-bottom: none;
}

.health-faq__cat-icon {
  font-size: 1.35rem;
  width: 2.25rem;
  text-align: center;
}

.health-faq__cat strong {
  display: block;
  font-size: 0.9rem;
}

.health-faq__cat span {
  font-size: 0.78rem;
  color: #8aa4b2;
}

.health-faq__cta {
  display: block;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #0d4f5c, #1aa8b6);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

.health-faq__cta:hover {
  opacity: 0.92;
}

.health-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.health-faq__item {
  background: #fff;
  border: 1px solid #e5f0f3;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.health-faq__item[open] {
  border-color: rgba(26, 168, 182, 0.35);
  box-shadow: 0 10px 28px rgba(8, 72, 96, 0.08);
}

.health-faq__item summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink, #1a2a32);
  line-height: 1.5;
}

.health-faq__item summary::-webkit-details-marker {
  display: none;
}

.health-faq__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal, #1aa8b6);
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.health-faq__tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #7a96a6;
  white-space: nowrap;
  display: none;
}

.health-faq__toggle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #edf3f6;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease;
}

.health-faq__toggle::before,
.health-faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--teal, #1aa8b6);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.health-faq__toggle::before {
  width: 10px;
  height: 2px;
}

.health-faq__toggle::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.2s ease, height 0.2s ease;
}

.health-faq__item[open] .health-faq__toggle {
  background: var(--teal, #1aa8b6);
  transform: rotate(180deg);
}

.health-faq__item[open] .health-faq__toggle::before,
.health-faq__item[open] .health-faq__toggle::after {
  background: #fff;
}

.health-faq__item[open] .health-faq__toggle::after {
  opacity: 0;
  height: 0;
}

.health-faq__answer {
  padding: 0 1.15rem 1.15rem 3.5rem;
}

.health-faq__answer p {
  margin: 0;
  color: #527184;
  line-height: 1.9;
  font-size: 0.95rem;
}

/* Single article page */
.health-article {
  padding: 2rem 0 4rem;
  background: #fafcfd;
}

.health-article__wrap {
  max-width: 760px;
}

.health-article__back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--teal-deep, #0d4f5c);
  font-weight: 800;
  text-decoration: none;
}

.health-article__header h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  line-height: 1.4;
}

.health-article__excerpt {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #527184;
  line-height: 1.85;
}

.health-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8aa4b2;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5f0f3;
}

.health-article__hero {
  margin: 1.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 72, 96, 0.1);
}

.health-article__hero img {
  width: 100%;
  display: block;
  height: auto;
}

.health-article__section {
  margin-bottom: 1.75rem;
}

.health-article__section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--teal-deep, #0d4f5c);
}

.health-article__section p {
  margin: 0 0 0.85rem;
  line-height: 1.95;
  color: #3d5563;
}

.health-article__takeaways {
  background: linear-gradient(135deg, rgba(26, 168, 182, 0.08), rgba(212, 175, 55, 0.08));
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin: 2rem 0;
  border-right: 4px solid var(--teal, #1aa8b6);
}

.health-article__takeaways h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.health-article__takeaways ul {
  margin: 0;
  padding: 0 1.25rem 0 0;
}

.health-article__takeaways li {
  margin-bottom: 0.45rem;
  line-height: 1.75;
  color: #3d5563;
}

.health-article__alert {
  background: #fff5f5;
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
}

.health-article__alert h3 {
  margin: 0 0 0.75rem;
  color: #c62828;
  font-size: 1.05rem;
}

.health-article__alert ul {
  margin: 0;
  padding: 0 1.25rem 0 0;
}

.health-article__alert li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
  color: #5d3a3a;
}

.health-article__disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5f0f3;
  text-align: center;
}

.health-article__disclaimer p {
  margin: 0 0 1rem;
  color: #5a7a8a;
  line-height: 1.85;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .health-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-faq__layout {
    grid-template-columns: 1fr;
  }

  .health-faq__aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
  }

  .health-faq__cat {
    border-bottom: none;
    background: #f6fafb;
    border-radius: 10px;
    padding: 0.65rem;
  }

  .health-faq__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .health-hub-hero__inner {
    grid-template-columns: 1fr;
  }

  .health-hub-hero__visual {
    display: none;
  }

  .health-featured {
    grid-template-columns: 1fr;
  }

  .health-featured__visual {
    min-height: 200px;
  }

  .health-articles-grid {
    grid-template-columns: 1fr;
  }

  .health-faq__item summary {
    grid-template-columns: auto 1fr auto;
  }

  .health-faq__tag {
    display: none;
  }

  .health-faq__answer {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }
}
