/* Bible Study Page Styles */

/* Prevent layout shift on page load */
.bible-study-content__intro {
  min-height: 300px;
}

/* Hero Section */
.bible-study-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.bible-study-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.bible-study-hero__line {
  position: absolute;
  top: 130px;
  left: calc((100% - 1400px) / 2 + 40px + 70px);
  right: 70px;
  height: 3px;
  background: var(--color-accent);
  z-index: 3;
}

.bible-study-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
}

.bible-study-hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bible-study-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-style: italic;
  color: white;
  margin: 0;
}

/* Content Section */
.bible-study-content {
  background: white;
  padding: 80px 20px;
}

.bible-study-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.bible-study-content__intro {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.bible-study-content__image img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.bible-study-content__text {
  text-align: left;
}

.bible-study-content__heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0;
}

.bible-study-content__details {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 10px 0 30px 0;
  letter-spacing: 3px;
}

.bible-study-content__main-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 0 10px 0;
}

.bible-study-content__subheading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0 0 40px 0;
  letter-spacing: 3px;
}

.bible-study-content__body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gray-900);
}

.bible-study-content__body p {
  margin: 0 0 20px 0;
}

/* Embedded Bibles Section */
.bible-study-embed {
  background: var(--color-gray-100);
  padding: 40px 20px 80px 20px;
}

.bible-study-embed__container {
  max-width: 1400px;
  margin: 0 auto;
}

.bible-study-embed__heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 0 40px 0;
  text-align: center;
}

.bible-study-embed__bibles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bible-study-embed__bible {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 600px;
}

.bible-study-embed__bible h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  text-align: center;
}

/* Prevent Biblia widget layout shift */
biblia\:bible {
  display: block;
  min-height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .bible-study-hero {
    min-height: 280px;
    padding-top: 80px;
    background-position: center top;
  }

  .bible-study-hero__line {
    display: none;
  }

  .bible-study-hero__content {
    padding: 0 20px 30px 20px;
  }

  .bible-study-hero__title {
    font-size: 2rem;
  }

  .bible-study-hero__subtitle {
    font-size: 1.1rem;
  }

  .bible-study-content__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bible-study-content__heading,
  .bible-study-content__main-heading {
    font-size: 2rem;
  }

  .bible-study-embed__bibles {
    grid-template-columns: 1fr;
  }

  .bible-study-content__subheading {
    font-size: 1.2rem;
  }
}
