  
        /* CSS untuk headline */
        .headline {
            text-align: center;
        }
        .headline img {
            width: 100%;
            height: 550px;
            transition: opacity 0.5s ease-in-out; /* Efek transisi */
            opacity: 1;
              object-fit: cover; /* Memastikan gambar menutupi area tanpa merusak aspek rasio */
        }
        .headline img.fade-out {
            opacity: 0;
        }
        .headline .title {
            margin-top: 8px;
            font-size: 1.2em;
            font-weight: bold;
        }

        /* CSS untuk galeri thumbnail */
        .gallery {
            display: flex;
            gap:5px;
            margin-top:5px;
            justify-content: left;
        }
        .thumbnail {
            text-align: center;
        }
        .gallery img {
            cursor: pointer;
            width: 100%;
            height: 100px;
            border: 2px solid #ddd;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.1);
            border-color: #333;
        }
        .thumbnail .title {
            margin-top: 5px;
            font-size: 0.9em;
        } 
    