/* =====================================================
   WP SEKOLAHKU - GLOBAL
   ===================================================== */
.wp-sekolahku-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-sekolahku-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.wp-sekolahku-list li:last-child {
    border-bottom: none;
}

/* =====================================================
   PENGUMUMAN
   ===================================================== */
.pengumuman-list li strong {
    color: #1f2937;
}

/* =====================================================
   AGENDA
   ===================================================== */
.agenda-list li strong {
    color: #2563eb;
}

/* =====================================================
   BERITA
   ===================================================== */
.wp-sekolahku-berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.berita-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.berita-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.berita-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.berita-card h4 {
    font-size: 16px;
    margin: 12px;
    color: #111827;
}

/* =====================================================
   GURU & STAFF GRID
   ===================================================== */
.wp-sekolahku-guru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.guru-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.guru-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.guru-nama {
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0 4px;
    color: #111827;
}

.guru-jabatan {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.guru-nip {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}

/* =====================================================
   GURU & STAFF CAROUSEL – PROFILE STYLE
   (MATCH REFERENCE IMAGE)
   ===================================================== */

.guru-profile-card {
    text-align: center;
}

.guru-profile-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
}

.guru-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elementor-testimonial-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
}

.elementor-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.elementor-testimonial-job {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

/* =====================================================
   POPUP INFO
   ===================================================== */
#wp-sekolahku-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

#wp-sekolahku-popup {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    padding: 24px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    animation: wpSekolahKuZoom .3s ease;
}

#wp-sekolahku-popup .popup-content {
    font-size: 15px;
    color: #1f2937;
}

#wp-sekolahku-popup .popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

#wp-sekolahku-popup a {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* =====================================================
   ANIMATION
   ===================================================== */
@keyframes wpSekolahKuZoom {
    from {
        transform: scale(.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {

    .guru-profile-photo img {
        width: 160px;
        height: 160px;
    }

    .wp-sekolahku-profile-carousel .swiper-button-prev,
    .wp-sekolahku-profile-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}
