/* =========================================================
   HARI-HARI PENTING
========================================================= */

.important-days-panel {
    overflow: hidden;

    padding: 18px 20px !important;
}


/* =========================================================
   HEADER
========================================================= */

.important-days-header {
    margin-bottom: 14px;

    padding-bottom: 10px;

    border-bottom: 1px solid #eee2e3;
}

.important-days-header h3 {
    margin: 0;

    color: #633d42;

    font-size: 19px;

    font-weight: 800;
}


/* =========================================================
   SLIDER
========================================================= */

.important-days-slider {
    width: 100%;

    overflow: hidden;

    border-radius: 12px;
}


/* =========================================================
   TRACK
========================================================= */

.important-days-track {
    display: flex;

    width: 100%;

    transition: transform 0.5s ease;
}


/* =========================================================
   SLIDE
========================================================= */

.important-day-slide {
    flex: 0 0 100%;

    width: 100%;

    height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f4eaea;
}


/* =========================================================
   GAMBAR
========================================================= */

.important-day-slide img {
    width: 100%;

    height: 100%;

    display: block;

    /*
     * GAMBAR TIDAK TERPOTONG
     */
    object-fit: contain;

    object-position: center center;

    background: #f4eaea;
}


/* =========================================================
   NAVIGASI
========================================================= */

.important-days-navigation {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 12px;
}


/* =========================================================
   BUTTON
========================================================= */

/* =========================================================
   NAVIGASI HARI-HARI PENTING
========================================================= */

.important-days-navigation {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 12px;
}


/* =========================================================
   BUTTON
========================================================= */

.important-days-navigation button {
    width: 27px;

    height: 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 1px solid #eadbdd;

    border-radius: 50%;

    color: #98545b;

    background: #ffffff;

    cursor: pointer;

    font-size: 8px;

    box-shadow: 0 3px 8px rgba(80, 30, 30, 0.06);

    transition: all 0.25s ease;
}

.important-days-navigation button:hover {
    color: #ffffff;

    background: #98545b;

    border-color: #98545b;

    transform: scale(1.05);
}


/* =========================================================
   COUNTER
========================================================= */

.important-days-counter {
    min-width: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

    color: #9b898b;

    font-size: 9px;

    font-weight: 600;
}

.important-days-counter strong {
    color: #98545b;

    font-size: 11px;

    font-weight: 800;
}

.important-days-counter span {
    color: #b49b9e;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .important-day-slide {
        height: 220px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .important-days-panel {
        padding: 16px !important;
    }

    .important-days-header h3 {
        font-size: 18px;
    }

    .important-day-slide {
        height: 190px;
    }

}


/* =========================================================
   HP KECIL
========================================================= */

@media (max-width: 480px) {

    .important-days-panel {
        padding: 14px !important;
    }

    .important-day-slide {
        height: 160px;
    }

}