/* Local landing pages — use after styles.css (index.html patterns) */

/* Allow hero CTA buttons to wrap on narrow screens */
.hero-ctas .btn {
  white-space: normal;
  word-break: break-word;
  text-align: center;
  line-height: 1.3;
}
:root {
  --lp-line: var(--grey-200);
}

/* Badges in hero: icon + pill text (index .hero-badge is text-only) */
body.lp-local .hero .hero-badge.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

body.lp-local .hero .hero-badge.lp-hero-pill i {
  color: var(--navy);
}

.lp-pillar-grid {
  display: grid;
  gap: 1rem;
}

.lp-pillar {
  border: 1px solid var(--lp-line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.lp-pillar-title {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.lp-pillar-support,
.lp-pillar-note {
  font-size: 0.92rem;
  color: var(--grey-800);
  line-height: 1.55;
  margin: 0;
}

.lp-section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lp-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--dark);
}

details.lp-faq-item {
  border: 1px solid var(--lp-line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  background: #fff;
  margin-bottom: 0.5rem;
}

details.lp-faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--dark);
}

details.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-a {
  padding-top: 0.55rem;
  color: var(--grey-800);
  font-size: 0.93rem;
  line-height: 1.6;
}

.lp-faq-a p {
  margin: 0;
}

.lp-related h2 {
  margin-bottom: 0.75rem;
}

ul.lp-related-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

ul.lp-related-links a {
  font-weight: 700;
  color: var(--light-blue);
  font-size: 0.92rem;
}

ul.lp-related-links a:hover {
  text-decoration: underline;
}

@media (min-width: 860px) {
  .lp-pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  body.lp-local .hero .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
