/* Services tab — landing tiles + modest heading under baked-in banner type. */

.dropdown.mega.mega--services{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  width:min(1080px, calc(100% - 48px));
  gap:10px 20px;
}

.page-hero--under-art{
  padding:36px 0 28px;
}
.page-hero--under-art h1{
  font-size:2rem;
  line-height:1.2;
  max-width:20em;
}
.page-hero--under-art .lead{
  max-width:640px;
}

.services-tab-group{
  margin-bottom:48px;
}
.services-tab-group:last-child{
  margin-bottom:0;
}
.services-tab-group .section-head{
  margin-bottom:20px;
}

.services-tab-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.services-tab-card{
  display:flex;
  flex-direction:column;
  padding:0;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
  min-width:0;
}
.services-tab-card .card-media{
  /* Match 1920×800 banner art so baked-in titles stay in frame. */
  aspect-ratio:12 / 5;
  overflow:hidden;
  background:#141414;
}
.services-tab-card .card-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
}
.services-tab-card .card-body{
  padding:16px 16px 20px;
}
.services-tab-card h3{
  margin:0 0 8px;
  font-size:1.05rem;
  line-height:1.25;
}
.services-tab-card p{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
}

.services-tab-copy h2{
  margin:28px 0 12px;
}
.services-tab-copy p{
  margin:0 0 16px;
  max-width:68ch;
}
.services-tab-why{
  margin-top:8px;
}
.services-tab-why p{
  margin:0 0 12px;
  max-width:68ch;
}

.faq-item{
  border-bottom:1px solid var(--border);
  padding:12px 0;
}
.faq-item summary{
  cursor:pointer;
  font-family:var(--font-head);
  font-weight:600;
  font-size:1.05rem;
  color:var(--text);
}
.faq-item p{
  margin:10px 0 6px;
  max-width:68ch;
  color:var(--muted);
}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (min-width: 761px){
  .services-tab-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
  }
  .services-tab-card h3{ font-size:1.15rem; }
}

@media (max-width: 980px){
  .dropdown.mega.mega--services{
    width:100%;
    grid-template-columns:1fr;
  }
}
