.fds-pss {
	position: relative;
	width: 100%;
}

.fds-pss__viewport {
	padding: 0 0 24px;
}

.fds-pss__track {
	position: relative;
}

.fds-pss__slide {
	display: none;
}

.fds-pss__slide.is-active {
	display: flex;
	align-items: center;
	gap: 44px;
	animation: pss-fade-in 0.4s ease;
}

@keyframes pss-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.fds-pss__image-wrap {
	flex: 0 0 55%;
	border-radius: 16px 0;
	border-left: 4px solid #FDC82F;
	overflow: hidden;
	background: #d8d8d8;
}

.fds-pss__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

.fds-pss__image--placeholder {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e4e4e4, #bcbcbc);
}

.fds-pss__split-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fds-pss__title {
	font-family: "Aleo";
	color: #002395;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.fds-pss__excerpt {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #2F2F2F;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: calc(1.5em * 3);
}

.fds-pss__cta-btn {
	display: inline-block;
	padding: 12px 24px;
	background: #002395;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 0 12px;
	text-decoration: none;
	transition: background 0.2s ease;
	width: fit-content;
}

.fds-pss__cta-btn:hover {
	background: #001a70;
	color: #fff;
}

.fds-pss__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 2px 0;
}

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

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

.fds-pss__dot.is-active {
	width: 16px;
	background: #002395;
}

.fds-pss__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fds-pss__arrow:hover {
	opacity: 0.7;
	transform: translateX(-2px);
}

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

@media (max-width: 1024px) {
	.fds-pss__title {
		font-size: 24px;
	}

	.fds-pss__excerpt {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.fds-pss__slide.is-active {
		flex-direction: column;
		gap: 24px;
	}

	.fds-pss__image-wrap {
		flex: none;
		width: 100%;
	}

	.fds-pss__title {
		font-size: 16px;
	}

	.fds-pss__excerpt {
		font-size: 12px;
	}
}
