@media (max-width: 820px) {
  .social-cards .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .social-cards .social-cards-grid {
    grid-template-columns: 1fr;
  }
}
.social-cards .social-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 4px 20px 4px 20px;
  box-shadow: 0 10px 30px rgba(11, 58, 55, 0.1);
  padding: 30px 24px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.social-cards .social-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -34px;
  width: 150px;
  height: 7px;
  background: linear-gradient(90deg, var(--teal-deep), var(--gold));
  transform: rotate(-45deg);
}
.social-cards .social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 58, 55, 0.18);
}
.social-cards .social-card h3 {
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.social-cards .social-card > div {
  color: var(--teal-mid);
}
.social-cards .social-card .social-card-content {
  font-size: 17px;
  font-size: clamp(max(16px, 10.2px), calc(17 * 0.0521vw), 17px);
}
.social-cards .social-card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin-top: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0 rgba(201, 160, 74, 0.5);
  animation: social-card-icon-breathe 2.4s ease-in-out infinite;
  transition: transform 0.2s ease !important;
}
.social-cards .social-card-icon:hover {
  animation: none;
  transform: scale(1.1);
}
.social-cards .social-card-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
@keyframes social-card-icon-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 160, 74, 0.45);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(201, 160, 74, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .social-cards .social-card-icon {
    animation: none;
  }
}
