.linkedin-feed {
	--linkedin-blue: #0a66c2;
	--linkedin-card: #171e26;
	--linkedin-ink: #ffffff;
	--linkedin-muted: #aab4bd;
	--linkedin-border: #2d3945;
	color: var(--linkedin-ink);
	font-family: var(--gg-font-family, inherit);
	width: 100%;
}

.linkedin-feed__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(var(--linkedin-columns, 3), minmax(0, 1fr));
}

.linkedin-feed__viewport {
	width: 100%;
}

.linkedin-feed--carousel .linkedin-feed__viewport {
	overflow: hidden;
	touch-action: pan-y;
}

.linkedin-feed--carousel .linkedin-feed__grid {
	align-items: flex-start;
	display: flex;
	transition: transform 420ms ease;
	will-change: transform;
}

.linkedin-feed--carousel .linkedin-feed__item {
	flex: 0 0 auto;
}

.linkedin-feed__grid--masonry {
	align-items: start;
	grid-auto-rows: 8px;
}

.linkedin-feed__item {
	background: var(--linkedin-card);
	border: 1px solid var(--linkedin-border);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
	align-self: start;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.linkedin-feed__item:hover {
	border-color: #526171;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
	transform: translateY(-2px);
}

.linkedin-feed__card-link {
	border-radius: inherit;
	inset: 0;
	position: absolute;
	z-index: 1;
}

.linkedin-feed__media {
	background: #222c36;
	color: var(--linkedin-ink);
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.linkedin-feed__media img {
	display: block;
	height: auto;
	width: 100%;
}

.linkedin-feed__media--image img,
.linkedin-feed__media--video img {
	height: auto;
	object-fit: contain;
}

.linkedin-feed__media--video {
	background: #0c1117;
}

.linkedin-feed__media--video:not(:has(img)) {
	min-height: 220px;
}

.linkedin-feed__media--document {
	--linkedin-pdf-viewer-chrome: 20px;
	align-items: center;
	background: #e8edf1;
	display: flex;
	justify-content: center;
	min-height: 280px;
	overflow: hidden;
}

.linkedin-feed__media--document img {
	height: auto;
	object-fit: contain;
	width: 100%;
}

.linkedin-feed__document-preview {
	border: 0;
	display: block;
	height: calc(100% + var(--linkedin-pdf-viewer-chrome));
	left: 0;
	max-width: none;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: calc(100% + var(--linkedin-pdf-viewer-chrome));
}

.linkedin-feed__document-fallback {
	align-items: center;
	color: #45515d;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.linkedin-feed__document-fallback strong {
	border: 2px solid currentColor;
	border-radius: 4px;
	font-size: 24px;
	letter-spacing: 0;
	line-height: 1;
	padding: 20px 12px;
}

.linkedin-feed__document-fallback span {
	font-size: 13px;
	font-weight: 700;
}

.linkedin-feed__media-label {
	background: rgba(10, 102, 194, 0.94);
	border-radius: 4px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	left: 12px;
	line-height: 1;
	padding: 7px 9px;
	pointer-events: none;
	position: absolute;
	top: 12px;
	z-index: 3;
}

.linkedin-feed__play {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 50%;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
	display: flex;
	height: 56px;
	inset: 50% auto auto 50%;
	justify-content: center;
	pointer-events: none;
	position: absolute;
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
	width: 56px;
	z-index: 2;
}

.linkedin-feed__play::after {
	border-bottom: 9px solid transparent;
	border-left: 14px solid var(--linkedin-blue);
	border-top: 9px solid transparent;
	content: "";
	margin-left: 4px;
}

.linkedin-feed__item:hover .linkedin-feed__play {
	transform: translate(-50%, -50%) scale(1.08);
}

.linkedin-feed__gallery {
	align-items: start;
	display: grid;
	gap: 2px;
}

.linkedin-feed__gallery--items-1 {
	grid-template-columns: 1fr;
}

.linkedin-feed__gallery--items-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.linkedin-feed__gallery--items-3 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.linkedin-feed__gallery--items-4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.linkedin-feed__gallery--items-3 .linkedin-feed__gallery-item:first-child {
	grid-column: 1 / -1;
}

.linkedin-feed__gallery-item {
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.linkedin-feed__gallery-item img {
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.linkedin-feed__pagination {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 22px;
}

.linkedin-feed__pagination[hidden] {
	display: none;
}

.linkedin-feed__pagination button {
	appearance: none;
	background: transparent;
	border: 1px solid #778592;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	height: 9px;
	line-height: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 0;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
	width: 9px;
}

.linkedin-feed__pagination button:hover,
.linkedin-feed__pagination button:focus-visible {
	border-color: #ffffff;
	transform: scale(1.15);
}

.linkedin-feed__pagination button[aria-current="true"] {
	background: #ffffff;
	border-color: #ffffff;
}

.linkedin-feed__gallery-more {
	align-items: center;
	background: rgba(12, 17, 23, 0.74);
	color: #ffffff;
	display: flex;
	font-size: 24px;
	font-weight: 700;
	inset: 0;
	justify-content: center;
	position: absolute;
}

.linkedin-feed__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
	pointer-events: none;
	position: relative;
	z-index: 2;
}

.linkedin-feed__meta {
	align-items: center;
	color: var(--linkedin-muted);
	display: flex;
	font-size: 12px;
	gap: 14px;
	justify-content: space-between;
	line-height: 1.3;
	margin-bottom: 18px;
}

.linkedin-feed__meta time {
	flex: 0 0 auto;
}

.linkedin-feed__identity {
	display: inline-flex;
	flex: 0 0 auto;
	min-width: 0;
}

.linkedin-feed__identity img {
	display: block;
	height: 32px;
	object-fit: cover;
	width: 32px;
}

.linkedin-feed h3.linkedin-feed__title {
	color: var(--linkedin-ink) !important;
	font-family: inherit !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1.3 !important;
	margin: 0 0 12px !important;
}

.linkedin-feed__text,
.linkedin-feed__description {
	color: var(--linkedin-ink) !important;
	font-size: 13px !important;
	letter-spacing: 0;
	line-height: 1.55;
	margin: 0 0 8px;
	overflow-wrap: anywhere;
	white-space: pre-line;
}

.linkedin-feed__text:last-child,
.linkedin-feed__description:last-child {
	margin-bottom: 0;
}

.linkedin-feed__content {
	margin: 0 0 16px;
	position: relative;
}

.linkedin-feed__content-inner {
	font-size: 13px;
	max-height: calc(12 * 1.55em);
	overflow: hidden;
}

.linkedin-feed__content--description .linkedin-feed__content-inner {
	max-height: calc(5 * 1.55em);
}

.linkedin-feed__content.is-expanded .linkedin-feed__content-inner {
	max-height: none;
}

.linkedin-feed__expand {
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #70b7ff !important;
	cursor: pointer;
	display: inline !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	line-height: inherit !important;
	margin: 0 0 0 3px !important;
	padding: 0 !important;
	pointer-events: auto;
	position: relative;
	text-decoration: none !important;
	text-transform: none !important;
	vertical-align: baseline;
	z-index: 3;
}

.linkedin-feed__content.is-expanded > .linkedin-feed__expand {
	display: block !important;
	margin: 8px 0 0 !important;
	width: fit-content;
}

.linkedin-feed__expand[hidden] {
	display: none !important;
}

.linkedin-feed__expand:hover,
.linkedin-feed__expand:focus-visible {
	color: #70b7ff !important;
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

.linkedin-feed__expand:focus-visible {
	outline: 0 !important;
}

.linkedin-feed__statistics {
	align-items: center;
	border-top: 1px solid var(--linkedin-border);
	color: var(--linkedin-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 8px 16px;
	line-height: 1.4;
	margin-top: auto;
	padding-top: 14px;
}

.linkedin-feed__statistics strong {
	color: var(--linkedin-ink);
	font-weight: 700;
}

.linkedin-feed__statistic {
	align-items: center;
	display: inline-flex;
	gap: 6px;
}

.linkedin-feed__statistic-icon {
	background-color: currentColor;
	display: inline-block;
	flex: 0 0 17px;
	height: 17px;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	width: 17px;
}

.linkedin-feed__statistic-icon--reactions {
	mask-image: url("../../../img/icons/linkedin-reactions.svg");
	-webkit-mask-image: url("../../../img/icons/linkedin-reactions.svg");
}

.linkedin-feed__statistic-icon--comments {
	mask-image: url("../../../img/icons/linkedin-comments.svg");
	-webkit-mask-image: url("../../../img/icons/linkedin-comments.svg");
}

.linkedin-feed__statistic-icon--reposts {
	mask-image: url("../../../img/icons/linkedin-reposts.svg");
	-webkit-mask-image: url("../../../img/icons/linkedin-reposts.svg");
}

.linkedin-feed__description {
	color: var(--linkedin-muted) !important;
	font-size: 13px !important;
}

.linkedin-feed__entity-link {
	color: #70b7ff !important;
	font-weight: 600;
	pointer-events: auto;
	position: relative;
	text-decoration: none !important;
	z-index: 2;
}

.linkedin-feed__entity-link:hover,
.linkedin-feed__entity-link:focus-visible {
	color: #a6d5ff !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.linkedin-feed__card-link:focus-visible,
.linkedin-feed__entity-link:focus-visible,
.linkedin-feed__media:focus-visible {
	outline: 2px solid #82c3ff;
	outline-offset: -3px;
}

.linkedin-feed__media {
	pointer-events: auto;
}

.linkedin-feed__message {
	background: var(--linkedin-card);
	border: 1px solid var(--linkedin-border);
	border-left: 4px solid var(--linkedin-blue);
	border-radius: 6px;
	color: var(--linkedin-ink);
	margin: 0;
	padding: 16px 18px;
}

.linkedin-feed__sr-only {
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@media (max-width: 980px) {
	.linkedin-feed--grid[data-columns="3"] .linkedin-feed__grid,
	.linkedin-feed--grid[data-columns="4"] .linkedin-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.linkedin-feed--carousel .linkedin-feed__grid,
	.linkedin-feed--grid .linkedin-feed__grid {
		gap: 18px;
	}

	.linkedin-feed--grid .linkedin-feed__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.linkedin-feed__item,
	.linkedin-feed--carousel .linkedin-feed__grid,
	.linkedin-feed__play {
		transition: none;
	}

	.linkedin-feed__item:hover {
		transform: none;
	}
}
