/* Artikel & Berita */
.carousel-item {
    height: 100%;
}

.carousel-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Konten Berita */
.news-content {
    padding: 30px 0;
    background-color: var(--light-color);
}

.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-img {
    height: 300px;
    object-fit: cover;
}

.news-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Sidebar Kategori */
.category-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.category-title {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    margin-bottom: 12px;
}

.category-link {
    display: block;
    padding: 8px 15px;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Pagination */
.news-pagination {
    margin-top: 40px;
    width: 100%;
    overflow-x: auto;
}

.pagination {
    flex-wrap: nowrap;
    white-space: nowrap;
    display: inline-flex;
    min-width: 100%;
}

.page-item {
    display: inline-block;
    margin-right: 5px;
}

/* Untuk ellipsis dan disabled items */
.page-item.disabled .page-link,
.page-item:not(.active) .page-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40px;
}

/* Active page tetap terlihat penuh */
.page-item.active .page-link {
    max-width: none;
    white-space: nowrap;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    margin: 0 5px;
    border-radius: 8px !important;
    min-width: 40px;
    text-align: center;
    font-size: 0.875rem;
    min-width: auto;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-link:hover {
    color: var(--secondary-color);
    background-color: #f8f9fa;
}

@media (max-width: 360px) {
    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media(max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    .category-sidebar {
        margin-top: 50px;
        position: static;
    }
}