/* Shared layout for simple content subpages (Om Tara, Walks, Community, After
   Hours) — pieces not already covered by general.css/hero.css/buttons.css */

.center {
  text-align: center;
}

/* h1 default has a large margin-bottom (general.css) meant for hero
   sections; these content-page headers are followed immediately by a
   tagline, so tighten the gap to match the reference mockups. */
.container.center h1 {
  margin-bottom: 0.5rem;
}

.tagline {
  font: italic 27px Georgia, "Times New Roman", serif;
  color: var(--accent-text);
  margin: 0 0 14px;
}

.info-rows {
  max-width: 480px;
  margin: 28px auto;
  text-align: left;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(75, 59, 52, 0.18);
}

/* Community journal cards: blend into the page background instead of the
   default .card white panel/border used elsewhere. */
.community-cards .card {
  background: none;
  border: 1px solid rgba(166, 95, 70, 0.35);
}

.small {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Community newsletter CTA: email field + button, matching the reference. */
.newsletter-form {
  max-width: 480px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(75, 59, 52, 0.25);
  border-radius: 999px;
  background: var(--bg-main);
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}

/* Shared content-photo used on subpages/thanks.html and similar single-photo
   sections; consistent rounded corners + soft shadow matching the nav panel. */
.content-photo {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(58, 47, 43, 0.12);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-grid .photo {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 38% center;
  border-radius: 22px;
  display: block;
}

.about-grid .copy {
  font-size: 1rem;
  line-height: 1.8;
}

.about-grid .copy p {
  margin: 0 0 18px;
}

.quote {
  font: italic 25px Georgia, "Times New Roman", serif;
  color: var(--accent-text);
  max-width: 620px;
  margin: 28px auto;
}

.rule {
  width: 54px;
  height: 1px;
  border: none;
  background: var(--accent);
  margin: 28px auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.step {
  padding: 20px 16px;
  border: 1px solid rgba(75, 59, 52, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
}

.step strong {
  display: block;
  font: 24px Georgia, "Times New Roman", serif;
  color: var(--accent-text);
  margin-bottom: 6px;
}

.step span {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.signature {
  font: italic 23px Georgia, "Times New Roman", serif;
  color: var(--accent-text);
  margin-top: 22px;
}

@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-grid .photo {
    height: 500px;
    object-position: 35% center;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .about-grid .photo {
    height: 460px;
  }
}
