/* =====================================
   Sitemap Hero
===================================== */

.sitemap-hero-text{
  max-width:820px;
}

/* =====================================
   Intro
===================================== */

.sitemap-intro{
  padding-top:54px;
}

.sitemap-intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}

.sitemap-intro .sitemap-copy p{
  margin:0 0 18px;
  color:var(--text-light);
}

.sitemap-intro .sitemap-copy p:last-child{
  margin-bottom:0;
}

.sitemap-copy .eyebrow,
.section-head .eyebrow{
  color:#c8423d !important;
}

.sitemap-image img{
  aspect-ratio:5/4;
  max-width:420px;
  width:100%;
  margin:0 auto;
}

/* =====================================
   Sitemap List
===================================== */

.sitemap-wrap{
  max-width:1100px;
}

.sitemap-lead{
  max-width:820px;
  margin:0 auto 38px;
  text-align:center;
  color:var(--text-light);
}

.sitemap-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.sitemap-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 30px;
  box-shadow:var(--shadow);
  box-sizing:border-box;
}

.sitemap-card h3{
  margin:0 0 16px;
  font-size:20px;
}

.sitemap-list{
  list-style:none;
  padding:0;
  margin:0;
}

.sitemap-list li{
  margin-bottom:10px;
}

.sitemap-list li:last-child{
  margin-bottom:0;
}

.sitemap-list a{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:.2s;
}

.sitemap-list a:hover{
  border-color:var(--brand);
  color:var(--brand);
}

/* =====================================
   Info Section
===================================== */

.sitemap-note-section .join-card{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:22px;
  padding:30px;
  box-sizing:border-box;
}

.sitemap-note-section .join-card h3{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.4;
  color:var(--text);
}

.sitemap-note-section .join-text{
  flex:1;
  margin:0;
  color:var(--text-light);
  line-height:1.9;
}

.sitemap-note-section .join-actions{
  margin-top:20px;
  display:flex;
  justify-content:flex-end;
}

.sitemap-note-section .join-actions .btn.btn-primary{
  min-width:140px;
  background:#fff !important;
  color:var(--brand) !important;
  border:1px solid var(--brand) !important;
  box-shadow:none !important;
}

.sitemap-note-section .join-actions .btn.btn-primary:hover{
  background:var(--brand-soft) !important;
  color:var(--brand) !important;
  border:1px solid var(--brand) !important;
}

@media (max-width:960px){
  .sitemap-note-section .join-card{
    padding:24px 20px;
  }
}

/* =====================================
   Mobile
===================================== */

@media (max-width:960px){
  .sitemap-intro-grid{
    grid-template-columns:1fr;
  }

  .sitemap-grid{
    grid-template-columns:1fr;
  }
}