/* Executives links page — link-in-bio style */

.links-page {
  background: linear-gradient(135deg, #ffffff 0%, #f3fdfd 100%);
  padding: 2.5rem 0 4rem;
  min-height: 60vh;
}

.links-page__title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  color: #043548;
}

.links-page__section {
  margin-bottom: 2.5rem;
  text-align: center;
}

.links-page__section .social-icon-row__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #043548;
  margin-bottom: 1rem;
}

.links-page__section .social-icon-row {
  justify-content: center;
  gap: 14px;
}

.links-page__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.links-page__section a:hover .links-page__icon {
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .links-page {
    padding: 2rem 0 3rem;
  }

  .links-page__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .links-page__section .social-icon-row__title {
    font-size: 1.1rem;
  }

  .links-page__icon {
    width: 44px;
    height: 44px;
  }
}
