/* ORG Updates Slider */

.org-updates-slider {
	position: relative;
	width: 100%;
}

.org-updates-slider__swiper {
	width: 100%;
	overflow: hidden;
}

.org-updates-slider__card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	background-color: #f5f0e8;
	border: 1px solid #0000c0;
}

.org-updates-slider__title {
	margin: 0 0 20px;
	color: #1a1a1a;
	font-family: "Abril Fatface", serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 120%;
}

.org-updates-slider__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: #0000c0;
	font-family: Outfit, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.25s ease, transform 0.25s ease;
}

.org-updates-slider__link:hover {
	color: #0000a0;
}

.org-updates-slider__link:hover .org-updates-slider__arrow {
	transform: translateX(3px);
}

.org-updates-slider__arrow {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	stroke: currentColor;
	transition: transform 0.25s ease;
}

/* Dash (active) + dots (inactive) pagination */
.org-updates-slider__pagination {
	position: static !important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 18px;
	width: auto !important;
}

.org-updates-slider__pagination .swiper-pagination-bullet {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 !important;
	border-radius: 0 !important;
	background-color: #0000c0;
	opacity: 1;
	transition: width 0.3s ease, border-radius 0.3s ease, height 0.3s ease;
}

.org-updates-slider__pagination .swiper-pagination-bullet-active {
	width: 32px;
	height: 8px;
	border-radius: 0 !important;
}

@media (max-width: 767px) {
	.org-updates-slider__title {
		font-size: 22px;
	}
}
