.section-1 {
    padding: 60px 0;
    min-height: 642px;
}

.empty-state-wrapper {
    padding: 50px 20px;
    color: #999;
    text-align: center;
}

.empty-state-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-state-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 450px;
}

@keyframes skeleton-loading {
    0% { background-color: #f0f0f0; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f0f0f0; }
}

.skeleton {
    animation: skeleton-loading 1.5s infinite ease-in-out;
    border-radius: 4px;
}

.skeleton-date { width: 40px; height: 50px; margin: 0 auto; }
.skeleton-year { width: 50px; height: 15px; margin: 5px auto; }
.skeleton-img { width: 100%; height: 120px; border-radius: 8px; }
.skeleton-title { width: 80%; height: 20px; margin-bottom: 10px; }
.skeleton-text { width: 100%; height: 12px; margin-bottom: 5px; }
.skeleton-btn { width: 120px; height: 35px; border-radius: 20px; margin: 10px auto; }

.image-part {
    aspect-ratio: 2/3;
}

.grid-upcoming {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    min-height: 400px;
    position: relative;
}

.upcoming-date {
    width: 70px;
}

.upcoming-date.date-part {
    background: white;
    border-top-left-radius: 10px;
    padding: 5px 0px 0px 0px;
}

.upcoming-date .date-month {
    width: 100%;
    text-align: center;
    color: #707070;
}

.upcoming-date .date-number {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.upcoming-date.year-part {
    background: linear-gradient(180deg, #196EA4 0%, #0B3148 100%);
    border-bottom-left-radius: 10px;
    padding: 5px 0px;
    text-align: center;
    color: white;
}

.upcoming-content {
    background: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
}

.upcoming-content .image-part img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.upcoming-content .more-detail {
    padding: 15px 15px 20px 15px;
    position: relative;
    margin-top: -10px;
    background-color: white;
    border-radius: 10px;
    height: calc(100% + 12px);
    box-shadow: rgba(0, 0, 0, 0.45) 0px -25px 20px -20px;
}

.btn-custom-2 {
    background: #CBE5F6 !important;
    color: #064D7B;
    width: 100%;
    border-radius: 8px !important;
    font-size: 12px !important;
}

@media (max-width: 991px) {
    .grid-upcoming {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: auto;
    }
}