/* Organization Description Section */
.org-description {
  max-width: 95%;
  width: 100%;
  margin: 30px auto 40px;
  padding: 0 20px;
}

.org-description-content {
  background: linear-gradient(135deg, #4f5eaf 0%, #6b7bc4 100%);
  border-radius: 12px;
  padding: 32px 40px;
  box-shadow: 0 6px 20px rgba(79, 94, 175, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.org-description-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.org-description-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.org-description-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: justify;
  text-align-last: center;
}

@media (max-width: 768px) {
  .org-description {
    max-width: 96%;
    margin: 20px auto 30px;
    padding: 0 15px;
  }
  
  .org-description-content {
    padding: 24px 28px;
    border-radius: 10px;
  }
  
  .org-description-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .org-description-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .org-description {
    max-width: 97%;
    margin: 15px auto 25px;
    padding: 0 10px;
  }
  
  .org-description-content {
    padding: 20px 22px;
    border-radius: 8px;
  }
  
  .org-description-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .org-description-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
}

/* Slideshow Section */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    margin: 40px auto 24px;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  
  .slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 900ms ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
  }
  
  .slideshow .slide.is-visible {
    opacity: 1;
  }
  
  .slide-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(79, 94, 175, 0.78);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .slide-ctrl:hover {
    background: rgba(79, 94, 175, 0.95);
    transform: translateY(-50%) scale(1.05);
  }
  
  .slide-ctrl:focus-visible {
    outline: 3px solid #f4c430;
    outline-offset: 2px;
  }
  
  .slide-ctrl.prev { left: 10px; }
  .slide-ctrl.next { right: 10px; }
  
  @media (max-width: 900px) {
    .slideshow { max-width: 640px; }
  }
  
  @media (max-width: 700px) {
    .slideshow { max-width: 560px; }
    .slide-ctrl { width: 36px; height: 36px; line-height: 36px; font-size: 18px; }
  }
  
  @media (max-width: 560px) {
    .slideshow { max-width: 480px; border-radius: 10px; }
    .slide-ctrl { width: 34px; height: 34px; line-height: 34px; font-size: 17px; }
  }
  
  @media (max-width: 480px) {
    .slideshow { max-width: 94%; min-height: 200px; }
    .slide-ctrl { width: 32px; height: 32px; line-height: 32px; font-size: 16px; }
  }
  