/* Shareable user 5-day devotional — aligned with content-view styling */
.fds {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fds * {
  box-sizing: border-box;
}

.fds-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 55%, #eef2ff 100%);
}

.fds-topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid #e5e7eb;
}

.fds-topbar {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.fds-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111827;
  min-height: 42px;
}

.fds-brand__logo {
  width: auto;
  height: 34px;
  max-width: min(56vw, 300px);
  object-fit: contain;
}

.fds-topbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  background: #ffffff;
}

.fds-topbar__link:hover {
  color: #3730a3;
  border-color: #a5b4fc;
  background: #eef2ff;
}

.fds-hero {
  padding: 1.5rem 1.25rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.fds-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .fds-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
  }
}

.fds-hero__media {
  flex-shrink: 0;
}

.fds-hero__thumb {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.fds-hero__text {
  min-width: 0;
  flex: 1;
}

.fds-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
}

.fds-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.fds-meta {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.fds-meta__dot {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.fds-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4f46e5;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.35rem 0;
}

.fds-yt-link:hover {
  color: #3730a3;
  text-decoration: underline;
}

.fds-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3.25rem;
}

@media (min-width: 992px) {
  .fds-main {
    max-width: 920px;
  }
}

@media (min-width: 1200px) {
  .fds-hero__inner {
    max-width: 1040px;
  }

  .fds-main {
    max-width: 980px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .fds-article {
    padding: 2.1rem 2.6rem 2.8rem;
  }
}

.fds-article {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid #d4d9e4;
  border-radius: 16px;
  padding: 1.5rem 1.25rem 2rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  position: relative;
}

.fds-article::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  height: 1px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

@media (min-width: 640px) {
  .fds-article {
    padding: 2rem 2.25rem 2.5rem;
  }
}

.fds-body {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.78;
  color: #0f172a;
  letter-spacing: 0.005em;
}

.fds-body h1,
.fds-body h2,
.fds-body h3,
.fds-body h4 {
  font-family: "Outfit", system-ui, sans-serif;
  color: #4f46e5;
  font-weight: 700;
  margin-top: 1.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.fds-body h1 {
  font-size: 1.5rem;
}

.fds-body h2 {
  font-size: 1.32rem;
  color: #4338ca;
}

.fds-body h3 {
  font-size: 1.18rem;
}

.fds-body p {
  margin: 0 0 1.15rem;
}

.fds-body ul,
.fds-body ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.fds-body li {
  margin-bottom: 0.55rem;
}

.fds-body strong {
  color: #111827;
}

.fds-body a {
  color: #4f46e5;
}

.fds-body a:hover {
  color: #3730a3;
}

.fds-body blockquote {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid #4f46e5;
  background: #f9fafb;
  color: #374151;
  border-radius: 0 8px 8px 0;
}

.fds-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.fds-cta__label {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.fds-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.65rem;
  min-height: 46px;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.fds-cta__btn:hover {
  filter: brightness(1.06);
  color: #ffffff;
}

.fds-share {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.fds-share__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}

.fds-share .share-section__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.fds-share .share-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #4b5563;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.fds-share .share-section__icon:hover {
  background: #eef2ff;
  border-color: #4f46e5;
  color: #3730a3;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.18);
  transform: translateY(-1px);
}

.fds-share .share-section__icon--copy {
  cursor: pointer;
}

.fds-share .share-section__icon--copied {
  background: #eef2ff;
  border-color: #4f46e5;
  color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.18);
}

.fds-share .share-section__icon-x-svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .fds-topbar {
    padding: 0.55rem 0.95rem;
  }

  .fds-brand__logo {
    height: 30px;
    max-width: min(62vw, 240px);
  }

  .fds-topbar__link {
    font-size: 0.84rem;
    padding: 0.35rem 0.75rem;
    min-height: 38px;
  }

  .fds-hero {
    padding: 1.15rem 1rem 1.4rem;
  }

  .fds-title {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .fds-meta {
    font-size: 1rem;
    line-height: 1.55;
  }

  .fds-yt-link {
    font-size: 0.98rem;
    min-height: 44px;
    align-items: center;
  }

  .fds-main {
    padding: 1.3rem 0.95rem 2.2rem;
  }

  .fds-article {
    border-radius: 14px;
    padding: 1.25rem 1rem 1.55rem;
  }

  .fds-body {
    font-size: 1.13rem;
    line-height: 1.82;
  }

  .fds-body h1 {
    font-size: 1.38rem;
  }

  .fds-body h2 {
    font-size: 1.24rem;
  }

  .fds-body h3 {
    font-size: 1.14rem;
  }

  .fds-cta {
    margin-top: 2rem;
    padding: 1.1rem 0.9rem;
  }

  .fds-cta__label {
    font-size: 1rem;
    line-height: 1.5;
  }

  .fds-cta__btn {
    width: 100%;
    max-width: 340px;
  }
}
