/* ===== article-style.css ===== */
h1 {
  color: rgb(1, 1, 97);
  text-align: center;
  font-size: 1.75em;
  margin-bottom: 10px;
}
body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-header {
  text-align: center;
  background: #f5f7fa;
  padding: 2rem 1rem;
  border-bottom: 1px solid #ddd;
}
.article-header h1 {
  font-size: 2rem;
  margin: 0;
  color: #2c3e50;
}
.article-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
}
.article-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  flex: 1;
}
.article-container h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #1a5276;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3rem;
}
.article-container h3 {
  margin-top: 1.2rem;        /* optional: reduces space above */
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 0.3rem;     /* key change: reduces space below */
}

.article-container h3 + p {
  margin-top: 0.1rem !important;
}
.article-container p {
  margin: 1rem 0;
}
.article-container ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-container li {
  margin: 0.3rem 0;
}
.key-verse {
  background-color: #eaf4f4;
  padding: 1em;
  margin: 1em 0;
  font-style: italic;
}

.article-container h3.key-passage {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a5276;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}



.article-container h3 .verse-ref {
  display: inline;
  font-size: 0.85em;
  color: #555;
  font-weight: normal;
  margin-left: 6px;
}

blockquote.scripture {
  margin: 1rem 1em;
  padding: 1rem;
  background: #eaf4f4;
  font-style: italic;
  color: #2c3e50;
  border-left: none;
}
.verse-ref {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-style: normal;
}
.article-conclusion {
  background: linear-gradient(to right, #eaf4f4, #f7fcfc);
  border-left: 4px solid #1a5276;
  border-right: 4px solid #1a5276;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.article-conclusion h3 {
  color: #1a5276;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.article-conclusion p:last-of-type {
  font-style: italic;
  color: #2c3e50;
}
.devotion-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
}
.devotion-footer a {
  color: #1a5276;
  text-decoration: none;
}
.devotion-footer a:hover {
  text-decoration: underline;
}
.no-tagger {
  font-weight: bold;
  color: #2c3e50;
}