/* ====================================
   Profile Gereja Page Styling
   ==================================== */

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

.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;
}

/* judul conten */
.judul-content {
  padding-bottom: var(--section-padding-y);
  background: #ffffff;
  align-items: center;
  text-align: center;
}

.judul-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  letter-spacing: 2px;
}

.judul-content p {
  font-size: 1rem;
  color: #999;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 300;
}

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

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

.article-section article p, li {
  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;
}

.profile-accordion__item {
  border-bottom: 1px solid rgba(0, 29, 74, 0.18);
}

.profile-accordion__item + .profile-accordion__item {
  margin-top: 1.25rem;
}

.profile-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 1rem;
  cursor: pointer;
  list-style: none;
}

.profile-accordion__summary::-webkit-details-marker {
  display: none;
}

.profile-accordion__summary h3 {
  margin: 0;
  color: var(--prussian-blue);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.profile-accordion__icon {
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--prussian-blue);
  border-bottom: 2px solid var(--prussian-blue);
  flex: 0 0 auto;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.profile-accordion__item[open] .profile-accordion__icon {
  transform: rotate(-135deg);
}

.profile-accordion__panel {
  padding-bottom: 1.5rem;
}

.profile-accordion__panel .divider {
  margin: 0 0 1.25rem;
  border: 0;
  border-top: 1px solid rgba(0, 29, 74, 0.18);
  opacity: 1;
}

.article-content-AwalPerjalanan {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.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;
}

