.articles-block-detail {
}

.articles-block-detail__content {
	margin-top: 32px;

	display: flex;
	flex-direction: column;
	gap: 24px;

	width: 100%;
}

.articles-block-detail__content p {
	font-family: var(--font-primary), sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 19.5px;
	text-align: left;
}

.articles-block-detail__content p br {
	display: block; /* makes it have a width */
	content: ""; /* clears default height */
	margin-top: 12px; /* change this to whatever height you want it */
}

.articles-block-detail__content .articles-block-detail__introduction {
	font-size: 18px;
	line-height: 30px;
}

.articles-block-detail__content .articles-block-detail__introduction {
	font-family: var(--font-primary), sans-serif;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.articles-block-detail__content a {
	text-decoration: underline !important;
}

.articles-block-detail__content figure figcaption {
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	opacity: 0.5;
	margin-top: 8px;
}

.articles-block-detail__full-size-background img {
	width: 100%;
	height: auto;
	border-radius: 24px;
}

.articles-block-detail__full-size-background iframe {
	width: 100%;
	height: 200px;
}

.articles-block-detail__narrow-background img {
	width: 50%;
	height: auto;
	border-radius: 24px;
}

.articles-block-detail__content ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.articles-block-detail__content ul li {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
}

.articles-block-detail__content ul li p strong {
	display: block;
	margin-bottom: 4px;

	font-family: var(--font-secondary), sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 17.61px;
}

@media screen and (min-width: 768px) {
	.articles-block-detail__content p br {
		margin-top: 24px; /* change this to whatever height you want it */
	}

	.articles-block-detail__content .articles-block-detail__introduction {
		font-size: 24px;
		line-height: 36px;
	}

	.articles-block-detail__full-size-background iframe {
		width: 100%;
		height: 415px;
	}
}

@media screen and (min-width: 992px) {
	.articles-block-detail__content {
		margin-top: 64px;
		gap: 48px;
		max-width: 768px;
	}

	.articles-block-detail__content ul {
		gap: 48px;
	}

	.articles-block-detail__narrow-background img {
		width: 500px;
	}
}

@media screen and (min-width: 1440px) {
}