.rw-fcc {
	--rw-fcc-slides: 5;
	--rw-fcc-gap: 18px;
	--rw-fcc-card-height: 380px;
	--rw-fcc-radius: 18px;
	--rw-fcc-card-bg: #e8c84a;
	--rw-fcc-card-back-bg: var(--rw-fcc-card-bg);
	--rw-fcc-flip-ms: 600;
	--rw-fcc-ease: cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.rw-fcc *,
.rw-fcc *::before,
.rw-fcc *::after {
	box-sizing: border-box;
}

.rw-fcc__toolbar {
	display: flex;
	align-items: center;
}

.rw-fcc--nav-top-end .rw-fcc__toolbar,
.rw-fcc--nav-bottom-end .rw-fcc__toolbar {
	justify-content: flex-end;
}

.rw-fcc--nav-top-start .rw-fcc__toolbar,
.rw-fcc--nav-bottom-start .rw-fcc__toolbar {
	justify-content: flex-start;
}

.rw-fcc--nav-top-center .rw-fcc__toolbar,
.rw-fcc--nav-bottom-center .rw-fcc__toolbar {
	justify-content: center;
}

.rw-fcc__arrows {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rw-fcc__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
	line-height: 1;
	transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.rw-fcc__arrow:hover {
	transform: scale(1.08);
}

.rw-fcc__arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.rw-fcc__arrow.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.rw-fcc--nav-sides .rw-fcc__toolbar {
	position: static;
}

.rw-fcc--nav-sides .rw-fcc__arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	transform: translateY(-50%);
}

.rw-fcc--nav-sides .rw-fcc__arrow--prev {
	left: 0;
}

.rw-fcc--nav-sides .rw-fcc__arrow--next {
	right: 0;
}

.rw-fcc--nav-sides .rw-fcc__arrow:hover {
	transform: translateY(-50%) scale(1.08);
}

.rw-fcc__swiper {
	width: 100%;
	overflow: hidden;
}

.rw-fcc .swiper-wrapper {
	display: flex;
	align-items: stretch;
	box-sizing: border-box;
}

.rw-fcc .swiper-slide {
	flex-shrink: 0;
	width: calc((100% - (var(--rw-fcc-slides) - 1) * var(--rw-fcc-gap)) / var(--rw-fcc-slides));
	height: auto;
}

.rw-fcc-card {
	position: relative;
	width: 100%;
	height: var(--rw-fcc-card-height);
	perspective: 1200px;
	background: transparent;
	transition: transform 280ms var(--rw-fcc-ease), box-shadow 280ms ease;
}

.rw-fcc-card__inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform calc(var(--rw-fcc-flip-ms) * 1ms) var(--rw-fcc-ease);
}

.rw-fcc-card.is-flipped .rw-fcc-card__inner {
	transform: rotateY(180deg);
}

.rw-fcc--flip-x .rw-fcc-card.is-flipped .rw-fcc-card__inner {
	transform: rotateX(180deg);
}

@media (hover: hover) and (pointer: fine) {
	.rw-fcc--flip-hover .rw-fcc-card:hover .rw-fcc-card__inner,
	.rw-fcc--flip-hover .rw-fcc-card:focus-within .rw-fcc-card__inner {
		transform: rotateY(180deg);
	}

	.rw-fcc--flip-hover.rw-fcc--flip-x .rw-fcc-card:hover .rw-fcc-card__inner,
	.rw-fcc--flip-hover.rw-fcc--flip-x .rw-fcc-card:focus-within .rw-fcc-card__inner {
		transform: rotateX(180deg);
	}

	.rw-fcc--flip-hover .rw-fcc-card:hover .rw-fcc-card__face--front,
	.rw-fcc--flip-hover .rw-fcc-card:focus-within .rw-fcc-card__face--front {
		pointer-events: none;
	}

	.rw-fcc--flip-hover .rw-fcc-card:hover .rw-fcc-card__face--back,
	.rw-fcc--flip-hover .rw-fcc-card:focus-within .rw-fcc-card__face--back {
		pointer-events: auto;
	}

	.rw-fcc--flip-hover .rw-fcc-card__flip--close {
		display: none;
	}
}

.rw-fcc--flip-hover .rw-fcc-card__face--front .rw-fcc-card__flip {
	display: none;
}

.rw-fcc-card__face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	padding: 22px 20px 16px;
	border-radius: var(--rw-fcc-radius);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	overflow: hidden;
}

.rw-fcc-card__face--front {
	background-color: var(--rw-fcc-card-bg);
}

.rw-fcc-card__face--back {
	background-color: var(--rw-fcc-card-back-bg, var(--rw-fcc-card-bg));
	transform: rotateY(180deg);
	pointer-events: none;
}

.rw-fcc-card.is-flipped .rw-fcc-card__face--front {
	pointer-events: none;
}

.rw-fcc-card.is-flipped .rw-fcc-card__face--back {
	pointer-events: auto;
}

.rw-fcc--flip-x .rw-fcc-card__face--back {
	transform: rotateX(180deg);
}

.rw-fcc-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	flex-shrink: 0;
	width: 100%;
}

.rw-fcc-card__heading {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
}

.rw-fcc-card__title,
.rw-fcc-card__back-title {
	margin: 0;
	flex: 0 1 auto;
	min-width: 0;
	color: #111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.rw-fcc-card__subtitle {
	margin: 0;
	color: inherit;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.rw-fcc-card__title-spacer {
	flex: 1 1 auto;
}

.rw-fcc-card__flip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1.5px solid #111;
	border-radius: 50%;
	background: transparent;
	color: #111;
	cursor: pointer;
	line-height: 1;
	transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.rw-fcc-card__flip:has(.rw-fcc-card__flip-text) {
	width: auto;
	height: auto;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
}

.rw-fcc-card__flip:hover {
	transform: scale(1.06);
}

.rw-fcc-card__flip:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.rw-fcc-card__flip-icon,
.rw-fcc-card__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.rw-fcc-card__flip-icon i,
.rw-fcc-card__cta-icon i,
.rw-fcc__arrow i {
	display: block;
	line-height: 1;
}

.rw-fcc-card__flip-icon svg,
.rw-fcc-card__cta-icon svg,
.rw-fcc__arrow svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.rw-fcc--no-flip .rw-fcc-card {
	perspective: none;
}

.rw-fcc--no-flip .rw-fcc-card__inner {
	transform: none;
	transform-style: flat;
}

.rw-fcc--no-flip .rw-fcc-card__face--front {
	position: absolute;
}

.rw-fcc-card__media {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 0;
	width: 100%;
	margin-top: 8px;
}

.rw-fcc-card__front-meta {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 100%;
	margin-top: 12px;
	text-align: center;
}

.rw-fcc-card__front-desc {
	margin: 0 0 8px;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.rw-fcc-card__episode,
.rw-fcc-card__podcast {
	margin: 0;
	color: #111;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.rw-fcc-card__episode {
	margin-bottom: 2px;
}

.rw-fcc-card__front-meta .rw-fcc-card__cta {
	align-self: center;
	margin-top: 12px;
}

.rw-fcc .rw-fcc-card__image,
.elementor .rw-fcc .rw-fcc-card__image {
	display: block;
	width: 88%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: center bottom;
	border: 0;
	box-shadow: none;
	pointer-events: none;
	user-select: none;
}

.rw-fcc-card__back-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.rw-fcc-card__back-body::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.rw-fcc-card__desc {
	margin: 0 0 16px;
	color: #222;
	font-size: 15px;
	line-height: 1.45;
}

.rw-fcc-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	margin-top: auto;
	color: #111;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.rw-fcc-card__cta:hover {
	color: #111;
}

.rw-fcc__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.rw-fcc__dots .swiper-pagination-bullet {
	margin: 0;
	opacity: 1;
	background: #ccc;
	transition: width 220ms ease, background-color 220ms ease;
}

.rw-fcc__dots .swiper-pagination-bullet-active {
	background: #111;
}

@media (max-width: 1024px) {
	.rw-fcc {
		--rw-fcc-slides: 3;
		--rw-fcc-card-height: 340px;
	}

	.rw-fcc-card__title,
	.rw-fcc-card__back-title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.rw-fcc {
		--rw-fcc-slides: 1;
		--rw-fcc-card-height: 320px;
		--rw-fcc-radius: 16px;
	}

	.rw-fcc-card__title,
	.rw-fcc-card__back-title {
		font-size: 18px;
	}

	.rw-fcc-card__desc,
	.rw-fcc-card__front-desc {
		font-size: 14px;
	}

	.rw-fcc-card__episode,
	.rw-fcc-card__podcast {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rw-fcc-card,
	.rw-fcc-card__inner,
	.rw-fcc-card__flip,
	.rw-fcc__arrow {
		transition-duration: 1ms !important;
	}
}
