.featured-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: calc(0.24rem - 1px);
}

.single-img {
    width: 100%;
    object-fit: cover;
    border-radius: calc(0.24rem - 1px);
}


.post-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: calc(0.24rem - 1px);
}

.card-height {
    height: 330px;
    position: relative;
}

.unstyle-categories {
    text-decoration: none;
}

/* ===== HERO BACKGROUND ===== */
.gov-hero-elite {
    min-height: 80vh;
    display: flex;
    align-items: center;

    background:
        linear-gradient(180deg,
            rgba(59, 204, 240, 0.95),
            rgba(33, 139, 245, 0.85)),
        radial-gradient(circle at top right,
            rgba(11, 227, 227, 0.175),
            transparent 55%);

    position: relative;
    overflow: hidden;
}

/* subtle light layer */
.gov-hero-elite::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(6, 180, 203, 0.312),
            transparent);
}

/* CENTER */
.hero-center {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Hero general */
.hero-elite {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2, #50e3c2);
    z-index: 1;
}

.hero-bg .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 2;
}

#hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Hero content */
.hero-container {
    position: relative;
    z-index: 4;
    text-align: center;
}

.hero-card {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 2rem 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.wave {
    fill: rgba(255,255,255,0.3);
    animation: wave1 8s ease-in-out infinite;
    will-change: transform;
}

.wave2 {
    fill: rgba(255,255,255,0.2);
    animation: wave2 10s ease-in-out infinite;
}

.wave3 {
    fill: rgba(255,255,255,0.15);
    animation: wave3 12s ease-in-out infinite;
}

/* Animasi keyframes untuk smooth wave */
@keyframes wave1 {
    0% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(-20%,0,0); }
    100% { transform: translate3d(0,0,0); }
}

@keyframes wave2 {
    0% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(-15%,0,0); }
    100% { transform: translate3d(0,0,0); }
}

@keyframes wave3 {
    0% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(-10%,0,0); }
    100% { transform: translate3d(0,0,0); }
}


@keyframes wave-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-card {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}


/* Header */
.table-header {
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    /* dikurangi padding */
    background: rgba(255, 255, 255, 0.2);
}

/* Baris Dokumen */
.table-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0.6rem 1rem;
    /* dikurangi padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px) saturate(180%);
}

.table-row:hover {
    transform: translateY(-1px);
    /* gerakan hover lebih halus */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.15);
}

/* Cell */
.cell {
    padding: 0.25rem 0.5rem;
    /* lebih compact */
    word-break: break-word;
    font-size: 0.9rem;
    /* sedikit lebih kecil agar rapih */
}

/* Responsive */
@media (max-width: 992px) {
    .table-header {
        display: none;
    }

    .table-row {
        flex-direction: column;
        padding: 0.5rem 0.75rem;
        /* dikurangi padding */
    }

    .cell {
        width: 100%;
        padding: 0.2rem 0;
    }

    .cell::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 0.15rem;
        /* lebih rapat */
        font-size: 0.85rem;
    }
}