/* Faith Is Rising — editorial news layer */

:root {
  --news-bg: #fbf9f5;
  --news-card: #ffffff;
  --news-ink: #16202b;
  --news-body: #48525c;
  --news-muted: #7a848e;
  --news-border: #e4ded3;
  --news-accent: #1f5f8b;
  --news-warm: #c4772f;
  --news-warm-soft: #f6e7d3;
  --news-shadow: 0 8px 24px rgba(22, 32, 43, 0.06);
}

/* Homepage Faith Is Rising */
.faith-rising {
  background: var(--news-bg);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.faith-rising .section-label {
  color: var(--news-warm);
}

.news-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.story-card {
  display: flex;
  flex-direction: column;
  background: var(--news-card);
  border: 1px solid var(--news-border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--news-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(22, 32, 43, 0.09);
}

.story-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--news-warm-soft);
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.25rem;
  flex: 1;
}

.story-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--news-warm-soft);
  color: var(--news-warm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--news-ink);
  letter-spacing: -0.02em;
}

.story-card h3 a {
  color: inherit;
  text-decoration: none;
}

.story-card h3 a:hover {
  color: var(--news-accent);
}

.story-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--news-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: center;
}

.story-meta .source-logo {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  border-radius: 0.2rem;
}

.story-summary {
  margin: 0;
  color: var(--news-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-why {
  margin: 0;
  font-size: 0.88rem;
  color: var(--news-body);
  line-height: 1.5;
  padding-top: 0.45rem;
  border-top: 1px solid var(--news-border);
}

.story-why strong {
  color: var(--news-accent);
  font-weight: 700;
}

.story-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.story-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--news-accent);
  letter-spacing: 0.01em;
}

.story-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--news-accent);
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}

.section-more {
  margin-top: 1.5rem;
  text-align: center;
}

/* News page */
.news-page {
  background: var(--news-bg);
}

.news-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
  text-align: center;
}

.news-hero h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  color: var(--news-ink);
  letter-spacing: -0.03em;
}

.news-hero .lede {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--news-body);
}

.featured-story {
  display: grid;
  gap: 1.25rem;
  background: var(--news-card);
  border: 1px solid var(--news-border);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--news-shadow);
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .featured-story {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.featured-story-media {
  display: block;
  min-height: 14rem;
  aspect-ratio: 16 / 9;
}

@media (min-width: 900px) {
  .featured-story-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.featured-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-story-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.featured-story-body h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--news-ink);
  line-height: 1.25;
}

.featured-story-body h2 a {
  color: inherit;
  text-decoration: none;
}

.news-feed {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .news-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .news-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Story detail */
.story-detail {
  background: var(--news-bg);
  padding-bottom: 3rem;
}

.story-detail-hero {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}

.story-detail-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--news-ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.story-detail-media {
  max-width: 56rem;
  margin: 1.25rem auto;
  padding: 0 1.25rem;
}

.story-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--news-border);
  box-shadow: var(--news-shadow);
}

.story-detail-video {
  max-width: 56rem;
  margin: 1.25rem auto;
  padding: 0 1.25rem;
}

.story-video-poster {
  width: 100%;
  margin: 0;
  border-radius: 1rem;
  border: 1px solid var(--news-border);
  box-shadow: var(--news-shadow);
}

.story-detail-body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  color: var(--news-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-detail-body p {
  margin: 0 0 1rem;
}

.why-block {
  margin: 1.5rem 0;
  padding: 1.15rem 1.2rem;
  background: var(--news-card);
  border: 1px solid var(--news-border);
  border-left: 3px solid var(--news-warm);
  border-radius: 0.85rem;
}

.why-block h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--news-warm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pull-quote {
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 3px solid var(--news-accent);
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.2rem;
  color: var(--news-ink);
  font-style: italic;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.related-stories {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
}

.related-stories h2 {
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--news-ink);
}

.story-bottom-cta {
  text-align: center;
  margin: 2rem 0 0;
  font-weight: 700;
  color: var(--news-accent);
  font-size: 1.05rem;
}


