.social-section {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  background: none;
}

.social-section .social-slider-container {
  max-width: 680px;
  width: 100%;
}

.social-section .social-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* دسکتاپ: 3 ستون مساوی */
  gap: 1.5rem;
  width: 100%;
}

/* تبلت و موبایل استاندارد: ۲ ستون مساوی */
@media (max-width: 767px) {
  .social-section .social-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* موبایل خیلی کوچک (زیر ۲۸۰ پیکسل): ۱ ستون */
@media (max-width: 279px) {
  .social-section .social-slider {
    grid-template-columns: 1fr;
  }
}

.social-section .social-card {
  box-sizing: border-box;
  width: 100%;
  background: #a67c52;
  border: 1px solid #6b4f24;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
  touch-action: manipulation;
}

.social-section .social-card:hover {
  transform: scale(1.02);
}

.social-section .social-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #6b4f24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: #fff;
  overflow: hidden;
}

.social-section .social-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-section .social-id {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-section .platform-name {
  font-size: 13px;
  color: #fff;
  margin-bottom: 1rem;
}

.social-section .follow-button {
  background-color: #7b4f24;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.social-section .follow-button:hover {
  background-color: #5a3b17;
}

.social-section .social-item {
  text-decoration: none;
  color: inherit;
  pointer-events: none; /* لینک غیرفعال؛ فقط برای نمایش */
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}