/*Latest Events Block*/

.g-latest-events {
	display: flex;
	align-content: center;
	flex-direction: column;
}

/* full-width container width */
.g-latest-events.full-width-container-width .block-size {
	width: 100% !important;
}

/* tablet-range: 48rem–59.938rem */
@media (min-width: 48rem) and (max-width: 59.938rem) {
	.g-latest-events.full-width-container-width .block-size {
		width: calc(100% - 3rem);
	}
}

/* mobile-only: max-width 47.938rem */
@media (max-width: 47.938rem) {
	.g-latest-events.full-width-container-width .block-size {
		width: calc(100% - 3rem);
	}
}

/* background */
.g-latest-events .block-margin-padding {
	position: relative;
}

.g-latest-events .g-block-container {
	display: flex;
    flex-direction: column;
}


/* event list container */
.g-latest-events .g-block-container .g-latest-events-container {
	list-style: none;
	padding: 0;
	margin: 0;
}
.g-latest-events .g-block-container ul.g-latest-events-container {
	margin-top: 3.125rem;
}
/* each event item */
.g-latest-events .g-latest-events-container .g-latest-events-item {
	margin-bottom: 1.875rem;
	padding-bottom: 0;
}

.g-latest-events .g-latest-events-container .g-latest-events-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* item structure */
.g-latest-events .g-latest-events-item .g-latest-events-item-container {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	align-self: stretch;
}

/* event start date */
.g-latest-events .g-latest-events-item .event-start-date {
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
	width: 3.125rem;
	flex-direction: column;
	align-items: center;
	gap: 0;
	z-index: 1;
}

.g-latest-events .event-start-date-month {
	margin: 0;
	text-transform: uppercase;
	display: block;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
}

.g-latest-events .event-start-date-day {
	color: var(--light-purple);
	margin: 0;
	display: block;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	font-family: larken;
}

/* event thumbnail */
.g-latest-events figure {
	position: relative;
	width: 100%;
	margin: 0;
	max-width: 250px;
}
@media (max-width: 47.938rem) {
	.g-latest-events figure {
		display: none;
	}
}

/* event content */
.g-latest-events .g-latest-events-content {
	width: 100%;
	z-index: 1;
}
.g-latest-events .g-action-link {
	margin-top: 1.15rem;
}

.g-latest-events .g-latest-events-content a h3 {
	font-weight: 900;
	margin: 0;
	color: var(--contrast);
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1.1;
	border-bottom: 1px solid transparent;
}

.g-latest-events .g-latest-events-content a:hover h3 {
	display: inline-block;
	color: var(--red);
	border-color: var(--red);
}


.g-latest-events .g-latest-events-content .post-date {
	display: block;
	font-size: 1rem;
	line-height: 1.1;
	margin-top: 2px;
}

.g-latest-events .g-latest-events-content p {
	margin-bottom: 0;
	margin-top: 3px;
}
.g-latest-events .cats-list {
	font-size: 0.9rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
	display: block;
	color: var(--light-purple);
	margin-top: 5px;
}

/* bottom action link */
.g-latest-events .g-bottom-action-link {
	margin: 3.125rem 0 0;
	position: relative;
}

