.elementor-5452 .elementor-element.elementor-element-cd672cd{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-992cf38 */.news-section-title {
        text-align: center;
        color: #004466;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .news-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .news-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #eee;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .news-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .news-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-date {
        font-size: 12px;
        color: #888;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .news-content h3 {
        font-size: 19px;
        color: #003366;
        margin: 0 0 12px 0;
        line-height: 1.4;
    }

    .news-content p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .btn-read-more {
        margin-top: auto;
        color: #00a36c;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }

    /* Pagination Styling */
  .pagination {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 8px;
    }

    .pagination .page-numbers:hover:not(.current) {
        background: #f0f0f0;
    }
    
    .news-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        /* Tinggi minimal agar pagination tidak naik terlalu tinggi di layar besar */
        min-height: 70vh; 
    }

    .news-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        /* Area ini akan mengambil ruang kosong yang ada */
        flex: 1 0 auto; 
    }

    .pagination {
        /* Inti dari posisi tengah bawah */
        display: flex;
        justify-content: center; 
        align-items: center;
        margin-top: 50px; /* Jarak dari konten terakhir */
        margin-bottom: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        width: 100%;
    }

    /* Styling angka pagination agar rapi di tengah */
    .pagination .page-numbers {
        display: inline-block;
        padding: 8px 16px;
        margin: 0 4px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        color: #333;
        text-decoration: none;
        transition: all 0.2s;
    }

    .pagination .page-numbers.current {
        background: #00a36c;
        color: #fff;
        border-color: #00a36c;
        font-weight: bold;
    }

    .pagination .page-numbers:hover:not(.current) {
        background: #f4f4f4;
        border-color: #bbb;
    }/* End custom CSS */