.social-cards-container {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.social-cards-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.social-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  cursor: pointer;
}

.social-card:hover {
  border-color: #a80a2e;
  box-shadow: 0 8px 16px rgba(168, 10, 46, 0.15);
  transform: translateY(-4px);
}

.social-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #a80a2e;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.social-card:hover .social-card-icon {
  transform: scale(1.15);
  color: #8a0829;
}

.social-card-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.social-card-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
  text-align: left;
}

.social-card-link {
  display: inline-block;
  background-color: #a80a2e;
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid #a80a2e;
}

.social-card-link:hover {
  background-color: transparent;
  color: #a80a2e;
  text-decoration: none;
}

.social-card-icon-img {
  max-width: 80px;
  max-height: 80px;
  transition: all 0.3s ease;
}

.social-card:hover .social-card-icon-img {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .social-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .social-card {
    padding: 1.5rem 1rem;
    min-height: 240px;
  }

  .social-card-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .social-card-name {
    font-size: 1rem;
  }

  .social-card-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .social-card-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .social-card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .social-card {
    min-height: auto;
  }
}
