@keyframes glowMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.4;
    }
}

.mading-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding-left: 0;
}

@media (max-width: 768px) {
    .mading-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mading-container {
        grid-template-columns: 1fr;
    }
}

.mading-card {
    background: #0c1c36;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.3);
}

.mading-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, #004d91, #ff70d9, #004d91);
    animation: rotate 8s linear infinite;
    z-index: 0;
    opacity: 0.2;
}

.mading-card>* {
    position: relative;
    z-index: 2;
}

/* ✅ Memperbesar gambar lebih proporsional */
.mading-card img {
    width: auto;
    max-width: 100%;
    height: auto;
    /* biar ikut tinggi asli gambar */
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
    transition: transform 0.4s ease;
}


.mading-card:hover img {
    transform: scale(1.05);
}

.mading-card-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #00cfff;
    text-shadow: 0 0 5px #00f2ff, 0 0 10px #00bfff;
    animation: flicker 2s infinite;
    margin-bottom: 10px;
}

.mading-card-notes {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.mading-card-date {
    font-size: 13px;
    color: #aaa;
    text-align: right;
    font-style: italic;
}

.mading-card .glow-link a {
    color: #00cfff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mading-card .glow-link a:hover {
    color: #534951;
    text-shadow: 0 0 8px #6a6468;
}

/* ✅ Tambahan: Gambar di modal lebih besar & proporsional */
#carouselInner img {
    max-height: 90vh;
    object-fit: contain;
    width: 100%;
}