/* ====================================
   Yohanes Paulus II Page Styling
   ==================================== */

/* Info Hero Section */
.info-hero {
  min-height: 90vh;
  padding: 140px var(--section-padding-x) 96px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(rgba(54, 54, 54, 0.54), rgba(98, 98, 98, 0.54)),
    url("../img/bapak_paus_background_dua.webp ") center/cover no-repeat;
  color: #ffffff;
  filter: drop-shadow(0 22px 44px rgba(0, 29, 74, 0.14));
}

.info-hero__content {
  max-width: 760px;
}

.info-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-hero h1,
.info-hero p {
  color: #ffffff;
}

.info-hero p {
  max-width: 60ch;
  font-size: 1.05rem;
}

/* ====================================
   Article Style (Menggantikan struktur lama)
   ==================================== */

.article-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #ffffff;
}

.article-section article {
  max-width: 900px;
  margin: 0 auto;
}

.article-section article img {
  max-width: 310px;
  flex: 0 0 40%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 22px 44px rgba(0, 29, 74, 0.14);
  display: block;
}

.article-section article p {
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-section article strong {
  color: var(--prussian-blue);
  font-weight: 600;
}

/* Article Content Block - Gambar samping teks */
.article-content-block {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.article-content-block img {
  flex: 0 0 40%;
  max-width: 350px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 44px rgba(0, 29, 74, 0.14);
}

.article-text {
  flex: 1;
}

.article-text p {
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-text strong {
  color: var(--prussian-blue);
  font-weight: 600;
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
  .article-section article {
    padding: 0 1.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .article-content-block {
    flex-direction: column;
    gap: 1rem;
  }

  .article-content-block img {
    flex: 1;
    max-width: 100%;
  }

  .article-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .article-content-block {
    margin-bottom: 1.5rem;
  }

  .article-text p {
    font-size: 0.9rem;
    text-align: left;
  }
}
