.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 2rem;

    background-color: rgba(255, 244, 233, 0.7);
    box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);

    margin-top: 0;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
}

.event-title {
    padding: 1rem 1.5rem 0;

    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.02rem;

    color: #363644;
}

.event-description {
    padding: 0 2rem 1rem;

    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
    line-height: 1.6;
}

.event-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;

    margin: 2.5rem 2rem;

    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #555;
    white-space: nowrap;
}

.event-header-right time {
    font-variant-numeric: tabular-nums;
}

.gallery-export {
    display: none;

    font-family: inherit;
    font-size: clamp(1rem, 1.5vw, 1.2rem);

    height: auto;

    border-radius: 1rem;

    text-align: center;
    text-decoration: none;

    padding: 1rem;
    margin-top: 1rem;

    border: none;
    background-color: #9e3b3b;
    color: #e1e1e1;
}
.gallery-export.shown {
    display: block;
}
.gallery-export.on-export {
    display: none;
}

@media screen and (max-width: 800px) {
    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-header-right {
        align-items: flex-start;
        margin-top: 0.5rem;
    }
}
