/* Events Page Styles */

.articles-section {
    padding: 2rem 0;
}

.articles-section h3 {
    font-family: "AdorHairlineExtraBold", sans-serif !important;
    color: black;
    font-size: 40px;
    font-weight: bolder !important;
}

.articles-section p {
    font-size: 16px;
    color: rgba(88, 88, 88, 1);
    font-weight: 500;
    font-style: normal;
}

.card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Pagination Styles */
.custom-pagination {
    margin-top: 2rem;
}

.custom-pagination .page-link {
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    text-align: center;
    margin: 0 0.5rem;
    color: black;
    background-color: transparent;
    transition: all 0.3s ease;
    min-width: 40px;
}

.custom-pagination .page-link:hover {
    background-color: rgba(211, 171, 85, 1);
    color: white;
}

.custom-pagination .page-item.active .page-link {
    background-color: rgba(211, 171, 85, 1);
    color: white;
    font-weight: bold;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: transparent;
    color: #aaa;
    border: none;
    cursor: not-allowed;
    opacity: 0.5;
}

.custom-pagination .page-item.disabled .page-link:hover {
    background-color: transparent;
    color: #aaa;
}

/* Loading State */
#occasionsContainer.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .articles-section h3 {
        font-size: 28px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .custom-pagination .page-link {
        padding: 8px 12px;
        margin: 0 0.25rem;
        font-size: 14px;
    }
}

