body {
    background-color: #0069d1;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}


/* Header */

.header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.header .logo {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}

.header .search-box {
    display: flex;
    justify-content: flex-end;
}

.search-box input {
    width: 250px;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}


/* Judul Section */

.section-title {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100%;
    margin: 15px auto 0;
    border-bottom: 2px dashed #bbb;
}


/* Grid Cards */

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 20px 0;
}


/* Card */

.card-modern {
    /* background: linear-gradient(135deg, #eeff01, #f9f9f9); */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 5px;
    position: relative;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content small {
    font-size: 0.85rem;
    color: #6c757d;
}

.card-content p {
    font-size: 0.95rem;
    color: #333;
}


/* Card Image */

.card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px;
}

.card-modern:hover .card-img-wrap img {
    transform: scale(1.05);
}


/* Card Content */

.card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* Tombol */

.card-content a.btn {
    /* align-self: flex-start; */
    padding: 8px 16px;
    /* border-radius: 25px; */
    text-decoration: none;
}


/* Pagination */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination .page-item .page-link {
    border-radius: 50% !important;
    margin: 0 5px;
    color: #007bff;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

#artikel-utama {
    border: 2px solid #f610dd;
    border-radius: 10px;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 1);
    border-radius: 10px;
}
