.site-main {
    & #date {
        & .content {

            width: min(100% - 40px, 430px);

            & .separator {
                width: 100%;
                max-width: 430px;
                height: auto;
                margin-inline: auto;
                filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
                /* mix-blend-mode: multiply; */
            }

            & .calendar {
                width: 78px;
                height: auto;
                filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.15));
                transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
                opacity: 0;
                transform: translateX(-20px);
            }

            & .calendar.animate-in {
                opacity: 1;
                transform: translateX(0);
            }

            & .date {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-inline: auto;
                transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
                opacity: 0;
                transform: translateX(-20px);

                > div {
                    display: flex;
                    align-items: center;
                    padding: 0 20px;
                    font-size: 40px;
                    line-height: 1;
                }

                div:nth-child(2) {
                    border-left: 2px solid #000;
                    border-right: 2px solid #000;
                }
            }

            & .date.animate-in {
                opacity: 1;
                transform: translateX(0);
            }

            & #countdown {
                position: relative;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                background-color: #ffffff83;
                backdrop-filter: saturate(180%) blur(4px);
                border-radius: 10px;
                padding: 0 20px;
                box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.1),
                0 1px 1px hsl(0deg 0% 0% / 0.03),
                0 2px 2px hsl(0deg 0% 0% / 0.03),
                0 4px 4px hsl(0deg 0% 0% / 0.03),
                0 8px 8px hsl(0deg 0% 0% / 0.03),
                0 16px 16px hsl(0deg 0% 0% / 0.03);
                transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
                opacity: 0;
                transform: translateX(-20px);

                & .time {
                    display: grid;
                    font-size: 12px;
                    padding: 20px 0;
                    gap: 15px;
                    line-height: 1;
                    color: #0000007b;

                    & .number {
                        position: relative;
                        font-size: 25px;
                        color: #000;
                    }
                }

                & .time:not(:last-child) .number:after {
                    position: absolute;
                    content: ':';
                    top: 45%;
                    right: 0;
                    transform: translateY(-50%);
                }

                & .time:last-child .number {
                    color: #d87093;
                }
            }

            & #countdown:after {
                position: absolute;
                content: '';
                top: 3px;
                left: 3px;
                width: calc(100% - 6px);
                height: calc(100% - 6px);
                border: 1px solid #ffffff7d;
                border-radius: 7px;
                z-index: 0;
            }

            & #countdown.animate-in {
                opacity: 1;
                transform: translateX(0);
            }

            & .separator2 {
                margin-top: 40px;
                width: 100%;
                max-width: 200px;
                height: auto;
                margin-inline: auto;
                filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
                mix-blend-mode: multiply;
            }
        }
    }
}