@charset "utf-8";

.store-section--services {
  padding: clamp(42px, 5vw, 64px) 0;
  background: var(--store-warm);
}

.store-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.store-service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--store-border);
  background: #fff;
}

.store-service-card h3 {
  margin: 0 0 12px;
  color: var(--store-navy);
  font-size: 18px;
  line-height: 1.5;
}

.store-service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.store-service-card h3 a:hover,
.store-service-card h3 a:focus-visible {
  color: var(--store-blue);
  text-decoration: underline;
}

.store-service-card p {
  margin: 0 0 16px;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.8;
}

.store-service-card__more {
  margin-top: auto;
  color: var(--store-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.store-service-card__more:hover,
.store-service-card__more:focus-visible {
  text-decoration: underline;
}

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

  .store-service-card {
    padding: 20px;
  }
}
