/* Practice-area page styling */
.practice-page { background: #ffffff; color: #1a1a1a; }
.practice-hero {
  background: #1a1a1a; color: #fff; padding: 130px 0 60px;
  border-bottom: 3px solid #c9a227;
}
.practice-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  color: #c9a227; margin: 20px 0 18px;
}
.practice-lead { font-size: 1.08rem; line-height: 1.7; max-width: 820px; color: #e5e5e5; }
.breadcrumb { font-size: 0.88rem; color: #bbb; }
.breadcrumb a { color: #c9a227; text-decoration: none; }
.breadcrumb span { margin: 0 6px; color: #777; }

.practice-content { padding: 50px 0 80px; }
.practice-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px;
}
.practice-main h2 {
  font-family: 'Cormorant Garamond', serif; color: #1a1a1a;
  font-size: 1.7rem; margin: 32px 0 16px;
  border-bottom: 1px solid #c9a227; padding-bottom: 8px;
}
.practice-main p { line-height: 1.7; margin: 0 0 16px; font-size: 1.02rem; }
.practice-list { list-style: none; padding: 0; margin: 0 0 20px; }
.practice-list li {
  position: relative; padding: 8px 0 8px 22px;
  border-bottom: 1px dashed #e0e0e0; line-height: 1.55;
}
.practice-list li::before {
  content: '\2022'; color: #c9a227; font-weight: 700;
  position: absolute; left: 4px;
}
.practice-list.compact li { padding: 4px 0 4px 22px; border: none; }

.practice-cta {
  margin-top: 40px; padding: 28px 32px;
  background: #fdf8ec; border: 1px solid #c9a227; border-radius: 4px;
}
.practice-cta h3 { margin: 0 0 8px; color: #1a1a1a; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
.cta-btn {
  display: inline-block; margin-top: 10px; padding: 11px 22px;
  background: #1a1a1a; color: #c9a227; text-decoration: none;
  border: 1px solid #c9a227; border-radius: 3px; font-weight: 600;
  transition: all 0.2s;
}
.cta-btn:hover { background: #c9a227; color: #1a1a1a; }

.practice-aside { position: sticky; top: 100px; align-self: start; }
.aside-box {
  background: #f7f5f0; padding: 22px; border-radius: 4px;
  border-left: 3px solid #c9a227; margin-bottom: 20px;
}
.aside-box h4 {
  margin: 0 0 12px; color: #1a1a1a; font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.aside-box ul { list-style: none; padding: 0; margin: 0; }
.aside-box li { padding: 5px 0; border-bottom: 1px dashed #ddd; }
.aside-box li:last-child { border: none; }
.aside-box a { color: #1a1a1a; text-decoration: none; border-bottom: 1px solid #c9a227; }
.aside-box a:hover { color: #c9a227; }
.aside-box p { margin: 0 0 12px; font-size: 0.95rem; line-height: 1.6; color: #333; }
.aside-box p strong { color: #1a1a1a; }

@media (max-width: 900px) {
  .practice-grid { grid-template-columns: 1fr; }
  .practice-aside { position: static; }
  .practice-hero { padding: 100px 0 40px; }
  .practice-hero h1 { font-size: 2.2rem; }
}
