/* =====================================================================
   DocClix "Your Health Questions, Answered by Doctors"
   DocClix Official Theme Palette (#23939E Teal, #F8F6F1 Warm Canvas)
   Scoped under .dc-home.dc-hq-page
   ===================================================================== */

:root {
  --dc-hq-teal: #23939E;
  --dc-hq-teal-dark: #1A6E77;
  --dc-hq-teal-light: #E6F4F5;
  --dc-hq-teal-tint: #F3FAF9;
  --dc-hq-ink: #0F0F0D;
  --dc-hq-ink2: #3D3D39;
  --dc-hq-ink3: #7A7A74;
  --dc-hq-bg: #F8F6F1;
  --dc-hq-border: #E5E2DB;
  --dc-hq-surface: #FFFFFF;
  --dc-hq-success: #15803D;
  --dc-hq-success-bg: #DCFCE7;
  --dc-hq-accent: #E8A83A;
  --dc-hq-accent-light: #FDF4E3;
}

.dc-hq-page {
  background: var(--dc-hq-bg);
  min-height: 100vh;
  color: var(--dc-hq-ink);
  font-family: 'Bricolage Grotesque', 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────────────────────────────
   1. HERO SECTION (DocClix Brand Theme)
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-hero-section {
  background: linear-gradient(180deg, #E6F4F5 0%, #F4F9F9 50%, var(--dc-hq-bg) 100%);
  padding: 56px 24px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--dc-hq-border);
}

.dc-hq-hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Left Hero Content */
.dc-hq-hero-left {
  display: flex;
  flex-direction: column;
}

.dc-hq-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dc-hq-teal-light);
  border: 1px solid #B8DDD8;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-hq-teal);
  width: fit-content;
  margin-bottom: 18px;
}
.dc-hq-check-icon {
  font-weight: 700;
  font-size: 13px;
}

.dc-hq-hero-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.16;
  font-weight: 400;
  color: var(--dc-hq-ink);
  letter-spacing: -0.6px;
  margin: 0 0 16px;
}
.dc-hq-teal-text,
.dc-hq-blue-text {
  font-style: italic;
  color: var(--dc-hq-teal);
  font-weight: 600;
}

.dc-hq-hero-sub {
  font-size: 16.5px;
  color: var(--dc-hq-ink2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 28px;
}

/* Big Search Bar */
.dc-hq-hero-search {
  max-width: 540px;
  margin-bottom: 16px;
}
.dc-hq-search-wrapper {
  background: var(--dc-hq-surface);
  border: 1.5px solid var(--dc-hq-border);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 10px 30px rgba(35, 147, 158, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease;
}
.dc-hq-search-wrapper:focus-within {
  border-color: var(--dc-hq-teal);
  box-shadow: 0 12px 36px rgba(35, 147, 158, 0.18);
}
.dc-hq-search-icon {
  font-size: 22px;
  color: var(--dc-hq-teal);
  flex-shrink: 0;
}
.dc-hq-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--dc-hq-ink);
  outline: none;
  padding: 8px 0;
}
.dc-hq-search-input::placeholder {
  color: var(--dc-hq-ink3);
}
.dc-hq-search-btn {
  background: var(--dc-hq-teal);
  color: #FFFFFF;
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
  flex-shrink: 0;
}
.dc-hq-search-btn:hover {
  background: var(--dc-hq-teal-dark);
}
.dc-hq-search-btn:active {
  transform: scale(0.98);
}

/* Popular Searches */
.dc-hq-popular-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.dc-hq-popular-label {
  color: var(--dc-hq-ink3);
}
.dc-hq-popular-chip {
  background: transparent;
  border: none;
  color: var(--dc-hq-teal);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all .15s ease;
}
.dc-hq-popular-chip:hover {
  background: var(--dc-hq-teal-light);
  text-decoration: underline;
}

/* Right Hero Visual (Floating Cards) */
.dc-hq-hero-right {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-hq-card-float-bg {
  width: 320px;
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1;
}

.dc-hq-avatar-dr-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 1.5px solid #B8DDD8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dc-hq-avatar-dr {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dc-hq-teal-light, #E6F4F5);
  color: var(--dc-hq-teal-dark, #1A6E77);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1.5px solid #B8DDD8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dc-hq-float-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dc-hq-ink);
  margin-bottom: 6px;
}

.dc-hq-float-sub {
  font-size: 12.5px;
  color: var(--dc-hq-ink3);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dc-hq-badge-verified-green {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--dc-hq-success-bg);
  color: var(--dc-hq-success);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.dc-hq-card-float-fg {
  width: 310px;
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 24px 50px rgba(35, 147, 158, 0.12);
  position: absolute;
  top: 140px;
  right: 15px;
  z-index: 2;
  transition: transform .25s ease;
}
.dc-hq-card-float-fg:hover {
  transform: translateY(-4px);
}

.dc-hq-fg-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  margin-bottom: 8px;
}

.dc-hq-fg-question {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dc-hq-ink);
  line-height: 1.4;
  margin-bottom: 14px;
}

.dc-hq-fg-attribution {
  border-top: 1px solid var(--dc-hq-border);
  padding-top: 10px;
  font-size: 12px;
  color: var(--dc-hq-ink3);
  display: flex;
  align-items: center;
  gap: 4px;
}
.dc-hq-fg-attribution strong {
  color: var(--dc-hq-ink2);
}

/* ─────────────────────────────────────────────────────────────────────
   2. STATS BAR (DocClix Theme)
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-stats-section {
  max-width: 1220px;
  margin: -32px auto 60px;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.dc-hq-stats-card {
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 20px;
}

.dc-hq-stat-box {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--dc-hq-border);
}
.dc-hq-stat-box:last-child {
  border-right: none;
}

.dc-hq-stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--dc-hq-teal);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.dc-hq-stat-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dc-hq-ink3);
}

/* ─────────────────────────────────────────────────────────────────────
   3. EXPLORE BY SPECIALTY (DocClix Theme)
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-specialty-section {
  max-width: 1220px;
  margin: 0 auto 72px;
  padding: 0 24px;
}

.dc-hq-section-head {
  text-align: center;
  margin-bottom: 36px;
}

.dc-hq-section-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dc-hq-ink);
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.dc-hq-section-sub {
  font-size: 15px;
  color: var(--dc-hq-ink3);
  margin: 0;
}

.dc-hq-specialties-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.dc-hq-specialty-card {
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.015);
  text-decoration: none;
  color: inherit;
}
.dc-hq-specialty-card:hover {
  border-color: var(--dc-hq-teal);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(35, 147, 158, 0.1);
}
.dc-hq-specialty-card.is-selected {
  border-color: var(--dc-hq-teal);
  background: var(--dc-hq-teal-tint);
  box-shadow: 0 4px 14px rgba(35, 147, 158, 0.14);
}

.dc-hq-spec-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--dc-hq-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.dc-hq-spec-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dc-hq-ink);
  margin-bottom: 4px;
}

.dc-hq-spec-sub {
  font-size: 11.5px;
  color: var(--dc-hq-ink3);
}

/* ─────────────────────────────────────────────────────────────────────
   4. TRENDING HEALTH QUESTIONS & SIDEBAR
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-trending-section {
  max-width: 1220px;
  margin: 0 auto 76px;
  padding: 0 24px;
}

.dc-hq-trending-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.dc-hq-trending-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dc-hq-ink);
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}

.dc-hq-trending-sub {
  font-size: 15px;
  color: var(--dc-hq-ink3);
  margin: 0;
}

.dc-hq-view-all-btn {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap .2s ease;
}
.dc-hq-view-all-btn:hover {
  gap: 8px;
  color: var(--dc-hq-teal-dark);
  text-decoration: underline;
}

/* 2-Column Layout (Cards on Left + Sidebar on Right) */
.dc-hq-trending-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── Left Column: Question Cards ── */
.dc-hq-main-col {
  display: flex;
  flex-direction: column;
}

#hqCardsList {
  display: flex;
  flex-direction: column;
  gap: 24px; /* Distinct 24px spacing between question cards */
}

.dc-hq-trend-card {
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.dc-hq-trend-card:hover {
  border-color: var(--dc-hq-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 147, 158, 0.1);
}
#hqCardsList .dc-hq-trend-card.is-hidden,
.dc-hq-trend-card.is-hidden {
  display: none !important;
}

/* Top Meta Row */
.dc-hq-trend-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dc-hq-badge-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  background: var(--dc-hq-teal-light);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.02em;
}

.dc-hq-answered-ago {
  font-size: 12.5px;
  color: var(--dc-hq-ink3);
}

/* Question Title */
.dc-hq-trend-question {
  font-family: 'Literata', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--dc-hq-ink);
  line-height: 1.38;
  margin: 0 0 8px;
}

/* Question / Answer Snippet */
.dc-hq-trend-snippet {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dc-hq-ink2);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expandable Full Answer Block */
.dc-hq-full-answer {
  display: none;
  background: var(--dc-hq-teal-tint);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
  border-left: 3px solid var(--dc-hq-teal);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dc-hq-ink2);
}
.dc-hq-full-answer.is-expanded {
  display: block;
  animation: dcHqFadeIn .2s ease-in;
}

@keyframes dcHqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Attribution Bar */
.dc-hq-trend-attribution {
  border-top: 1px solid var(--dc-hq-border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dc-hq-doc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-hq-doc-circle-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--dc-hq-surface);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.dc-hq-doc-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dc-hq-teal-light, #E6F4F5);
  color: var(--dc-hq-teal-dark, #1A6E77);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #B8DDD8;
}

.dc-hq-doc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dc-hq-doc-name-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--dc-hq-ink);
}

.dc-hq-doc-spec-text {
  font-size: 12px;
  color: var(--dc-hq-ink3);
}

.dc-hq-read-answer-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all .15s ease;
  white-space: nowrap;
}
.dc-hq-read-answer-btn:hover {
  background: var(--dc-hq-teal-light);
  color: var(--dc-hq-teal-dark);
  gap: 8px;
}

/* Action buttons inside expanded answer */
.dc-hq-expanded-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--dc-hq-border);
}
.dc-hq-btn-sub-profile {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dc-hq-ink2);
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .15s;
}
.dc-hq-btn-sub-profile:hover {
  border-color: var(--dc-hq-teal);
  color: var(--dc-hq-teal);
}
.dc-hq-btn-sub-book {
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--dc-hq-teal);
  border: 1px solid var(--dc-hq-teal);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .15s;
}
.dc-hq-btn-sub-book:hover {
  background: var(--dc-hq-teal-dark);
}

/* Empty State Rule - Hidden by default */
.dc-hq-empty {
  display: none !important;
  text-align: center;
  padding: 40px 20px;
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 18px;
  margin: 20px 0;
}
.dc-hq-empty.is-visible {
  display: block !important;
}

/* Real-Time Pagination Bar */
.dc-hq-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.dc-hq-page-info {
  font-size: 14px;
  color: var(--dc-hq-ink3);
  font-weight: 500;
}
.dc-hq-page-info strong {
  color: var(--dc-hq-teal-dark);
  font-weight: 700;
}

.dc-hq-pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-hq-page-btn {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--dc-hq-border);
  background: var(--dc-hq-surface);
  color: var(--dc-hq-ink2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 14px;
  transition: all .2s ease;
}
.dc-hq-page-btn:hover:not(:disabled) {
  border-color: var(--dc-hq-teal);
  color: var(--dc-hq-teal);
  background: var(--dc-hq-teal-light);
}
.dc-hq-page-btn.active {
  background: var(--dc-hq-teal) !important;
  color: #FFFFFF !important;
  border-color: var(--dc-hq-teal) !important;
  box-shadow: 0 4px 12px rgba(35, 147, 158, 0.3) !important;
}
.dc-hq-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #F8FAFC;
  border-color: var(--dc-hq-border);
}

/* ── Right Column: Sidebar Widgets ── */
.dc-hq-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

/* Widget 1: DocClix Gradient CTA Card */
.dc-hq-sidebar-cta {
  background: linear-gradient(135deg, #1A6E77 0%, #23939E 100%);
  border-radius: 18px;
  padding: 26px 22px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(35, 147, 158, 0.18);
}
.dc-hq-sidebar-cta-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.dc-hq-sidebar-cta-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0 0 18px;
}
.dc-home a.dc-hq-sidebar-cta-btn,
.dc-hq-sidebar-cta-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: #FFFFFF !important;
  color: #1A6E77 !important; /* Visible dark teal contrast */
  font-family: inherit !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: all .2s ease !important;
}
.dc-home a.dc-hq-sidebar-cta-btn:hover,
.dc-hq-sidebar-cta-btn:hover {
  background: #F4FAFA !important;
  color: #155860 !important;
  transform: translateY(-2px);
}

/* Widget 2: Popular Health Topics */
.dc-hq-sidebar-card {
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}
.dc-hq-sidebar-card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--dc-hq-ink);
  margin: 0 0 16px;
}

.dc-hq-topics-list {
  display: flex;
  flex-direction: column;
}
.dc-hq-topic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--dc-hq-border);
  cursor: pointer;
  transition: all .15s ease;
  user-select: none;
}
.dc-hq-topic-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dc-hq-topic-row:first-child {
  padding-top: 0;
}
.dc-hq-topic-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dc-hq-ink2);
  transition: color .15s ease;
}
.dc-hq-topic-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--dc-hq-teal);
}
.dc-hq-topic-row:hover .dc-hq-topic-name {
  color: var(--dc-hq-teal);
  font-weight: 600;
}

/* Widget 3: Need a Doctor? */
.dc-hq-sidebar-doc-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--dc-hq-ink);
  margin: 0 0 6px;
}
.dc-hq-sidebar-doc-sub {
  font-size: 13px;
  color: var(--dc-hq-ink3);
  line-height: 1.5;
  margin: 0 0 16px;
}
.dc-hq-sidebar-find-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--dc-hq-surface);
  border: 1.5px solid #B8DDD8;
  color: var(--dc-hq-teal);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease;
}
.dc-hq-sidebar-find-btn:hover {
  background: var(--dc-hq-teal-light);
  border-color: var(--dc-hq-teal);
}

/* ─────────────────────────────────────────────────────────────────────
   5. HEALTH & WELLNESS READS (DocClix Theme with Real Photos)
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-reads-section {
  max-width: 1220px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.dc-hq-reads-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.dc-hq-reads-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dc-hq-ink);
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}

.dc-hq-reads-sub {
  font-size: 15px;
  color: var(--dc-hq-ink3);
  margin: 0;
}

.dc-hq-view-all-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s ease;
}
.dc-hq-view-all-link:hover {
  gap: 8px;
  color: var(--dc-hq-teal-dark);
}

.dc-hq-reads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dc-hq-read-card {
  background: var(--dc-hq-surface);
  border: 1px solid var(--dc-hq-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
}
.dc-hq-read-card:hover {
  border-color: var(--dc-hq-teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(35, 147, 158, 0.1);
}

/* REAL BLOG PHOTO HEADER */
.dc-hq-read-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--dc-hq-teal-light);
}
.dc-hq-read-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dc-hq-read-card:hover .dc-hq-read-img {
  transform: scale(1.04);
}

.dc-hq-read-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-hq-read-category {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dc-hq-teal);
  margin-bottom: 8px;
}

.dc-hq-read-title {
  font-family: 'Literata', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--dc-hq-ink);
  line-height: 1.35;
  margin: 0 0 10px;
}

.dc-hq-read-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dc-hq-ink3);
  margin: 0 0 18px;
  flex: 1;
}

.dc-hq-read-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dc-hq-teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dc-hq-read-link:hover {
  color: var(--dc-hq-teal-dark);
}

/* ─────────────────────────────────────────────────────────────────────
   6. DOCCLIX TEAL CTA BANNER (Image 4 in DocClix Brand)
   ───────────────────────────────────────────────────────────────────── */
.dc-hq-blue-cta-section {
  background: linear-gradient(135deg, #1A6E77 0%, #23939E 100%);
  padding: 72px 24px;
  text-align: center;
  color: #FFFFFF;
}

.dc-hq-blue-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.dc-hq-blue-cta-title {
  font-family: 'Literata', Georgia, serif;
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.dc-hq-blue-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0 0 28px;
}

.dc-home a.dc-hq-blue-cta-btn,
.dc-hq-blue-cta-btn {
  background: #FFFFFF !important;
  color: var(--dc-hq-teal-dark) !important;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all .2s ease;
}
.dc-home a.dc-hq-blue-cta-btn:hover,
.dc-hq-blue-cta-btn:hover {
  background: #F4FAFA !important;
  color: #155860 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS (Mobile & Tablet)
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .dc-hq-specialties-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .dc-hq-trending-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dc-hq-sidebar-col {
    position: static;
  }
  .dc-hq-reads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .dc-hq-hero-section {
    padding: 40px 20px 50px;
  }
  .dc-hq-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dc-hq-hero-title {
    font-size: 32px;
    line-height: 1.25;
  }
  .dc-hq-hero-sub {
    font-size: 15px;
  }
  .dc-hq-hero-right {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .dc-hq-card-float-bg,
  .dc-hq-card-float-fg {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  }
  .dc-hq-stats-section {
    padding: 0 20px 48px;
  }
  .dc-hq-stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding: 24px 20px;
  }
  .dc-hq-stat-box:nth-child(2) {
    border-right: none;
  }
  .dc-hq-specialty-section,
  .dc-hq-trending-section,
  .dc-hq-reads-section {
    padding: 0 20px 56px;
  }
}

@media (max-width: 640px) {
  .dc-hq-hero-section {
    padding: 28px 16px 36px;
  }
  .dc-hq-hero-title {
    font-size: 26px;
  }
  .dc-hq-hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .dc-hq-search-wrapper {
    padding: 6px 6px 6px 14px;
  }
  .dc-hq-search-input {
    font-size: 14px;
  }
  .dc-hq-search-btn {
    padding: 10px 18px;
    font-size: 13.5px;
  }
  .dc-hq-popular-row {
    font-size: 12px;
    gap: 6px;
  }
  .dc-hq-popular-chip {
    font-size: 12.5px;
    padding: 3px 8px;
  }
  .dc-hq-specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dc-hq-specialty-card {
    padding: 16px 14px;
  }
  .dc-hq-spec-icon-box {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .dc-hq-spec-title {
    font-size: 14px;
  }
  .dc-hq-spec-sub {
    font-size: 11.5px;
  }
  .dc-hq-trend-card {
    padding: 20px 18px;
  }
  .dc-hq-trend-question {
    font-size: 16.5px;
  }
  .dc-hq-trend-snippet {
    font-size: 13.5px;
    margin-bottom: 14px;
  }
  .dc-hq-trend-attribution {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .dc-hq-doc-circle-img,
  .dc-hq-doc-circle {
    width: 38px;
    height: 38px;
  }
  .dc-hq-doc-name-text {
    font-size: 13.5px;
  }
  .dc-hq-doc-spec-text {
    font-size: 11.5px;
  }
  .dc-hq-read-answer-btn {
    font-size: 12.5px;
    padding: 4px 8px;
  }
  .dc-hq-pagination-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px;
  }
  .dc-hq-page-info {
    font-size: 13px;
  }
  .dc-hq-pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .dc-hq-page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  .dc-hq-reads-grid {
    grid-template-columns: 1fr;
  }
  .dc-hq-reads-title {
    font-size: 24px;
  }
  .dc-hq-stats-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dc-hq-stat-box {
    border-right: none;
    border-bottom: 1px solid var(--dc-hq-border);
    padding-bottom: 12px;
  }
  .dc-hq-stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .dc-hq-blue-cta-section {
    padding: 48px 16px;
  }
  .dc-hq-blue-cta-title {
    font-size: 24px;
  }
  .dc-hq-blue-cta-sub {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .dc-hq-hero-search {
    width: 100%;
  }
  .dc-hq-search-wrapper {
    flex-direction: column;
    align-items: stretch;
    background: var(--dc-hq-surface);
    border: 1.5px solid var(--dc-hq-border);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .dc-hq-search-icon {
    display: none;
  }
  .dc-hq-search-input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 8px;
  }
  .dc-hq-search-btn {
    width: 100%;
    text-align: center;
  }
  .dc-hq-expanded-actions {
    flex-direction: column;
    gap: 8px;
  }
  .dc-hq-btn-sub-profile,
  .dc-hq-btn-sub-book {
    width: 100%;
    text-align: center;
  }
}