.associated-centers-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.associated-centers-intro {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.associated-centers-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--csjsky, #008ea9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.associated-centers-intro h2 {
  margin: 0 0 0.8rem;
  color: #163349;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.associated-centers-intro p {
  margin: 0;
  color: #5f7180;
  font-size: 1rem;
  line-height: 1.7;
}

.associated-center-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 2rem;
  max-width: 960px;
  padding: 2.4rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2edf1;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(24, 71, 91, 0.1);
}

.associated-center-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
}

.associated-center-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.associated-center-location {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  color: #507c1c;
  background: #eef8df;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.associated-center-content h3 {
  margin: 0.7rem 0 1.4rem;
  color: #163349;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
}

.associated-center-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.associated-center-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f6fafb;
  border-radius: 0.8rem;
}

.associated-center-detail svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: var(--csjsky, #008ea9);
}

.associated-center-detail strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #26475a;
  font-size: 0.82rem;
}

.associated-center-detail p {
  margin: 0;
  color: #556b78;
  font-size: 0.92rem;
  line-height: 1.5;
}

.associated-center-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  color: #fff;
  background: var(--csjsky, #008ea9);
  border-radius: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.associated-center-map-button:hover {
  color: #fff;
  background: #00748d;
  box-shadow: 0 8px 18px rgba(0, 142, 169, 0.24);
  transform: translateY(-2px);
}

.associated-center-map-button svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 700px) {
  .associated-centers-wrap {
    padding: 2.75rem 1rem 4rem;
  }

  .associated-center-card {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.4rem;
  }

  .associated-center-image img {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .associated-center-details {
    grid-template-columns: 1fr;
  }

  .associated-center-map-button {
    width: 100%;
  }
}
