.image-left {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.image-right {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.image-center {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

p {
    color: black;
}

.bg-page-header {
    position: relative;
}

.bg-visimisi {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(/frontend/sge/img/sge-banner.webp) center center no-repeat;
    background-size: cover;
    visibility: visible;
}

.bg-page-header:after {
    background: rgba(244, 99, 11, 0.92);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.bg-page-header .page-header {
    text-align: center;
    border-bottom: none;
    margin: 0;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.page-title h2 {
    color: #fff;
    text-transform: uppercase;
}

/* Solid Social Share Buttons */
.btn-social,
.btn-social:visited,
.btn-social:focus,
.btn-social:hover,
.btn-social:active {
    color: #ffffff;
    text-decoration: none;
    transition: opacity .15s ease-in-out;
}

.btn-social:hover,
.btn-social:active {
    opacity: .75;
}

.btn-fb {
    background-color: #3b5998;
}

.btn-tw {
    background-color: #1da1f2;
}

.btn-in {
    background-color: #0077b5;
}

.btn-gp {
    background-color: #db4437;
}

.btn-rd {
    background-color: #ff4500;
}

.btn-hn {
    background-color: #ff4000;
}

/* Outline Social Share Buttons */
.btn-social-outline {
    background-color: transparent;
    background-image: none;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.btn-fb-outline {
    color: #3b5998;
    border-color: #3b5998;
}

.btn-fb-outline:hover,
.btn-fb-outline:active {
    color: #ffffff;
    background-color: #3b5998;
}

.btn-tw-outline {
    color: #1da1f2;
    border-color: #1da1f2;
}

.btn-tw-outline:hover,
.btn-tw-outline:active {
    color: #ffffff;
    background-color: #1da1f2;
}

.btn-in-outline {
    color: #0077b5;
    border-color: #0077b5;
}

.btn-in-outline:hover,
.btn-in-outline:active {
    color: #ffffff;
    background-color: #0077b5;
}

.btn-gp-outline {
    color: #db4437;
    border-color: #db4437;
}

.btn-gp-outline:hover,
.btn-gp-outline:active {
    color: #ffffff;
    background-color: #db4437;
}

.btn-rd-outline {
    color: #ff4500;
    border-color: #ff4500;
}

.btn-rd-outline:hover,
.btn-rd-outline:active {
    color: #ffffff;
    background-color: #ff4500;
}

.btn-hn-outline {
    color: #ff4000;
    border-color: #ff4000;
}

.btn-hn-outline:hover,
.btn-hn-outline:active {
    color: #ffffff;
    background-color: #ff4000;
}

/* Fluid Styles */

.fluid {
    display: flex;
}

.fluid a {
    flex-grow: 1;
    margin-right: 0.25rem;
}

.fluid a:last-child {
    margin-right: 0rem;
}


 
    .single-blog-post {
        height: 100%; /* Penting untuk Flexbox/Grid agar kolom punya tinggi yang sama */
        display: flex;
        flex-direction: column;
        border: 1px solid #e0e0e0; /* Opsional: Tambahkan border untuk visualisasi kolom */
        border-radius: 8px; /* Opsional: Sedikit sudut melengkung */
        overflow: hidden; /* Penting untuk efek zoom gambar */
    }

    .blog-thumbnail {
        height: 200px; /* Atur tinggi gambar yang seragam */
        overflow: hidden; /* Memastikan gambar yang di-zoom tidak keluar dari area */
        position: relative; /* Diperlukan untuk penempatan elemen anak */
    }

    .blog-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Penting! Memastikan gambar memenuhi ruang tanpa terdistorsi */
        transition: transform 0.3s ease-in-out; /* Animasi untuk efek zoom */
    }

    .blog-thumbnail a:hover img {
        transform: scale(1.1); /* Efek zoom saat hover */
    }

    .blog-content {
        padding: 15px;
        display: flex;
        flex-direction: column;
        flex-grow: 1; /* Memungkinkan konten ini mengisi sisa ruang vertikal */
        justify-content: space-between; /* Meratakan konten di dalam blog-content */
    }

    .blog-content .post-title {
        font-size: 1.2em; /* Sesuaikan ukuran font judul */
        line-height: 1.4;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Batasi judul hingga 3 baris */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 3em; /* Minimal tinggi untuk judul, sesuaikan jika perlu */
        color: #182333;
    }

    .blog-content .post-date {
        font-size: 0.85em;
        color: #888;
        margin-bottom: 5px;
    }

    .blog-content .post-author {
        font-size: 0.9em;
        color: #555;
        margin-top: auto; /* Mendorong kategori ke bawah */
    }

    /* Menggunakan Flexbox pada parent row untuk meratakan tinggi kolom */
    .row {
        display: flex;
        flex-wrap: wrap; /* Penting untuk responsivitas */
        align-items: stretch; /* Memastikan semua item di baris memiliki tinggi yang sama */
    }
