.event-header .event-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.single-event-desc {
    height: 263px;
    overflow: hidden;
    transition: height .4s ease;
}

.single-event-desc.expanded {
    overflow: visible;
}

.toggleButton {
    background: none;
    border: 0;
    font-weight: 500;
    margin-top: 1rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.toggleButton:focus-visible {
    outline: 2px solid #222;
    outline-offset: 2px;
}

.event-infos {
    display: flex;
    width: fit-content;
    background-color: var(--section-bg-color);
    padding: 10px 5px;
    font-size: .9rem;
    margin: .75rem 0 1rem;
    flex-direction: column;
}

.event-infos>div {
    display: flex;
    gap: .4rem;
}

.event-image img {
    max-width: 253px;
    height: auto;
    border-radius: 4px;
    display: block;
}

@media (max-width: 768px) {
    .event-image img {
        max-width: 140px;
    }
}