/* dpp-share.css — share buttons + footer social icons */

.dpp-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dpp-share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.dpp-share-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--gold-pale);
  background: var(--paper);
  color: var(--maroon-deep);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  padding: 0;
}
.dpp-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(74, 21, 21, 0.22);
  border-color: var(--gold);
}
.dpp-share-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Brand hover colors — subtle so the page stays calm */
.dpp-share-btn.is-whatsapp:hover { color: #fff; background: #25d366; border-color: #25d366; }
.dpp-share-btn.is-telegram:hover { color: #fff; background: #229ED9; border-color: #229ED9; }
.dpp-share-btn.is-facebook:hover { color: #fff; background: #1877F2; border-color: #1877F2; }
.dpp-share-btn.is-x:hover        { color: #fff; background: #000;    border-color: #000;    }
.dpp-share-btn.is-linkedin:hover { color: #fff; background: #0A66C2; border-color: #0A66C2; }
.dpp-share-btn.is-email:hover    { color: #fff; background: var(--maroon); border-color: var(--maroon); }
.dpp-share-btn.is-copy:hover     { color: #fff; background: var(--gold); border-color: var(--gold); }
.dpp-share-btn.is-native:hover   { color: #fff; background: var(--maroon-deep); border-color: var(--maroon-deep); }

.dpp-share-status {
  font-size: 0.78rem;
  color: var(--maroon);
  min-height: 1.2em;
  font-style: italic;
}

/* ============================================================
   Footer socials — same icon system, slightly different chrome
   ============================================================ */
.dpp-footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.dpp-footer-socials .dpp-share-btn {
  background: transparent;
  border-color: rgba(212, 165, 116, 0.35);
  color: var(--gold-pale, #d4a574);
  width: 38px; height: 38px;
}
.dpp-footer-socials .dpp-share-btn:hover {
  background: var(--paper);
  color: var(--maroon-deep);
}

/* ============================================================
   Header-embedded language toggle — patch 46.
   The toggle now lives in the nav bar (next to the search icon),
   not in the top blessing-marquee bar. Different background/colors
   from the base .lang-toggle since the header is light cream
   rather than the dark maroon top-bar.
   ============================================================ */
.header-lang-toggle {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
}
.header-lang-toggle button {
  color: var(--ink-soft);
  background: transparent;
}
.header-lang-toggle button.active {
  background: var(--maroon-deep);
  color: var(--gold-pale);
  font-weight: 600;
}
.header-lang-toggle button:hover:not(.active) {
  background: var(--ivory-warm);
  color: var(--maroon);
}
/* Hide on small screens — the bottom-nav has its own LANG pillar there. */
@media (max-width: 600px) {
  .header-lang-toggle { display: none; }
}

/* ============================================================
   Featured cards — uniform title sizing (patch 46).
   The "main + grid" featured layout originally had .feat-main with
   a clamp(1.8rem, 3vw, 2.4rem) title — visually overpowering the
   smaller .feat-item cards (1.15rem). This evens them out so the
   three cards look like siblings rather than parent/children.
   ============================================================ */
.feat-main h2 {
  font-size: 1.35rem;
  line-height: 1.32;
  margin: 12px 0 6px;
}
.feat-main .hi-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.feat-main p.excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
}
.feat-item h4 {
  font-size: 1.15rem;
  line-height: 1.35;
}
/* Hide the giant ॐ watermark behind .feat-main — was sized for the
   former oversized card and looks awkward at the smaller card height. */
.feat-main::before {
  font-size: 9rem;
  opacity: 0.18;
  right: -10px;
  bottom: -30px;
}
