@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Main Section */
#org-social-media {
  background: linear-gradient(to right, #243949 0%, #517fa4 100%);
  padding: 3rem 1.5rem;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

/* Title */
#org-social-media .section-title p:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Subtitle */
#org-social-media .section-title .subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Cards Layout */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  word-wrap: break-word;
}

/* Custom Colors */
.raahgiri {
  background: linear-gradient(135deg, rgba(46, 185, 113, 0.2), rgba(40, 180, 133, 0.4));
  border-left: 4px solid #2ecc71;
}

.gurujal {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.4));
  border-left: 4px solid #3498db;
}

.icct {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.4));
  border-left: 4px solid #9b59b6;
}

.si-img {
  width: 30px;
  height: 30px;
  transition: filter 0.3s ease;
}

/* [media-id="40269000000113756"] {
  margin-top: 50%;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
  #org-social-media {
    padding: 2rem 1rem;
  }

  #org-social-media .section-title p:first-child {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}
