.service-overview-8__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
}

.service-overview-8__image-wrap img {
  display: block;
  width: 100%;
  border-radius: 38px;
  object-fit: cover;
}

.service-overview-8__content .home-8-copy {
  max-width: 760px;
}

.service-overview-8__label {
  margin: 14px 0 10px;
  color: #555962;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.service-overview-8__offerings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-overview-8__offering {
  display: block;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(90deg, #fff8d1 0%, #fbf3bf 100%);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-overview-8__offering:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(24, 27, 33, 0.08);
}

.service-overview-8__offering-icon {
  color: #2c2f34;
}

.service-overview-8__offering-icon svg {
  width: 28px;
  height: 28px;
}

.service-overview-8__offering h3 {
  margin: 12px 0 0;
  color: #464a51;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .service-overview-8__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .service-overview-8__offerings {
    grid-template-columns: 1fr;
  }
}
