.content {
    max-width: 1000px;
    width: 95%;
    /* margin: 120px auto 80px; */
    background: none !important;
    padding: 0px !important;
    /* atas menyesuaikan navbar fixed */
    text-align: left;
}

.blogs-list {
    /* max-width: 900px; */
    max-width: 100%;
    margin-top: 40px;
    /* margin: 40px auto; */
    /* padding: 0 20px; */
}

.blogs-list h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--accent, #FFD54F);
    font-weight: 700;
}

.blogs-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blogs-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 18px;
    transition: transform 0.25s ease, background 0.25s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.blogs-list li:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.blogs-list h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.blogs-list p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation styles for blog list items */
.blogs-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.blogs-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.blogs-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.blogs-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.blogs-list li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-thumb {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
}

.blog-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    /* remove underline */
    color: inherit;
    /* use parent text color */
}

.blog-item:hover {
    text-decoration: none;
    /* keep no-underline on hover */
}

.blog-item h3 {
    text-decoration: none;
}

.blog-item .blog-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0;
}

.blog-item .blog-text {
    flex: 1;
}

@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-item .blog-thumb {
        width: 100%;
        height: 200px;
        margin-bottom: 12px;
    }
}

/* Pagination */
.pagination-wrap {
    margin: 28px 0 10px;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    display: inline-flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.page-item {}

.page-item.disabled .page-link {
    pointer-events: none;
    opacity: 0.5;
}

.page-item.active .page-link {
    background: var(--accent, #FFD54F);
    color: #000;
    border-color: rgba(255, 213, 79, 0.85);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}


.page-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* Improved Pagination Styles */
.page-link {
    border-radius: 50px;
    padding: 0 14px;
    min-width: 42px;
    height: 42px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s;
}

.page-link:hover {
    background: var(--accent, #FFD54F);
    color: #000;
    border-color: rgba(255, 213, 79, 0.85);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #FFD54F, #FFB300);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.05);
    color: #777;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    cursor: not-allowed;
}