/* =========================================
   SERVICE AREA PAGE
   ========================================= */

:root {
  --sa-dark: #1a1a1a;
  --sa-red: #c00000;
  --sa-hover: #c00000;
}

/* =========================================
   HERO BANNER — with title + breadcrumb overlay
   ========================================= */
.op-hero {
  position: relative;
}

.op-hero img {
  width: 100%;
  display: block;
}

.op-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.op-hero-title {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  padding: 10px 30px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.op-breadcrumb {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.op-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.op-breadcrumb-sep {
  margin: 0 6px;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .op-hero img {
    height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .op-hero-title {
    font-size: 30px;
  }
}

@media (max-width: 450px) {
  .op-hero img {
    height: 140px;
  }
}

/* =========================================
   SECTION WRAPPER
   ========================================= */
.sa-directory {
  background: #fff;
  padding: 60px 0 50px;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.sa-region-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--sa-dark);
  margin: 10px 0 15px;
  /* font-family: serif; */
}

/* =========================================
   ACCORDION (STYLE A — county index)
   ========================================= */
.sa-accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.sa-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 4px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sa-dark);
  cursor: pointer;
  text-align: left;
}

.sa-accordion-icon {
  font-size: 22px;
  font-weight: 700;
}

.sa-accordion-panel {
  padding: 8px 4px 24px;
}

.sa-star {
  color: var(--sa-dark);
  font-size: 14px;
  margin-right: 10px;
}

/* =========================================
   ALPHABETICAL GRID (STYLE B — county detail)
   CSS multi-column so groups flow naturally
   ========================================= */
.sa-alpha-grid,
.sa-alphabet-grid {
  columns: 4;
  column-gap: 32px;
}

.sa-alpha-col-item,
.sa-letter-group {
  break-inside: avoid;
  margin-bottom: 28px;
}

/* Cyan italic letter heading */
.sa-letter {
  display: block;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #000;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

/* Area links list */
.sa-area-list,
.sa-table {
  list-style: none;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}

.sa-area-list li,
.sa-table td {
  line-height: 1.6;
  margin: 0;
}

.sa-area-list a,
.sa-table a {
  display: inline-block;
  font-size: 18px;
  /* font-style: italic; */
  color: #000;
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}

.sa-area-list a:hover,
.sa-table a:hover {
  text-decoration: underline;
  color: #000;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {

  .bi-page-title {
    font-size: 18px !important;
  }

  .sa-region-title {
    font-size: 24px;
  }

  .sa-alpha-grid,
  .sa-alphabet-grid {
    columns: 3;
    column-gap: 24px;
  }
}

@media (max-width: 640px) {

  .sa-alpha-grid,
  .sa-alphabet-grid {
    columns: 2;
    column-gap: 20px;
  }

  .sa-region-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
}

@media (max-width: 400px) {

  .sa-alpha-grid,
  .sa-alphabet-grid {
    columns: 1;
  }
}

.bi-header-banner {
  background-color: #FFE5E7;
  border-bottom: 2px solid #CD1E2D;
  border-top: 2px solid #CD1E2D;
  padding: 25px 0;
}

.bi-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bi-page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.bi-breadcrumb {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

.bi-breadcrumb a {
  color: #6530AD;
  text-decoration: none;
  transition: color 0.3s;
}

.bi-breadcrumb a:hover {
  /* color: var(--primary); */
}

.bi-breadcrumb span {
  color: #000000;
}