/* ========================================
   Gunderson Law Firm - Attorney Styles
   Attorney index and detail page styles
   ======================================== */

/* ========================================
   Attorneys Index — Intro
   ======================================== */

.attorneys-intro {
  padding: 40px 40px 20px;
  text-align: center;
}

.attorneys-intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* ========================================
   Attorney Detail Hero
   ======================================== */

.attorney-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding: 100px 60px 50px;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  min-height: 400px;
}

.attorney-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(15, 15, 15, 0.55);
  z-index: 0;
}

.attorney-hero > * {
  position: relative;
  z-index: 1;
}

.attorney-hero-photo {
  flex-shrink: 0;
  width: 200px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.attorney-hero-info {
  padding-bottom: 10px;
}

.attorney-hero-info h1 {
  font-size: 1.9rem;
  color: #fff;
  font-weight: normal;
  margin-bottom: 6px;
}

.attorney-hero-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.btn-email {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-email:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* ========================================
   Attorney Detail Content
   ======================================== */

.attorney-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px;
}

.attorney-section {
  margin-bottom: 50px;
}

.attorney-section h2 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.attorney-section-rule {
  width: 32px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 20px;
}

.attorney-section p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1em;
}

.attorney-section ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.attorney-section ul li {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.attorney-section ul li a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(155,32,32,0.3);
}

.attorney-section ul li a:hover {
  color: #7a1a1a;
}

.attorney-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.attorney-badges img {
  height: 70px;
  width: auto;
}

.attorney-feature-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 24px;
}

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

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px) {
  .attorney-hero {
    padding: 90px 30px 40px;
    min-height: 360px;
  }
}

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

/* =========================
   SMALL MOBILE
   ========================= */
@media (max-width: 600px) {
  .attorney-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 80px 20px 30px;
    min-height: 320px;
  }

  .attorney-content {
    padding: 40px 20px;
  }
}

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