/* ========================================
   Gunderson Law Firm - Subpage Styles
   Shared styles for all internal/subpages
   ======================================== */

/* ========================================
   Page Hero (interior pages — attorneys, practice areas, etc.)
   ======================================== */

.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(15, 15, 15, 0.52);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: normal;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.page-hero-rule {
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin: 18px auto 0;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1024px) {
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {
  .page-hero {
    height: 340px;
  }

  .page-hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
}

/* =========================
   SMALL MOBILE
   ========================= */
@media (max-width: 600px) {
  .page-hero {
    height: 280px;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
}
