.news-section {
    background-color: #e8f5e8;
    padding: 60px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.news-image-detail {
    width: 100%;
    height: 600px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
}

.news-title {
    font-weight: 600;
    margin: 10px 0;
}

.news-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.3;
}

.news-excerpt-detail {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.3;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.news-illustration {
    max-width: 300px;
    margin: 20px auto;
}

.custom-pagination .page-link {
    border: none;
    background-color: transparent;
    color: black;
    font-weight: bold;
    padding: 0.5rem 1rem;
}

.custom-pagination .page-item.active .page-link {
    background-color: #003840; /* Warna lingkaran */
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.custom-pagination .page-item .page-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}