.organisasi-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
}

/* Judul Halaman */
/* Judul Halaman - Full Width Background */
.page-title {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #4fc3f7, #263238); /* biru langit ke dark gray */
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.page-title h1 {
    font-size: 2rem;
    font-weight: 600;
}

.page-title i {
    margin-right: 10px;
}


/* Subjudul */
.org-subtitle {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Grid Layout */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Card Gambar */
.org-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.org-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.org-card p {
    padding: 15px;
    background-color: #fafafa;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Responsif */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 1.6rem;
    }

    .org-card img {
        height: 160px;
    }
}
