/* Services page styles */

/* Service cards grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--card-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--color-bright-blue);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card-who {
  font-size: var(--font-size-small);
  color: var(--color-steel-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-body {
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: var(--line-height-body);
}

.service-card-cta {
  font-weight: 700;
  font-size: var(--font-size-small);
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

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

/* Strategy section */
.strategy-section p {
  margin-bottom: 1.25rem;
}

.strategy-section p:last-of-type {
  margin-bottom: 2rem;
}
