.services {
  width: 100%;
  padding: 4em 0 8em 0;
  background: #FAFAF7;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}

.services .callout {
  background-color: rgba(0, 0, 0, 0.08);
  color: #0A0A0A;
}

.services-col:nth-child(1) {
  flex: 0 0 auto;
  text-align: center;
  margin-bottom: 2em;
}

.services-col:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75em;
  width: 100%;
}

.services-row {
  width: 100%;
  display: flex;
  gap: 0.6em;
}

.service-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 10px;
}

.service-icon {
  position: relative;
  top: -8%;
  font-size: 52px;
  color: #C42F33;
}

.service-item.service-item--photo {
  position: relative;
  overflow: hidden;
}

.service-item.service-item--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.service-item.service-item--photo .service-title {
  z-index: 2;
}

.service-item.service-item--photo .service-title p {
  color: #FFFFFF !important;
}

.service-title,
.service-title p {
  position: absolute;
  bottom: 10%;
  color: #0A0A0A !important;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .services {
    flex-direction: column;
    padding: 3em 1.5em 6em 1.5em;
  }

  .services-row {
    width: 100%;
    gap: 0.5em;
  }

  .service-icon {
    font-size: 32px;
  }

  .service-title p {
    font-size: 13px;
  }

  .service-item {
    aspect-ratio: 4/3;
  }
}
