


/* =========================================
    Doctrina Biblica Section Styles   DoctrinaBiblica.css 
========================================= */

.faith-works-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 55px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #f8f4ed);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  color: #24324a;
}

.faith-works-header {
  text-align: center;
  margin-bottom: 42px;
}

.faith-works-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 20px;
  border-radius: 999px;
  background: #f3ece2;
  color: #8a6a40;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faith-works-header h2 {
  margin: 0 0 16px;
  color: #1f2d45;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.faith-works-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #617089;
  font-size: 1.08rem;
  line-height: 1.8;
}

.faith-works-content {
  display: grid;
  gap: 26px;
}

.faith-works-card,
.faith-works-highlight,
.faith-works-verses {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.faith-works-card h3,
.faith-works-highlight h3,
.faith-works-verses h3 {
  margin: 0 0 18px;
  color: #1f2d45;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.faith-works-card p,
.faith-works-highlight p {
  color: #31415a;
  font-size: 1.05rem;
  line-height: 1.95;
  margin-bottom: 20px;
}

.faith-works-card blockquote {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 5px solid #b89b70;
  border-radius: 20px;
  background: #f6efe5;
  color: #24324a;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 600;
}

.faith-works-card blockquote span {
  display: block;
  margin-top: 12px;
  color: #8a6a40;
  font-size: 0.95rem;
  font-weight: 900;
}

.verse-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.verse-list span,
.related-verses-grid span {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3ece2;
  color: #8a6a40;
  font-size: 0.84rem;
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.comparison-grid div {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
}

.comparison-grid h4 {
  margin: 0 0 12px;
  color: #1f2d45;
  font-size: 1.25rem;
  font-family: Georgia, serif;
}

.related-verses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.related-verses-grid article {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.related-verses-grid p {
  margin: 0 0 14px;
  color: #31415a;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .faith-works-section {
    margin: 50px 14px;
    padding: 28px;
    border-radius: 24px;
  }

  .faith-works-card,
  .faith-works-highlight,
  .faith-works-verses {
    padding: 24px;
  }

  .comparison-grid,
  .related-verses-grid {
    grid-template-columns: 1fr;
  }
}