.oc-services {
  --gap: clamp(16px, 3vw, 28px);
  --radius: 18px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  --brand: #7e1f31;
  --text: #13223a;
  --link: #0a52cc;
  color: var(--text);
}

.oc-services ul li {
  padding: 0;
}

.oc-list {
  display: grid;
  gap: var(--gap);
  margin: 0;
  padding: 0;
}

.service {
  background: #fff;
  overflow: hidden;
}

.service__media {
  position: relative;
  min-height: 220px;
}

.service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service__check {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.service__check-svg {
  width: 100%;
  height: 100%;
}

.service__check-svg circle {
  fill: #fff;
}

.service__check-svg path {
  fill: #cf264a;
}

.service__body p {
  margin: 0 0 10px;
}

.service__body ul, .service__body ol {
  padding-left: 1.25rem;
}

a.service__link {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: .18em;
  padding: .375rem .25rem;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
  border-radius: .25rem;
}

a:hover {
  text-decoration-thickness: .14em;
}

a:active {
  text-decoration-thickness: .2em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
