.lpl-section,
.lpl-section * {
	box-sizing: border-box;
}

.lpl-section {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	padding: 64px 80px;
	background: #fff;
}

.lpl-header {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 0 8px;
	border-bottom: 1px solid #eaeaea;
}

.lpl-header-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px;
	min-width: 0;
}

.lpl-section-title,
.lpl-section-subtitle,
.lpl-article-title {
	margin: 0;
}

.lpl-section-title {
	font-family: Outfit, Arial, sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
	color: #111;
}

.lpl-section-subtitle {
	font-family: Fraunces, Georgia, serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.22;
	color: #e03f54;
}

.lpl-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lpl-item {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 16px 0;
	border-bottom: 0 solid #eaeaea;
}

.lpl-item:not(:last-child) {
	border-bottom-width: 1px;
}

.lpl-item-number {
	flex: 0 0 56px;
	width: 56px;
	font-family: Outfit, Arial, sans-serif;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: #111;
}

.lpl-item-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

.lpl-category {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 3px;
	background: rgba(224, 63, 84, 0.08);
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	text-transform: uppercase;
	color: #e03f54;
}

.lpl-article-title {
	width: 100%;
	font-family: Outfit, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
	overflow-wrap: anywhere;
}

.lpl-article-title a,
.lpl-article-title span {
	color: inherit;
}

.lpl-article-title a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.lpl-article-title a:hover,
.lpl-article-title a:focus-visible {
	color: #e03f54;
}

.lpl-article-title a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	.lpl-section {
		padding: 48px 40px;
	}

	.lpl-section-title {
		font-size: 26px;
	}

	.lpl-item-number {
		font-size: 44px;
	}

	.lpl-article-title {
		font-size: 19px;
	}
}

@media (max-width: 767px) {
	.lpl-section {
		gap: 24px;
		padding: 32px 20px;
	}

	.lpl-header-inner {
		align-items: flex-start;
	}

	.lpl-section-title {
		font-size: 24px;
	}

	.lpl-section-subtitle {
		font-size: 16px;
	}

	.lpl-item {
		align-items: flex-start;
		gap: 12px;
		padding: 14px 0;
	}

	.lpl-item-number {
		flex-basis: 38px;
		width: 38px;
		font-size: 36px;
	}

	.lpl-article-title {
		font-size: 17px;
	}
}
