/* Services Section Styles matching Figma Prototype */

#section-services {
  background-color: #FFFFFF;
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #F8F8F8;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-thumb img {
  transform: scale(1.03);
}

.service-info {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-thumb {
    aspect-ratio: 16 / 10;
  }
}
