.social-platforms {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #1d293d;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-platforms__container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.social-platforms__header {
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.social-platforms__title {
  margin: 0;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.social-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.social-platforms__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.social-platforms__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.social-platforms__icon-wrapper {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.social-platforms__card:hover .social-platforms__icon-wrapper {
  transform: scale(1.1);
}

.social-platforms__icon {
  width: 20px;
  height: 20px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-platforms__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-platforms__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .social-platforms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-platforms__grid {
    grid-template-columns: 1fr;
  }

  .social-platforms__card {
    padding: 2rem;
  }
}
