.events-article {
	position: relative;
}

.events-article-header {
	padding: 32px 0;
}

.events-article-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.events-article-image {
	--events-article-image-size: 400px;
	--events-article-image-border-radius: 0;
	width: 100%;
	position: relative;
	height: var(--events-article-image-size);
	margin: 0 0 16px;
	padding: 100px 0 0;
	overflow: hidden;
	background-color: var(--white-color);
}
.events-article-image span {
	height: var(--events-article-image-size);
	width: var(--events-article-image-size);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: inherit;
	position: absolute;
	top: 0;
	left: calc(-1 * calc(var(--events-article-image-size) / 2));
	border-radius: var(--events-article-image-border-radius);
	overflow: hidden;
	margin-left: 50%;
}
.events-article-image span::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	background: none;
	z-index: 1;
	opacity: 1;
}
.events-article-image img {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	max-height: 100%;
}

.events-article-image-ribbon {
	position: absolute;
	top: 32px;
	left: -48px;
	width: 192px;
	height: 32px;
	line-height: 32px;
	white-space: nowrap;
	display: block;
	z-index: 1;
	background-color: var(--primary-color);
	padding: 0 16px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	transform: rotate(-45deg);
	text-align: center;
	filter: none;
}

.events-article-content {
	position: relative;
/* 	display: flex;
	flex-direction: column;
	align-items: flex-start; */
}
.events-article-content h2
.events-article-content h3,
.events-article-content h4,
.events-article-content h5 {
	color: var(--dark-grey-color);
}

.events-article-content p {
	display: flex;
	gap: 4px;
	margin: 0 0 8px;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	position: relative;
}

.events-article-title {
	margin: 0 0 calc(var(--dp) * 3);
	flex: none;
	letter-spacing: -0.4px;
	width: 100%;
}

.events-article-label {
	text-transform: capitalize;
	background-color: transparent;
	border-radius: 0;
	font-size: 15px;
	padding-left: 0;
	padding-right: 16px;
	min-width: 128px;
	display: inline-flex;
}

.events-article-box-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
.events-article-box-list > li {
	flex: 1;
}

/* Header */
.events-article-header .events-article-box-list {
	--events-article-header-box-list-gap: 16px;
	gap: var(--events-article-header-box-list-gap);
}
.events-article-header .events-article-box-list > li {
	padding: 24px;
	background-color: #e4e4e4;
	flex: 1 1 calc(50% - calc(var(--events-article-header-box-list-gap) / 2));
}

.events-article-header .events-article-content .events-article-title {
	margin: 32px 0 48px;
}

.events-article-header .events-article-content p {
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding-right: 36px;
	width: 100%;
	min-height: 100%;
}
.events-article-header .events-article-content .icon {
	position: absolute;
	right: 0;
	top: 0;
}
.events-article-header .events-article-content .events-article-label {
	min-width: 0;
	padding: 0;
	text-transform: uppercase;
	color: var(--dark-grey-color);
	font-size: 12px;
	line-height: 16px;
	margin-top: 16px;
}

/* Main */
.events-article-main {
	padding: 32px 0;
}

.events-article-main > .events-article-content {
	width: 100%;
}

.events-article-main .events-article-box-list {
	--events-article-speaker-box-list-gap: 16px;
	gap: var(--events-article-speaker-box-list-gap);
	margin-bottom: 32px;
}
.events-article-main .events-article-box-list > li {
	padding: 16px;
	background-color: var(--lighter-grey-color);
	border-radius: var(--xl-border-radius);
	flex: 1 1 calc(50% - calc(var(--events-article-speaker-box-list-gap) / 2));
	flex-direction: row;
	display: flex;
	align-items: center;
	justify-content: center;
}

.events-article-main .events-article-box-list .events-article-content {
	padding: 0 16px;
}

.events-article-main .events-article-image {
	--events-article-image-size: 144px;
	--events-article-image-border-radius: 1000px;
	background-color: transparent;
	width: var(--events-article-image-size);
	margin: 0;
}

.events-article-main .events-article-content h4 {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 8px;
}
.events-article-main .events-article-copy p {
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 28px;
}
.events-article-main .events-article-copy p:nth-last-of-type(1) {
	margin-bottom: 32px;
}
.events-article-main .events-article-copy .button-wrapper {
	margin-bottom: 32px;
}
.events-article-main .events-article-copy .button {
	min-width: 224px;
}
.events-article-main .events-article-copy .button.addeventatc {
	padding: var(--button-y-padding) var(--button-x-padding);
	line-height: var(--button-size);
	font-size: var(--button-font-size);
	z-index: 0;
	background-color: var(--black-color);
	color: var(--white-color) !important;
	text-align: center;
}
.events-article-main .events-article-copy .button.addeventatc .addeventatc_icon {
	display: none;
}

@media (max-width: 991px) {
	.events-article-main .events-article-box-list > li {
		flex-direction: column;
	}
}


.event-venue-location {
	aspect-ratio: 16/9;
}
