/* sections/benefits.css (Figma: Why Sunderland?) */

.c-why {
  padding: 70px 0 150px;
  background: #fff;
}

.c-why__title {
  font-family: var(--font-sans);
  font-weight: var(--fw-900);
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-orange);
  margin: 0;
  text-align: center;
}

.c-why__subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  line-height: var(--lh-22);
  color: var(--color-gray);
  text-align: center;
  max-width: 46ch;
  margin: 8px auto 0;
}

.c-why__subtitle strong {
  font-weight: var(--fw-700);
  font-family: var(--font-sans);
  color: var(--color-black);
}

.c-why__cards {
  display: grid;
  gap: 28px;
  margin-top: 46px;
  justify-content: center;
}

.c-why-card {
  width: 296px; /* ~296x296 no Figma */
  height: 296px;
  position: relative;
  padding: 0;
  box-shadow: none;
}

.c-why-card::before {
  content: none;
}

.c-why-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.c-why-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 28px;
  padding-top: 50px;
}

.c-why-card__text {
  margin: 6px 0 0;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14.77px; /* Figma */
  line-height: 19px; /* Figma */
  letter-spacing: var(--ls-h1);
  color: #fff;
}

.c-why-card__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-900);
  letter-spacing: var(--ls-h1);
  color: #fff;
  margin-bottom: 15px;
}

.c-why-card__titleLine {
  display: block;
  font-size: 35.77px; /* Figma */
  line-height: 30px; /* Figma (2ª linha) */
}

.c-why-card__titleLine--big {
  line-height: 76px; /* Figma (1ª linha) */
}

@media (min-width: 1024px) {
  .c-why__cards {
    grid-template-columns: repeat(3, 296px);
    gap: 30px;
  }

  .c-why-card {
    height: 296px;
  }
}

