.edff,
.edff * {
	box-sizing: border-box;
}

.edff {
	--edff-surface: #1f4b63;
	--edff-accent: #1877f2;
	--edff-highlight: #b7e36b;
	--edff-card-width: 330px;
	--edff-gap: 16px;
	--edff-media-ratio: 4 / 3;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.35;
	margin: 28px auto;
	max-width: 1480px;
}

.edff a {
	text-decoration: none;
}

.edff svg {
	display: block;
	width: 1em;
	height: 1em;
}

.edff__shell {
	background-color: var(--edff-surface);
	background:
		radial-gradient(circle at 7% 92%, transparent 0 82px, color-mix(in srgb, var(--edff-accent) 52%, transparent) 83px 84px, transparent 85px 126px, color-mix(in srgb, var(--edff-accent) 38%, transparent) 127px 128px, transparent 129px),
		linear-gradient(135deg, color-mix(in srgb, var(--edff-surface) 94%, #fff 6%), var(--edff-surface));
	border-radius: 32px;
	display: grid;
	grid-template-columns: minmax(230px, .34fr) minmax(0, .66fr);
	gap: clamp(26px, 4vw, 64px);
	overflow: hidden;
	padding: clamp(34px, 5vw, 72px) 0 clamp(34px, 5vw, 72px) clamp(28px, 5vw, 72px);
	position: relative;
}

.edff__intro {
	align-self: start;
	padding-right: 8px;
}

.edff__eyebrow {
	color: var(--edff-highlight);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.edff__intro h2 {
	color: #fff;
	font-size: clamp(32px, 3.6vw, 58px);
	font-family: inherit !important;
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1.03;
	margin: 0;
	max-width: 10ch;
}

.edff__description {
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.55;
	margin: 24px 0 0;
	max-width: 36ch;
}

.edff__facebook-link {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	margin-top: 24px;
}

.edff__facebook-link svg {
	background: #fff;
	border-radius: 50%;
	color: var(--edff-accent);
	font-size: 34px;
	padding: 7px;
}

.edff__facebook-link:hover span,
.edff__facebook-link:focus-visible span {
	text-decoration: underline;
}

.edff__feed {
	min-width: 0;
}

.edff__feed-heading {
	align-items: center;
	color: rgba(255,255,255,.92);
	display: flex;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	margin: 0 clamp(20px, 3.5vw, 54px) 18px 0;
	min-height: 42px;
}

.edff__brand-icon {
	background: #fff;
	border-radius: 50%;
	color: var(--edff-accent);
	display: grid;
	font-size: 34px;
	place-items: center;
}

.edff__brand-icon svg {
	padding: 7px;
}

.edff__controls {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.edff__arrow {
	align-items: center;
	appearance: none;
	background: rgba(255, 255, 255, .13) !important;
	border: 1px solid rgba(255, 255, 255, .32) !important;
	border-radius: 50%;
	box-shadow: none !important;
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	height: 42px;
	justify-content: center;
	padding: 0;
	transition: background .2s ease, opacity .2s ease, transform .2s ease;
	width: 42px;
}

.edff__arrow:hover:not(:disabled),
.edff__arrow:focus-visible:not(:disabled) {
	background: rgba(255, 255, 255, .25) !important;
	transform: translateY(-1px);
}

.edff__arrow:disabled {
	cursor: default;
	opacity: .35;
}

.edff__track {
	align-items: stretch;
	display: grid;
	gap: var(--edff-gap);
	grid-auto-columns: minmax(min(84vw, var(--edff-card-width)), var(--edff-card-width));
	grid-auto-flow: column;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px clamp(20px, 3.5vw, 54px) 12px 0;
	scroll-behavior: smooth;
	scroll-padding-inline: 1px;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(255,255,255,.38) transparent;
	scrollbar-width: thin;
}

.edff__track:focus-visible {
	outline: 3px solid rgba(255,255,255,.7);
	outline-offset: 4px;
}

.edff__track::-webkit-scrollbar {
	height: 7px;
}

.edff__track::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.38);
	border-radius: 99px;
}

.edff-card {
	align-self: stretch;
	background: #fff;
	border: 1px solid #dddfe2;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
	color: #050505;
	display: flex;
	flex-direction: column;
	min-height: 480px;
	overflow: hidden;
	scroll-snap-align: start;
}

.edff-card__header {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	padding: 14px 14px 8px;
}

.edff-card__avatar {
	border: 2px solid var(--edff-accent);
	border-radius: 50%;
	color: var(--edff-accent);
	display: block;
	flex: 0 0 44px;
	height: 44px;
	overflow: hidden;
	width: 44px;
}

.edff-card__avatar img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.edff-card__avatar-fallback {
	background: #e7f3ff;
	display: grid;
	font-size: 40px;
	height: 100%;
	place-items: center;
	width: 100%;
}

.edff-card__avatar-fallback svg {
	padding: 7px;
}

.edff-card__identity {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding-top: 2px;
}

.edff-card__name {
	color: #050505;
	display: -webkit-box;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.edff-card__name:hover,
.edff-card__name:focus-visible {
	text-decoration: underline;
}

.edff-card__meta,
.edff-card__handle {
	align-items: center;
	color: #65676b;
	display: flex;
	font-size: 11px;
	gap: 3px;
	line-height: 1.3;
	margin-top: 3px;
}

.edff-card__meta svg {
	font-size: 12px;
}

.edff-card__more {
	align-items: center;
	border-radius: 50%;
	color: #65676b;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	letter-spacing: 1px;
	line-height: 1;
	margin: -2px -4px 0 0;
	width: 32px;
}

.edff-card__more:hover,
.edff-card__more:focus-visible {
	background: #f0f2f5;
}

.edff-card__text {
	color: #050505;
	display: -webkit-box;
	font-size: 14px;
	line-height: 1.45;
	margin: 4px 14px 12px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 9;
}

.edff-card__see-more {
	color: #65676b;
	font-weight: 600;
	white-space: nowrap;
}

.edff-card__text:hover .edff-card__see-more,
.edff-card__text:focus-visible .edff-card__see-more {
	text-decoration: underline;
}

.edff-card__media {
	background: #f0f2f5;
	display: block;
	margin-top: auto;
	overflow: hidden;
}

.edff-card__image {
	aspect-ratio: var(--edff-media-ratio);
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform .35s ease;
	width: 100%;
}

.edff-card__media--placeholder {
	background:
		radial-gradient(circle at 15% 18%, color-mix(in srgb, var(--edff-accent) 24%, transparent) 0 20%, transparent 21%),
		linear-gradient(145deg, #eef4f8, #dce9f1);
}

.edff-card__placeholder-image {
	object-fit: cover;
}

.edff-card__placeholder-brand {
	align-items: center;
	aspect-ratio: var(--edff-media-ratio);
	color: #20384a;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 180px;
	padding: 24px;
	text-align: center;
	width: 100%;
}

.edff-card__placeholder-brand > img,
.edff-card__placeholder-icon {
	background: #fff;
	border: 3px solid rgba(255,255,255,.9);
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0,0,0,.12);
	display: grid;
	height: 74px;
	margin-bottom: 13px;
	object-fit: cover;
	place-items: center;
	width: 74px;
}

.edff-card__placeholder-icon {
	color: var(--edff-accent);
	font-size: 58px;
	padding: 8px;
}

.edff-card__placeholder-brand strong {
	font-size: 16px;
	line-height: 1.25;
}

.edff-card__placeholder-brand small {
	color: #657786;
	font-size: 12px;
	margin-top: 4px;
}

.edff-card__media:hover .edff-card__image,
.edff-card__media:focus-visible .edff-card__image {
	transform: scale(1.02);
}

.edff-card__social-proof {
	align-items: center;
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	min-height: 38px;
	padding: 7px 14px;
}

.edff-card__reactions {
	align-items: center;
	display: flex;
}

.edff-reaction {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-flex;
	font-size: 10px;
	height: 20px;
	justify-content: center;
	line-height: 1;
	width: 20px;
}

.edff-reaction--like {
	background: var(--edff-accent);
}

.edff-reaction--love {
	background: #f55368;
	color: #fff;
	margin-left: -5px;
}

.edff-reaction-count {
	color: #65676b;
	margin-left: 5px;
}

.edff-card__counts {
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.edff-card__counts,
.edff-card__counts a {
	color: #65676b;
}

.edff-card__counts a:hover,
.edff-card__counts a:focus-visible {
	text-decoration: underline;
}

.edff-card__actions {
	border-top: 1px solid #ced0d4;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 12px;
	padding: 4px 0;
}

.edff-card__actions a,
.edff-card__actions button,
.edff-card__action-static {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: #65676b;
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 12px;
	font-weight: 650;
	gap: 6px;
	justify-content: center;
	min-height: 36px;
	padding: 6px 3px;
}

.edff-card__actions button {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: #65676b !important;
}

.edff-card__action-static {
	cursor: default;
}

.edff-card__actions a:hover,
.edff-card__actions a:focus-visible,
.edff-card__actions button:hover,
.edff-card__actions button:focus-visible {
	background: #f0f2f5 !important;
}

.edff-card__actions svg {
	font-size: 18px;
}

.edff--grid .edff__track {
	grid-auto-columns: auto;
	grid-auto-flow: row;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	overflow: visible;
	padding-bottom: 0;
	scroll-snap-type: none;
}

.edff--grid .edff-card {
	min-width: 0;
}

.edff-empty {
	background: #f0f2f5;
	border-left: 4px solid #1877f2;
	color: #1c1e21;
	padding: 14px 18px;
}

.edff-legacy-hidden {
	display: none !important;
}

.edff-legacy-mount[hidden] {
	display: none !important;
}

.edff-host-section,
.edff-host-section > .section_wrapper {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.edff-host-section .edff {
	margin-bottom: 0;
	margin-top: 0;
}

@media (max-width: 900px) {
	.edff__shell {
		grid-template-columns: 1fr;
		padding-right: 0;
	}

	.edff__intro {
		padding-right: clamp(28px, 5vw, 72px);
	}

	.edff__intro h2 {
		max-width: 15ch;
	}

	.edff__description {
		max-width: 58ch;
	}
}

@media (max-width: 600px) {
	.edff {
		margin: 18px 0;
	}

	.edff__shell {
		border-radius: 22px;
		padding-left: 20px;
		padding-top: 32px;
	}

	.edff__intro {
		padding-right: 20px;
	}

	.edff__intro h2 {
		font-size: 36px;
	}

	.edff__feed-heading {
		margin-right: 20px;
	}

	.edff__controls {
		display: none;
	}

	.edff__track {
		grid-auto-columns: min(86vw, 330px);
		padding-right: 20px;
	}

	.edff-card__actions span {
		font-size: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.edff__track {
		scroll-behavior: auto;
	}

	.edff-card__image,
	.edff__arrow {
		transition: none;
	}
}
