.hne-event-list {
    .event-wrapper {
        display: flex;
        column-gap: 30px;
        padding-top: 20px;
        padding-bottom: 80px;
        border-top: 1.5px solid var(--wp--preset--color--haverhill-orange-bright);
        .event-date {
            flex: 25%;
            .month {
                color: var(--wp--preset--color--gray-text);
                font-size: var(--wp--preset--font-size--h-3-manrope);
                font-style: normal;
                font-weight: 500;
                line-height: 133.333%;
                letter-spacing: 0.6px;
            }
            .day {
                font-size: var(--wp--custom--calendar-day);
                font-weight: 300;
                line-height: 78.431%;
                letter-spacing: -2.04px;
                margin-top: 12px;
            }
        }
        .event-info {
            flex: 42%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .title {
                color: var(--wp--preset--color--gray-text);
                /* H2 Meno */
                font-family: var(--wp--preset--font-family--meno-display);
                font-size: 48px;
                font-style: italic;
                font-weight: 700;
                line-height: 58px; /* 120.833% */
                a {
                    color: var(--wp--preset--color--gray-text);
                    transition: 0.3s;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
            .time-wrapper {
                color: var(--wp--preset--color--gray-text);
                font-size: var(--wp--preset--font-size--p-2-manrope);
                font-style: normal;
                font-weight: 500;
                line-height: 141.667%;
                letter-spacing: 0.48px;
                .time {
                    color: var(--wp--preset--color--haverhill-orange);
                }
            }
        }
        .event-photo {
            flex: 32%;
            position: relative;
            img {
                width: 437px;
                height: 326px;
            }
            &.free-event {
                &:after {
                    content: 'Free';
                    text-transform: uppercase;
                    position: absolute;
                    top: 30px;
                    left: 0;
                    padding: 0.5rem 1rem;
                    font-size: var(--wp--preset--font-size--p2-manrope);
                    letter-spacing: 0.48px;
                    color: var(--wp--preset--color--white);
                    background-color: var(--wp--preset--color--haverhill-orange);
                }
            }
        }
    }
}