/* SATM Feature Card widget (sidebar). */

.satm-card__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.satm-card__img-link {
	display: block;
	line-height: 0;
}

.satm-card__img-link:hover .satm-card__img,
.satm-card__img-link:focus .satm-card__img {
	opacity: 0.92;
}

.satm-card__text {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #2c3338;
}

.satm-card__text p {
	margin: 0 0 8px;
}

.satm-card__text > :last-child {
	margin-bottom: 0;
}

/* Rotator: one slide at a time, gentle fade. No-JS fallback: first slide. */
.satm-card__slide {
	display: none;
}

.satm-card__slide.is-active {
	display: block;
	animation: satm-card-fade 0.45s ease;
}

@keyframes satm-card-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.satm-card__dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 12px;
}

.satm-card__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	background: #cfd4da;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.satm-card__dot.is-active {
	background: #1a7f83;
}

.satm-card__img--placeholder {
	display: block;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #24344d, #0f1722);
}

.satm-card__meta {
	font-size: 13px;
	color: #6b7280;
}

.satm-card__btn {
	display: inline-block;
	margin-top: 12px;
	padding: 9px 22px;
	font-size: 14px;
	font-weight: 600;
	color: #fff !important;
	background: #1a7f83;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background-color 0.15s ease;
}

.satm-card__btn:hover,
.satm-card__btn:focus {
	background: #146d71;
	color: #fff !important;
}

/* ---------- SATM Topics (footer pills) ---------- */

.satm-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.satm-topics li {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
}

.satm-topics__pill {
	display: inline-block;
	padding: 5px 13px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .02em;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	text-decoration: none !important;
	transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.satm-topics__pill:hover,
.satm-topics__pill:focus {
	color: #32bcc1 !important;
	border-color: #32bcc1;
	background: rgba(50, 188, 193, .08);
}
