/* Pengurus Section - PERFECT ALIGNMENT */
.pengurus-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0a1f5c 0%, #1e3c72 50%, #2a5298 100%);
}

.pengurus-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem; /* Match about section */
    align-items: start;
}

/* Left Sticky Content */
.pengurus-left {
    position: sticky;
    top: 100px;
}

.pengurus-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.pengurus-label::before {
  content: '●';
  color: #00bfff;
  font-size: 0.8rem;
}

.pengurus-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pengurus-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Right Grid Content - BALANCED GAP */
.pengurus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; /* REDUCED: More balanced spacing */
  padding-bottom: 2rem;
  max-width: 100%;
}

.pengurus-card {
  position: relative;
  height: 350px;
  width: 100%;
  max-width: 320px; /* INCREASED: Better proportion with smaller gap */
  perspective: 1000px;
  cursor: pointer;
  margin: 0 auto;
}

.pengurus-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.pengurus-card:hover .pengurus-card-inner {
  transform: rotateY(180deg);
}

.pengurus-card-front,
.pengurus-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

.pengurus-card-front {
  background: #f0f0f0;
}

.pengurus-card-back {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  transform: rotateY(180deg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  color: white;
}

.pengurus-photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pengurus-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.pengurus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pengurus-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: white;
}

.pengurus-name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.pengurus-position {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Back Card Content */
.back-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.back-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  flex: 1;
}

.back-list li {
  font-size: 0.72rem;
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}

.back-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00bfff;
  font-size: 0.9rem;
}

.back-description {
  font-size: 0.8rem;
  line-height: 1.6;
  color: white;
}

/* Empty State untuk Pengurus */
.pengurus-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.pengurus-empty svg {
  margin: 0 auto 20px;
  opacity: 0.3;
}

.pengurus-empty h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 600;
}

.pengurus-empty p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pengurus-section {
    padding: 80px 40px;
  }

  .pengurus-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
  }

  .pengurus-left {
    position: relative;
    top: 0;
  }

  .pengurus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* Adjusted for tablet */
  }

  .pengurus-card {
    height: 320px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .pengurus-section {
    padding: 60px 20px;
  }

  .pengurus-container {
    padding: 0;
    gap: 2rem;
  }

  .pengurus-left {
    position: relative;
    top: 0;
  }

  .pengurus-title {
    font-size: 2rem;
  }

  .pengurus-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .pengurus-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pengurus-card {
    height: 350px;
    max-width: 100%;
    margin: 0 auto;
  }

  .pengurus-name {
    font-size: 0.9rem;
  }

  .pengurus-position {
    font-size: 0.75rem;
  }

  .pengurus-photo {
    height: 100%;
  }

  .back-title {
    font-size: 0.95rem;
  }

  .back-description,
  .back-list li {
    font-size: 0.75rem;
  }

  .pengurus-info {
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
  }
}

@media (max-width: 480px) {
  .pengurus-section {
    padding: 50px 16px;
  }

  .pengurus-container {
    gap: 1.5rem;
  }

  .pengurus-left {
    position: relative;
    top: 0;
  }

  .pengurus-title {
    font-size: 1.6rem;
  }

  .pengurus-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .pengurus-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pengurus-card {
    height: 320px;
    max-width: 100%;
    margin: 0 auto;
  }

  .pengurus-name {
    font-size: 0.85rem;
  }

  .pengurus-position {
    font-size: 0.7rem;
  }

  .pengurus-photo {
    height: 100%;
  }

  .back-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .back-description,
  .back-list li {
    font-size: 0.7rem;
  }

  .pengurus-card-back {
    padding: 1.3rem;
  }

  .pengurus-info {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}