.service-explore {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(42, 109, 124, 0.18);
  border-left: 4px solid #c79861;
  border-radius: 1rem;
  background: #fffaf4;
  box-shadow: 0 10px 26px rgba(24, 72, 82, 0.08);
}

.service-explore h3 {
  margin: 0 0 0.75rem;
  color: #215f6d;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

.service-explore-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-explore-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0;
  color: #215f6d;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.service-explore-links a:hover {
  color: #153f49;
  text-decoration-thickness: 2px;
}

.service-explore-links a:focus-visible {
  outline: 2px solid #215f6d;
  outline-offset: 3px;
  border-radius: 2px;
}

.service-explore-group {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 109, 124, 0.18);
}

.service-explore-group h4 {
  margin: 0 0 0.5rem;
  color: #215f6d;
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .service-explore-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .service-explore-links {
    grid-template-columns: minmax(0, 1fr);
  }
}
