/* Treści strony SnowWow: karuzela opinii i karty trenerów */

/* =========================
   Karuzela opinii
   ========================= */
.snowwow-reviews {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	padding: 10px 0;
}

.snowwow-reviews__icon {
	display: flex;
	justify-content: center;
	margin-bottom: 14px;
	opacity: 0.85;
}

.snowwow-reviews__track {
	position: relative;
}

.snowwow-reviews__item {
	display: none;
	margin: 0;
}

.snowwow-reviews__item.is-active {
	display: block;
	animation: snowwowReviewIn 0.4s ease;
}

@keyframes snowwowReviewIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.snowwow-reviews__text {
	margin: 0 auto 18px;
	max-width: 760px;
	font-size: 19px;
	line-height: 1.7;
	font-style: italic;
	border: none;
	padding: 0;
}

.snowwow-reviews__text::before { content: "\201E"; }
.snowwow-reviews__text::after  { content: "\201D"; }

.snowwow-reviews__author strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
}

.snowwow-reviews__author span {
	display: block;
	margin-top: 2px;
	font-size: 13.5px;
	opacity: 0.8;
}

.snowwow-reviews__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
}

.snowwow-reviews__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid currentColor;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
	padding: 0;
}

.snowwow-reviews__btn:hover {
	transform: scale(1.06);
}

.snowwow-reviews__dots {
	display: flex;
	gap: 8px;
}

.snowwow-reviews__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: currentColor;
	opacity: 0.35;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.snowwow-reviews__dot.is-active {
	opacity: 1;
	transform: scale(1.2);
}

/* Motyw jasny (na białym tle) */
.snowwow-reviews--light {
	color: #1f2933;
}

.snowwow-reviews--light .snowwow-reviews__icon {
	color: #0066cc;
}

.snowwow-reviews--light .snowwow-reviews__btn:hover {
	background: rgba(0, 102, 204, 0.08);
}

/* Motyw ciemny (na tle zdjęcia/gradientu) */
.snowwow-reviews--dark {
	color: #ffffff;
}

.snowwow-reviews--dark .snowwow-reviews__btn:hover {
	background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
	.snowwow-reviews__text {
		font-size: 16px;
	}
}

/* =========================
   Karty trenerów
   ========================= */
.snowwow-trainers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
	justify-content: center;
	gap: 30px;
	margin: 0 auto;
}

.snowwow-trainer {
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
	display: flex;
	flex-direction: column;
}

.snowwow-trainer__photo {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e3f2fd 0%, #f4f9ff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9cc6f0;
}

.snowwow-trainer__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.snowwow-trainer__body {
	padding: 22px 24px 26px;
}

.snowwow-trainer__name {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 800;
	color: #1f2933;
}

.snowwow-trainer__line {
	margin: 0 0 8px;
	font-size: 14.5px;
	line-height: 1.6;
	color: #4a5561;
}

@media (max-width: 640px) {
	.snowwow-trainers {
		grid-template-columns: 1fr;
	}
}

/* =========================
   Galeria podstrony
   ========================= */
.snowwow-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.snowwow-gallery__item {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	aspect-ratio: 4 / 3;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snowwow-gallery__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.snowwow-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.snowwow-gallery__item:hover img {
	transform: scale(1.06);
}

.snowwow-gallery__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.35s ease;
	display: flex;
	align-items: flex-end;
	padding: 18px;
}

.snowwow-gallery__item:hover .snowwow-gallery__overlay {
	opacity: 1;
}

.snowwow-gallery__caption {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
	.snowwow-gallery {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	/* Na dotyku overlay z podpisem widoczny na stałe */
	.snowwow-gallery__overlay {
		opacity: 1;
	}
}

