/* Overall wrapper for the section */
.section-wrapper.discussion-questions {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Each question set box */
.box {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
  font-family: verdana;
}
.box:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.section-wrapper h2{font-family: verdana;}

/* Headings inside each box */
.box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}
:root {
  --primary-green: #3A6B35;
  --primary-green-dark: #2A4F27;
  --black: #000000;
  --white: #FFFFFF;
  --light-gray: #D9D9D9;
}

/* Section wrapper */
.section-wrapper.discussion-questions {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
}

/* Section heading */
.section-wrapper.discussion-questions h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  text-align: center;
  margin-bottom: 2rem;
}

/* Each entry box */
.box {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  transition: box-shadow 0.2s ease;
}
.box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Entry heading (date + passage) */
.box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: left; /* ensure headings are left aligned */
}

/* Questions block (single text string with line breaks) */
.questions-block {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  white-space: pre-line; /* respect line breaks from JSON */
  text-align: left;      /* force all lines left aligned */
}

/* Archive link styled as a button */
.archive-link {
  text-align: center;
  margin-top: 2rem;
}
.archive-link a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}
.archive-link a:hover {
  background: var(--primary-green-dark);
}

/* Contact item (if used) */
.contact-item {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--black);
  text-align: left;
}
.contact-item a {
  color: var(--primary-green);
  text-decoration: underline;
}
.questions-block .question-line {
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.questions-block .question-line.odd {
  background: var(--white);
}

.questions-block .question-line.even {
  background: var(--light-gray);
}
