/* main content */
.single-nearest-event {
    padding: 50px 50px 100px;
    transition: all 0.4s ease;
}
/* upper part */
.single-nearest-upper-part {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    transition: all 0.4s ease;
}
.single-nearest-timer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.timer-time {
    display: flex;
    text-align: center;
    gap: 12px;

    .h2 {
        color: var(--blue1);
    }
    .caption2 {
        padding-top: 4px;
        color: var(--greyText1);
    }
}
/* image */
.event-single-thumbnail {
    width: 100%;
    height: 500px;
    transition: all 0.4s ease;

    img,
    picture {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}
.event-past-thumbnail {
    width: 100%;
    height: 500px;
    transition: all 0.4s ease;

    img,
    picture {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(100%);
    }
}
/* lower-part */
.event-single-lower {
    padding-top: 40px;
    /* display: flex; */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    transition: all 0.4s ease;
}
/* left-side */
.event-single-lower-l {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-event {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.event-program {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .body1 {
        display: flex;
        gap: 24px;
    }
}
.day-block {
    .body5 {
        color: var(--blue1);
        padding-bottom: 24px;
        transition: all 0.4s ease;
    }
    ul, ol, li {
        list-style-type: disc;
        margin-left: 12px;
    }
    ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}
/* right side */
.event-single-lower-r {
    height: fit-content;
    padding: 24px;
    background: var(--greyBackground1);
    transition: all 0.4s ease;

    .body6 {
        padding-bottom: 24px;
    }
    .important-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* padding-bottom: 32px; */
        transition: all 0.4s ease;

        .caption2 {
            color: var(--greyText1);
            padding-bottom: 8px;
        }
    }
    .btn-primary-yellow {
        color: var(--black1);
        padding-top: 32px;
    }
}
/* responsive */
@media (max-width: 1050px) {
    /* lower-part */
    .event-single-lower {
        display: flex;
        flex-direction: column-reverse;
    }
}
@media (max-width: 767px) {
    /* main content */
    .single-nearest-event {
        padding: 30px 20px 50px;
    }
    /* upper part */
    .single-nearest-upper-part {
        display: flex;
        flex-direction: column;
        padding-bottom: 30px;
        gap: 24px;
    }
    /* image */
    .event-single-thumbnail,
    .event-past-thumbnail {
        height: 400px;
    }
    /* lower-part */
    .event-single-lower {
        padding-top: 0;
    }
    /* left side */
    .event-program {
        /* display: flex;
        flex-direction: column;
        gap: 24px; */

        .body1 {
            flex-direction: column;
        }
    }

    .day-block {
        .body5 {
            padding-bottom: 16px;
        }
    }
    /* right side */
    .event-single-lower-r {
        padding: 24px 16px 16px;

        .important-info {
            gap: 16px;
            /* padding-bottom: 24px; */

            .caption2 {
                color: var(--greyText1);
                padding-bottom: 8px;
            }
        }
        .btn-primary-yellow {
            padding-top: 24px;
        }
        .btn-component {
            width: 100%;
            justify-content: center;
        }
    }
}
@media (max-width: 550px) {
    /* image */
    .event-single-thumbnail,
    .event-past-thumbnail {
        height: 250px;
    }
}
