.further-information {
  padding: clamp(58px, 7vw, 88px) 32px clamp(68px, 8vw, 98px);
  background: #f6f6f9;
  color: #191919;
}

.further-information__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.further-information__title {
  margin: 0 0 clamp(34px, 4vw, 48px);
  font-size: clamp(2.2rem, 4.4vw, 3.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: center;
}

.further-information__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.further-card {
  position: relative;
  display: grid;
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  color: #ffffff;
}

.further-card--centered {
  grid-column: 1 / -1;
  width: calc(50% - 13px);
  justify-self: center;
}

.further-card__image,
.further-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.further-card__image {
  z-index: -2;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.further-card:first-child .further-card__image {
  object-position: 50% 22%;
}

.further-card__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 13, 25, 0.54), rgba(4, 9, 18, 0.78)),
    linear-gradient(90deg, rgba(7, 28, 70, 0.18), transparent);
}

.further-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  text-align: center;
}

.further-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.further-card__icon--wide {
  border-radius: 11px;
}

.further-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.further-card p {
  max-width: 520px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.further-card__button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.further-card__button:hover,
.further-card__button:focus-visible,
.further-card__social-link:hover,
.further-card__social-link:focus-visible {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.further-card__button:focus-visible,
.further-card__social-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.further-card__socials {
  display: flex;
  justify-content: center;
}

.further-card__social-link {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  color: #111827;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.further-card:hover .further-card__image {
  transform: scale(1.045);
}

@media (max-width: 860px) {
  .further-information {
    padding-right: 22px;
    padding-left: 22px;
  }

  .further-information__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .further-card--centered {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .further-card {
    min-height: 380px;
  }

  .further-card__content {
    padding: 28px 22px;
  }

  .further-card__button {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .further-card__image,
  .further-card__button,
  .further-card__social-link {
    transition: none;
  }
}
