.holiday-calendar {
    width: 274px;
    max-width: 100%;
    position: relative;
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.18));
    font-family: Arial, Helvetica, sans-serif;
}

.holiday-calendar__binding {
    height: 16px;
    background: linear-gradient(180deg, #4a4a4a 0%, #1f1f1f 100%);
    border-radius: 3px 3px 0 0;
}

.holiday-calendar__tear {
    height: 10px;
    margin-top: -1px;
    background-color: #f6f4ef;
    clip-path: polygon(
        0% 100%,
        3% 35%,
        6% 100%,
        9% 30%,
        12% 100%,
        15% 40%,
        18% 100%,
        21% 25%,
        24% 100%,
        27% 35%,
        30% 100%,
        33% 30%,
        36% 100%,
        39% 40%,
        42% 100%,
        45% 25%,
        48% 100%,
        51% 35%,
        54% 100%,
        57% 30%,
        60% 100%,
        63% 40%,
        66% 100%,
        69% 25%,
        72% 100%,
        75% 35%,
        78% 100%,
        81% 30%,
        84% 100%,
        87% 40%,
        90% 100%,
        93% 25%,
        96% 100%,
        100% 35%,
        100% 100%
    );
}

.holiday-calendar__page {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 14px 16px 22px;
    background-color: #f6f4ef;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 11px,
        rgba(0, 0, 0, 0.035) 11px,
        rgba(0, 0, 0, 0.035) 12px
    );
    border-radius: 0 0 4px 4px;
}

.holiday-calendar__date-line {
    margin: 0;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #b4232f;
}

.holiday-calendar__day-num {
    margin: 8px 0 0;
    text-align: center;
    font-size: 148px;
    font-weight: 700;
    line-height: 0.9;
    color: #9b1f2b;
}

.holiday-calendar__title {
    position: relative;
    z-index: 2;
    margin: 18px 0 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #3f6f8f;
}

.holiday-calendar__decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.holiday-calendar__balloon {
    position: absolute;
    border-radius: 50% 50% 45% 45%;
}

.holiday-calendar__balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

.holiday-calendar__balloon--1 {
    right: 58px;
    bottom: 72px;
    width: 34px;
    height: 42px;
    background: radial-gradient(circle at 35% 30%, #d8f0ff 0%, #8ec8ef 55%, #5ba5d8 100%);
    opacity: 0.9;
}

.holiday-calendar__balloon--2 {
    right: 18px;
    bottom: 28px;
    width: 28px;
    height: 34px;
    background: radial-gradient(circle at 35% 30%, #dff4ff 0%, #9ed0f2 55%, #67b0de 100%);
    opacity: 0.85;
}

.holiday-calendar__ribbon {
    position: absolute;
    right: -8px;
    bottom: 8px;
    width: 170px;
    height: 28px;
    transform: rotate(-8deg);
    border-radius: 2px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ffffff 33%,
        #3d6d9e 33%,
        #3d6d9e 66%,
        #c62832 66%,
        #c62832 100%
    );
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

.banner-col.col-2 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 12%;
}

@media (min-width: 1250px) {
    .banner-col.col-2 .holiday-calendar {
        height: 411px;
    }
}

@media (max-width: 800px) {
    .banner-col.col-2 {
        padding-left: 0;
        align-items: center;
    }

    .holiday-calendar {
        margin-top: 25px;
    }

    .holiday-calendar__day-num {
        font-size: 120px;
    }

    .holiday-calendar__title {
        font-size: 16px;
    }
}
