.faith-essentials-section {
  min-height: 60vh;
  padding: 5rem 2rem;
}

.faith-essentials-container {
  max-width: 50rem;
  margin: 0 auto;
}

.faith-essentials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faith-essentials-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  color: var(--primary-1);
  margin-bottom: 0.75rem;
}

.faith-essentials-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-large);
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  margin: 0;
}

.essentials-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.essential-item {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.essential-item:hover {
  box-shadow: 0 4px 16px rgba(48, 92, 222, 0.15);
  border-color: var(--primary-1);
}

.essential-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.essential-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.25rem;
  background: var(--primary-1);
  transition: width 0.3s ease;
}

.essential-question:hover::before {
  background: var(--primary-3);
}

.question-text {
  font-family: var(--font-heading);
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  color: var(--neutral-dark);
  line-height: 1.5;
  flex: 1;
}

.question-icon {
  font-size: 1rem;
  color: var(--primary-1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.essential-question[aria-expanded="true"] .question-icon {
  transform: rotate(180deg);
}

.essential-question[aria-expanded="true"] {
  background: rgba(48, 92, 222, 0.05);
}

.essential-answer {
  display: none;
  background: white;
}

.essential-answer.active {
  display: block;
  padding: 0 1.75rem 1.5rem 1.75rem;
  border-top: 1px solid rgba(48, 92, 222, 0.15);
  animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.essential-answer p {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .faith-essentials-section {
    padding: 4rem 1.5rem;
  }

  .faith-essentials-title {
    font-size: var(--fs-h3);
  }

  .faith-essentials-subtitle {
    font-size: var(--fs-base);
  }

  .essential-question {
    padding: 1.25rem 1.5rem;
  }

  .question-text {
    font-size: var(--fs-base);
  }

  .essential-answer.active {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .essential-answer p {
    font-size: var(--fs-small);
  }
}

@media (max-width: 480px) {
  .faith-essentials-section {
    padding: 3rem 1rem;
  }

  .faith-essentials-header {
    margin-bottom: 2rem;
  }

  .faith-essentials-title {
    font-size: var(--fs-h4);
  }

  .faith-essentials-subtitle {
    font-size: var(--fs-small);
  }

  .essentials-accordion {
    gap: 0.75rem;
  }

  .essential-question {
    padding: 1rem 1.25rem;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .question-icon {
    font-size: 0.875rem;
  }

  .essential-answer.active {
    padding: 0 1.25rem 1rem 1.25rem;
  }

  .essential-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
