/* ====== BASE LAYOUT ====== */
.informasi-publik-light {
    background: #ffffff;
    color: #111827;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

/* ====== TEXT COLORS ====== */
.text-brand {
    color: #111827;
    letter-spacing: 0.5px;
}

.informasi-publik-light h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #111827;
}

.informasi-publik-light h3 {
    font-size: 1.5rem;
    color: #374151;
}

.informasi-publik-light p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* ====== IMAGE WRAPPER ====== */
.img-wrapper-light {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #f9fafb;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-wrapper-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.25);
}

.image-protected {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ====== LIGHT GRADIENT SHADOW ====== */
.img-wrapper-light::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 70%,
        rgba(255, 255, 255, 0.4) 100%
    );
    pointer-events: none;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .informasi-publik-light {
        text-align: center;
        padding: 60px 20px;
    }

    .informasi-publik-light h1 {
        font-size: 2.2rem;
    }

    .informasi-publik-light h3 {
        font-size: 1.25rem;
    }

    .informasi-publik-light p {
        font-size: 1rem;
        text-align: justify;
    }

    .img-wrapper-light {
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .informasi-publik-light h1 {
        font-size: 1.8rem;
    }

    .informasi-publik-light h3 {
        font-size: 1.1rem;
    }

    .informasi-publik-light p {
        font-size: 0.95rem;
    }
}
