/* ========================================================
   CC Notices – Carousel (Homepage summary cards)
   ======================================================== */

.cc-notices-carousel-wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.cc-notices-carousel {
	padding: 20px !important;
	overflow: hidden;
	position: relative;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.4s ease, visibility 0s;
}

.cc-notices-carousel.swiper-initialized {
	visibility: visible;
	opacity: 1;
}

.cc-notices-carousel .swiper-wrapper {
	align-items: stretch;
}

.cc-notices-carousel .swiper-slide {
	height: auto;
}

/* Card */
.cc-notices-carousel .cc-carousel-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Header – company names */
.cc-notices-carousel .card-header {
	padding: 28px 24px 20px;
	background: #fff;
	border-bottom: none;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.cc-carousel-heading {
	margin: 0 0 16px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--blue-color, #1a3a6b);
}

.cc-carousel-names {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.cc-carousel-old {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ast-global-color-3, #4B4F58);
}

.cc-carousel-arrow {
	font-size: 1.4rem;
	color: var(--blue-color, #1a3a6b);
	font-weight: 700;
}

.cc-carousel-new {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--blue-color, #1a3a6b);
}

.cc-carousel-license {
	margin: 0;
	font-size: 1.05rem;
	color: var(--ast-global-color-3, #4B4F58);
	opacity: 0.8;
}

.cc-carousel-reason {
	margin: 16px 0 0;
	font-size: 1.05rem;
	color: var(--ast-global-color-3, #4B4F58);
}

.cc-carousel-reason strong {
	color: var(--blue-color, #1a3a6b);
}


/* CTA Button */
.cc-carousel-cta {
	text-align: center;
	margin-top: 40px;
}

.cc-carousel-btn {
	display: inline-block;
	padding: 12px 32px;
	background: var(--blue-color, #1a3a6b);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 32px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

.cc-carousel-btn:hover {
	background: var(--ast-global-color-1, #0f2a52);
	color: #fff;
}

/* RTL */
[dir="rtl"] .cc-carousel-arrow {
	transform: scaleX(-1);
}

[dir="rtl"] .cc-notices-carousel .force-ltr {
	direction: ltr;
	unicode-bidi: embed;
}