.related-services {
  width: 100%;
  background-color: #f8f9fa;
  padding: 96px 0;
}

.related-services__inner {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
}

.related-services__title {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: #1c2545;
  margin: 0 0 48px;
  text-align: center;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.related-services__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e5e7eb;
}

.related-services__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.related-services__card h3 {
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1c2545;
  margin: 0;
}

.related-services__card p {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
  margin: 0;
  flex: 1;
}

.related-services__arrow {
  font-size: 20px;
  color: #c5a880;
  font-weight: 600;
}

@media (max-width: 768px) {
  .related-services {
    padding: 64px 0;
  }

  .related-services__grid {
    grid-template-columns: 1fr;
  }
}
