:root {
	--lptfb-blue: #1877f2;
	--lptfb-green: #0d7a43;
	--lptfb-ink: #13251c;
	--lptfb-muted: #64736b;
}

.home.lpt-site-redesign .lpt-home-facebook-section {
	margin: 0;
	background: #f3f8f5;
}

.home.lpt-site-redesign .lpt-home-facebook-section > .gdlr-core-pbf-section-container {
	width: 100%;
	max-width: none;
	padding: 0;
}

.home.lpt-site-redesign .lpt-home-facebook-section .gdlr-core-pbf-column,
.home.lpt-site-redesign .lpt-home-facebook-section .gdlr-core-pbf-column-content-margin,
.home.lpt-site-redesign .lpt-home-facebook-section .gdlr-core-pbf-element,
.home.lpt-site-redesign .lpt-home-facebook-section .gdlr-core-text-box-item,
.home.lpt-site-redesign .lpt-home-facebook-section .gdlr-core-text-box-item-content {
	margin: 0;
	padding: 0;
}

.lpt-facebook-feed {
	position: relative;
	overflow: hidden;
	padding: 86px 24px 82px;
	background:
		radial-gradient(circle at 8% 10%, rgba(24,119,242,.09), transparent 30%),
		radial-gradient(circle at 92% 90%, rgba(20,145,78,.12), transparent 34%),
		linear-gradient(180deg, #f7fbf8 0%, #eef7f1 100%);
}

.lpt-facebook-feed::before {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	top: -210px;
	right: -120px;
	border: 1px solid rgba(24,119,242,.14);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(24,119,242,.025), 0 0 0 90px rgba(24,119,242,.02);
}

.lpt-facebook-feed__inner {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
}

.lpt-facebook-feed__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.lpt-facebook-feed__heading {
	max-width: 760px;
}

.lpt-facebook-feed__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--lptfb-blue);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .13em;
}

.lpt-facebook-feed__eyebrow svg,
.lpt-facebook-feed__actions svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.lpt-facebook-feed__heading h2 {
	margin: 0 0 10px;
	color: var(--lptfb-ink);
	font-size: clamp(34px, 4vw, 46px);
	line-height: 1.2;
	letter-spacing: -.025em;
}

.lpt-facebook-feed__heading p {
	margin: 0;
	color: var(--lptfb-muted);
	font-size: 16px;
	line-height: 1.75;
}

.lpt-facebook-feed__profile {
	display: grid;
	grid-template-columns: 46px auto;
	grid-template-rows: auto auto;
	align-items: center;
	min-width: 225px;
	padding: 15px 18px;
	border: 1px solid rgba(24,119,242,.14);
	border-radius: 18px;
	background: rgba(255,255,255,.86);
	box-shadow: 0 12px 35px rgba(25,69,47,.08);
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

.lpt-facebook-feed__profile:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 42px rgba(25,69,47,.13);
}

.lpt-facebook-feed__profile > span {
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--lptfb-blue);
}

.lpt-facebook-feed__profile svg {
	width: 25px;
	height: 25px;
	fill: #fff;
}

.lpt-facebook-feed__profile strong {
	color: var(--lptfb-ink);
	font-size: 15px;
	line-height: 1.25;
}

.lpt-facebook-feed__profile small {
	color: var(--lptfb-muted);
	font-size: 12px;
}

.lpt-facebook-feed__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.lpt-facebook-card {
	overflow: hidden;
	border: 1px solid rgba(21,74,46,.09);
	border-radius: 23px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(25,69,47,.09);
	transition: transform .25s ease, box-shadow .25s ease;
}

.lpt-facebook-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 52px rgba(25,69,47,.15);
}

.lpt-facebook-card > a {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.lpt-facebook-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #dfe9e3;
}

.lpt-facebook-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 32%;
	background: linear-gradient(transparent, rgba(6,30,18,.35));
}

.lpt-facebook-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.lpt-facebook-card:hover .lpt-facebook-card__media img {
	transform: scale(1.035);
}

.lpt-facebook-card__media i {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 2px solid rgba(255,255,255,.88);
	border-radius: 50%;
	background: var(--lptfb-blue);
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.lpt-facebook-card__media svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}

.lpt-facebook-card__content {
	display: flex;
	min-height: 168px;
	flex: 1;
	flex-direction: column;
	padding: 21px 22px 20px;
}

.lpt-facebook-card__content time {
	margin-bottom: 8px;
	color: #75827b;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.lpt-facebook-card__content strong {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 18px;
	color: var(--lptfb-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.62;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lpt-facebook-card__content > span {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--lptfb-green);
	font-size: 13px;
	font-weight: 800;
}

.lpt-facebook-card__content b {
	font-size: 17px;
	transition: transform .2s ease;
}

.lpt-facebook-card:hover .lpt-facebook-card__content b {
	transform: translateX(3px);
}

.lpt-facebook-feed__carousel-controls {
	display: none;
}

.lpt-facebook-feed__empty {
	display: grid;
	justify-items: center;
	padding: 46px 24px;
	border: 1px dashed rgba(24,119,242,.26);
	border-radius: 24px;
	background: rgba(255,255,255,.75);
	text-align: center;
}

.lpt-facebook-feed__empty > span {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--lptfb-blue);
}

.lpt-facebook-feed__empty svg {
	width: 34px;
	height: 34px;
	fill: #fff;
}

.lpt-facebook-feed__empty strong {
	color: var(--lptfb-ink);
	font-size: 20px;
}

.lpt-facebook-feed__empty p {
	max-width: 620px;
	margin: 7px 0 0;
	color: var(--lptfb-muted);
	line-height: 1.7;
}

.lpt-facebook-feed__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.lpt-facebook-feed__actions > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lpt-facebook-feed__actions > a:hover {
	transform: translateY(-2px);
}

.lpt-facebook-feed__actions > a.lpt-facebook-feed__follow,
.lpt-facebook-feed__actions > a.lpt-facebook-feed__follow:visited {
	gap: 9px;
	background: var(--lptfb-blue);
	box-shadow: 0 10px 26px rgba(24,119,242,.24);
	color: #fff !important;
}

.lpt-facebook-feed__actions > a.lpt-facebook-feed__follow:hover,
.lpt-facebook-feed__actions > a.lpt-facebook-feed__follow:focus {
	background: #0f69d9;
	color: #fff !important;
}

.lpt-facebook-feed__actions small {
	flex-basis: 100%;
	color: #7a8780;
	font-size: 11px;
	text-align: center;
}

@media (max-width: 900px) {
	.lpt-facebook-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.lpt-facebook-feed {
		padding: 58px 15px 56px;
	}

	.lpt-facebook-feed__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 25px;
	}

	.lpt-facebook-feed__heading h2 {
		font-size: 31px;
	}

	.lpt-facebook-feed__heading p {
		font-size: 15px;
	}

	.lpt-facebook-feed__profile {
		min-width: 215px;
	}

	.lpt-facebook-feed__viewport {
		overflow: hidden;
		margin-right: -15px;
		padding-right: 15px;
	}

	.lpt-facebook-feed__grid {
		display: flex;
		overflow-x: auto;
		gap: 15px;
		padding: 4px 0 18px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.lpt-facebook-feed__grid::-webkit-scrollbar {
		display: none;
	}

	.lpt-facebook-card {
		min-width: calc(100vw - 46px);
		max-width: calc(100vw - 46px);
		flex: 0 0 calc(100vw - 46px);
		scroll-snap-align: start;
	}

	.lpt-facebook-card__content {
		min-height: 158px;
	}

	.lpt-facebook-feed__carousel-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		margin-top: 3px;
	}

	.lpt-facebook-feed__carousel-controls button {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		padding: 0 0 3px;
		border: 1px solid rgba(20,76,48,.14);
		border-radius: 50%;
		background: #fff;
		box-shadow: 0 7px 20px rgba(25,69,47,.09);
		color: var(--lptfb-green);
		font-size: 28px;
		line-height: 1;
	}

	.lpt-facebook-feed__dots {
		display: flex;
		justify-content: center;
		gap: 7px;
		flex: 1;
	}

	.lpt-facebook-feed__dots i {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #b7c7be;
		transition: width .2s ease, background .2s ease;
	}

	.lpt-facebook-feed__dots i.is-active {
		width: 22px;
		border-radius: 999px;
		background: var(--lptfb-green);
	}

	.lpt-facebook-feed__actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 27px;
	}

	.lpt-facebook-feed__actions > a {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lpt-facebook-feed *,
	.lpt-facebook-feed *::before,
	.lpt-facebook-feed *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
