/* Organizations Section */
.organizations-section {
  padding: 80px 0;
  background: white;
}

.night-mode .organizations-section {
  background: transparent;
}

.organizations-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
  margin: 40px 0;
}

.organizations-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.org-card {
  min-width: calc(20% - 16px);
  background: white;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(65, 143, 222, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.night-mode .org-card {
  background: rgba(44, 62, 80, 0.6);
  border-color: rgba(65, 143, 222, 0.3);
}

.org-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(65, 143, 222, 0.15);
  border-color: var(--primary-blue);
}

.org-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--light-blue);
  border-radius: 50%;
  padding: 20px;
  transition: all 0.3s ease;
}

.org-card:hover .org-logo {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.org-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.org-card h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal-black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.night-mode .org-card h6 {
  color: white;
}

.org-acronym {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.org-card:hover .org-acronym {
  background: var(--accent-gold);
  color: var(--charcoal-black);
}

@media (max-width: 768px) {
  .org-card {
    min-width: calc(50% - 10px);
  }
  
  .organizations-slider-wrapper {
    padding: 0 50px;
  }
}
