.fds-post-row {
	--fds-post-row-blue: #002395;
	--fds-post-row-yellow: #fff1bc;
	--fds-post-row-text: #2f2f2f;
	width: 100%;
}

.fds-post-row__viewport {
	overflow: hidden;
	width: 100%;
}

.fds-post-row__track {
	display: flex;
	gap: 48px;
	transition: transform 0.35s ease;
	will-change: transform;
}

.fds-post-row__item {
	flex: 0 0 calc((100% - 96px) / 3);
	min-width: 0;
}

.fds-post-row__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.fds-post-row__image-wrap {
	position: relative;
	aspect-ratio: 1.13 / 1;
	border-radius: 8px;
	overflow: hidden;
	background: #f2f2f2;
}

.fds-post-row__image {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.fds-post-row__image--placeholder {
	background: linear-gradient(135deg, #e7e7e7, #f7f7f7);
}

.fds-post-row__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 8px;
}

.fds-post-row__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 8px;
}

.fds-post-row__badge {
	display: inline-block;
	max-width: 100%;
	margin: 0;
	padding: 2px 12px;
	border: 1px solid #FDC82F;
	border-radius: 100px;
	background: #FBEBBB;
	color: #2F2F2F;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	white-space: nowrap;
}

.fds-post-row__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 99%;
}

.fds-post-row__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	flex: 1;
	min-height: 54px;
	margin-top: 4px !important;
	margin-bottom: 4px !important;
	overflow: hidden;
	color: #2F2F2F;
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 120%;
	text-overflow: ellipsis;
	padding: 0 !important;
}

.fds-post-row__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border: 2px solid #002395;
	border-radius: 50%;
	text-decoration: none;
}

.fds-post-row__link-icon:hover {
	text-decoration: none;
}

.fds-post-row__link-icon img {
	display: block;
	width: 30px;
	height: 30px;
}

.fds-post-row__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	padding: 4px 2px 0;
}

.fds-post-row__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--fds-post-row-blue);
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fds-post-row__arrow:hover {
	opacity: 0.7;
}

.fds-post-row__arrow--prev:hover {
	transform: translateX(-2px);
}

.fds-post-row__arrow--next:hover {
	transform: translateX(2px);
}

.fds-post-row__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.fds-post-row__dots {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fds-post-row__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: #B3B3B3;
	cursor: pointer;
	transition: background 0.25s ease, width 0.25s ease;
}

.fds-post-row__dot.is-active {
	width: 16px;
	background: var(--fds-post-row-blue);
}

.fds-post-row__empty {
	margin: 0;
	color: var(--fds-post-row-text);
	font-family: "Open Sans", sans-serif;
}

@media (max-width: 1024px) {
	.fds-post-row__track {
		gap: 32px;
	}

	.fds-post-row__item {
		flex-basis: calc((100% - 32px) / 2);
	}
}

@media (max-width: 640px) {
	.fds-post-row__track {
		gap: 20px;
	}

	.fds-post-row__item {
		flex-basis: 100%;
	}
}
