.calendar-art {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 250ms ease;
}

.calendar-art.is-ready {
    opacity: 1;
}

.calendar-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform-origin: top right;
    pointer-events: none;
}

.calendar-art__svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    overflow: hidden;
    object-fit: contain;
    filter: none;
}

.calendar-slide.has-glow .calendar-art__svg {
    filter: drop-shadow(0 0 28px rgb(201 164 93 / 14%));
}

.calendar-art__svg {
    color: var(--gold);
    opacity: 0;
    transform-origin: center;
}

.calendar-art__svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    .calendar-art {
        height: 100%;
    }

    .calendar-slide {
        width: 100vw;
        height: 100vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .calendar-art {
        opacity: .82;
        transition: none;
    }

    .calendar-slide {
        transform: scale(1);
    }

    .calendar-art__svg {
        opacity: 1 !important;
        transform: none !important;
    }

    .calendar-art__svg path {
        opacity: 1 !important;
    }
}
