.apw-article {
	display: flex;
	justify-content: space-between;
	margin: 40px 0;
	gap: 40px;
	border-radius: 3px;
}

.apw-article--sidebar {
	background: var(--apw-bg-primary-offwhite);
	width: 25%;
	border-radius: 3px;
	height: fit-content;
}

.apw-article--sidebar h2 {
	text-align: center;
	text-transform: uppercase;
	margin: 20px 0;
}

.apw-article--other-list {
	list-style: none;
	margin: 0 !important;
	max-height: 1500px;
	overflow-y: auto;
	padding: 0 4px;
	scrollbar-width: thin;
}

.apw-article--other-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
	margin: 0 20px 20px 20px;
	padding: 15px 15px 10px 15px;
	background: var(--apw-bg-white);
	border-radius: 3px;
}

.apw-article--other-item-info {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 5px;
	width: 100%;
}

.apw-article--other-item:hover .apw-article--other-item .apw-article--other-item-info>h4>a {
	color: var(--apw-primary-gold);

}

.apw-article--other-item-info>h4>a {
	font-weight: 500;
	color: var(--apw-font-darkgrey);
	text-decoration: none;
}

.apw-article--other-item-info>time {
	text-align: right;
	color: #666;
	font-size: 14px;
}

.apw-article--main {
	width: 75%;
	padding: 40px;
	background: var(--apw-bg-primary-offwhite);
	border-radius: 3px;
}

.apw-article--date {
	margin-bottom: 30px;
	color: #666;
}

.apw-article---social-links {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 5px;
}

.wp-block-heading {
	margin: 10px 0 10px 0;
}


@media (max-width: 768px) {
	.apw-article {
		flex-direction: column-reverse;
		margin: 0;
		gap: 4vw
	}

	.apw-article--main {
		width: 100%;
		padding: 2vw;
		margin-bottom: 0 !important;
	}

	.apw-article--sidebar {
		width: 100%;
	}
}