.event-container {
    display: flex;
    padding: 32px 0 48px;
    border-top: 1px solid #E6EDF8;
    margin: auto;
}
@media(max-width: 390px) {
	.event-container {
		align-items: baseline;
	}
	.event-info-container {
		width: 80%;
		padding-left: 10px;
	}
}
@media(max-width: 390px) {
    .event-container {
        width: 330px;
        flex-wrap: wrap-reverse;
    }
    .event-info-container {
        display: grid;
        grid-template-columns: 3vw auto;
        grid-template-rows: auto auto auto auto;
    }
	.event-title {
		grid-column: span 2;
		grid-row: 1;
		font-weight: 700;
		width: inherit;
	}
	.event-article__event-info__title {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.5rem;
}
}
.event-article__event-info__title {
    /*font-family: Open Sans;*/
}

.event__date-container {
    display: flex;
    flex-direction: column;
    text-align: end;
    color: var(--slk-events-accent, #006689);
    padding-right: 18px;
    height: min-content;
    border-right: 2px solid var(--slk-events-accent, #006689);
}

.event-article__date-container__day {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}
.event-article__date-container__month {
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: uppercase;
}
.event-article .event-article__event-info {
    padding-left: 34px;
}
.event__date-container {
    display: flex;
    flex-direction: column;
    text-align: end;
    color: #5bf4c00;
    padding-right: 18px;
}
.event-article-date-container-day {}
.event-date-container-month {}

@media(min-width: 391px) {
    .event-info-container {
        display: grid;
        grid-template-columns: 3vw auto;
        grid-template-rows: auto auto auto auto;
        padding-left: 34px;
		width: 430px;
    }
	
	.event-article__event-info__title {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 2.25rem;
}
}

.event-title {
    grid-column: span 2;
    grid-row: 1;
    font-weight: 700;
}
.event-article__event-info__title {
    /*font-family: Open Sans;*/
}
.event-location-label {
    grid-column: 1;
    grid-row: 2;
    width: fit-content;
    padding-right: 20px;
}
.event-location-value {
    grid-column: 1 /span 2;
    grid-row: 2;
}
.event-venue-value {
    grid-column: 1 /span 2;
    grid-row: 3;
}
.event-button {
    grid-column: span 2;
    grid-row: 4;
    margin-top: 32px;
	margin-right: 120px;
}
.event-button {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 5px 24px;
    border-radius: 4px;
    white-space: nowrap;
    background: var(--slk-events-accent, #006689);
}
body .event-button a,
body .event-button a:hover,
body .event-button a:visited,
body .event-button a:active,
body .event-button a:focus {
    color: #FFFFFF !important;
}
.event-button--disabled {
    background: #9ab5be;
    cursor: default;
}
.event-button--disabled span {
    color: #FFFFFF;
}

.event-thumbnail {
    width: 100%; /* Make the thumbnail take up the full width of its container */
    max-width: 300px; /* Optional: set a maximum width */
    margin: 0 auto; /* Center the image if the container is larger than the image */
}

.event-thumbnail img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}