
/* BOF Auto Sitemap (Styled) - BAT-like */
.bof-sitemap-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0 34px;
  font-family: Raleway, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.bof-sitemap-grid{
  --bof-cols: 3;
  display: grid;
  grid-template-columns: repeat(var(--bof-cols), minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

/* Column title bar */
.bof-sitemap-col h3{
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 2px;
  background: #bcd9ff;
  color: #0b2a53;
  font-weight: 700;
  font-size: 14px;
}

.bof-sitemap-coltitle-link{
  color: #0b2a53;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  width: 100%;
}
.bof-sitemap-coltitle-link:hover{ text-decoration: underline; }

/* Lists */
.bof-sitemap-list{
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.bof-sitemap-item{
  margin: 0 0 10px;
  line-height: 1.35;
}

.bof-sitemap-link{
  color: #0b2a53;
  font-weight: 600;
  text-decoration: none;
}
.bof-sitemap-link:hover{ text-decoration: underline; }

/* Sub-items should NOT be bold */
.bof-sitemap-sublist .bof-sitemap-link{
  font-weight: 500;
}

.bof-sitemap-text{
  color: #0b2a53;
  font-weight: 500;
}

/* Nested list indentation */
.bof-sitemap-sublist{
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: disc;
}

/* New line block under “News & Publications” */
.bof-sitemap-inline-block{
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(11,42,83,.12);
}

/* Posts */
.bof-sitemap-posts{
  display: block;
}

/* Year grouping */
.bof-sitemap-year{
  margin: 0 0 10px;
  padding: 0;
}
.bof-sitemap-year summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #0b2a53;
}
.bof-sitemap-year summary::-webkit-details-marker{ display:none; }
.bof-sitemap-year-title{
  font-size: 16px;
  font-weight: 800;
}
.bof-sitemap-count{
  font-size: 14px;
  font-weight: 700;
  opacity: .7;
}

.bof-sitemap-meta{
  font-size: 12px;
  font-weight: 600;
  opacity: .65;
  margin-left: 8px;
  white-space: nowrap;
}

/* Standalone sections */
.bof-sitemap-section{
  margin-top: 34px;
}
.bof-sitemap-section-bar{
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 2px;
  background: #bcd9ff;
  color: #0b2a53;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px){
  .bof-sitemap-grid{ grid-template-columns: 1fr; gap: 28px; }
}
/* Utility links (Careers + French sitemap) */
.bof-sitemap-utility{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 6px 0 18px;
}
.bof-sitemap-utility-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  text-decoration:none;
  font-weight: 600;
}
.bof-sitemap-utility-link:hover{
  text-decoration: underline;
}
