/* Container untuk scroll */
.scrollable-container {
    max-height: 500px; /* Sesuaikan tinggi maksimal sesuai kebutuhan */
    overflow-y: auto; /* Membuat konten bisa discroll vertikal */
    padding-right: 10px; /* Memberi jarak agar scrollbar tidak menutupi konten */
}

/* Gaya untuk scrollbar */
.scrollable-container::-webkit-scrollbar {
    width: 8px; /* Lebar scrollbar */
}

.scrollable-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Warna latar scrollbar */
    border-radius: 10px;
}

.scrollable-container::-webkit-scrollbar-thumb {
    background: #888; /* Warna scrollbar */
    border-radius: 10px;
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Warna scrollbar saat dihover */
}
.article {
    position: relative; /* Untuk memungkinkan child absolute */
    background: url("../images/portfolio/grid/7.jpg") no-repeat center center; /* URL gambar */
    background-size: cover; /* Sesuaikan gambar agar menutupi area */
    z-index: 0; /* Letakkan di belakang konten */
}

/* Overlay dengan efek keabu-abuan dan transparansi */
.article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fbfbffb9; /* Overlay hitam dengan transparansi lebih rendah */
    z-index: 1; /* Letakkan di atas background */
}

.article .container {
    position: relative;
    z-index: 2; /* Letakkan di atas overlay */
}
/* Styling untuk button */
.responsive-button {
    display: inline-block;
    background-color: #081d40;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;

    /* Pastikan teks di dalam button bisa turun ke bawah */
    white-space: normal; /* Memungkinkan teks menjadi multiline */
    word-wrap: break-word; /* Memastikan kata panjang pecah ke baris baru jika perlu */
}

/* Tambahan opsional: Responsif untuk tombol */
@media (max-width: 768px) {
    .responsive-button {
        font-size: 14px; /* Sesuaikan ukuran font untuk HP */
        padding: 8px 16px;
    }
    .responsive-row {
        flex-direction: row; /* Baris untuk HP */
        justify-content: space-between;
        align-items: center;
    }

    .instagram-text {
        display: block; /* Tampilkan teks di HP */
        width: 58%; /* 7 dari 12 kolom */
    }

    .ig {
        width: 40%; /* 5 dari 12 kolom */
        height: 300px; /* Tinggi lebih kecil untuk iframe di HP */
    }
}
/* Styling untuk frame Instagram */
.frame-ig {
    margin-top: 20px;
    background-color: #081d40;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.responsive-row {
    display: flex;
    flex-direction: column; /* Default: Kolom (untuk desktop/laptop) */
    align-items: center;
}

.instagram-text {
    display: none; /* Default: Teks tidak muncul */
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.ig {
    width: 100%;
    height: 450px;
    border: none;
}
/* Responsif untuk Tablet (max-width: 1024px) */
@media (max-width: 1000px) {
    .responsive-row {
        flex-direction: row; /* Baris untuk Tablet */
        justify-content: space-between;
        align-items: center;
    }

    .instagram-text {
        display: block; /* Tampilkan teks di Tablet */
        width: 50%; /* Teks 6 dari 12 kolom */
        font-size: 16px; /* Ukuran teks lebih besar untuk tablet */
    }

    .ig {
        width: 48%; /* Instagram iframe 6 dari 12 kolom */
        height: 400px; /* Tinggi iframe di Tablet */
    }
}

/* Responsif untuk HP (max-width: 768px) */

/* Styling Artikel */
.article {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 16px; /* Border halus untuk artikel */
}

.ig {
    border-radius: 16px;
}

/* Styling Card */
.article-card {
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Efek bayangan halus */
    border-radius: 16px; /* Membuat card memiliki sudut melengkung */
    padding: 20px;
    background-color: #ffffff; /* Warna latar putih */
    overflow: hidden;
}

/* Gambar dengan Zoom Effect */
.zoom img {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efek transisi */
    border-radius: 12px; /* Membuat gambar memiliki sudut melengkung */
}

.zoom img:hover {
    transform: scale(1.1); /* Efek Zoom saat hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Bayangan saat di-zoom */
}

/* Tombol */
.btn-primary {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
}

.btn-primary {
    background-color: #fff;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 8px; /* Membuat tombol lebih lembut */ /* Memberi jarak lebih ke bawah */
}

.btn-primary:hover {
    background-color: black;
    color: #fff;
}
.judul {
    margin-left: 20px;
}
