/**
 * Features Block Styles
 *
 * @package made-to-thrive-2026-base
 * @since 1.0.0
 */

/* Container */
.features {
	width: 100%;
	position: relative;
	padding: 49px 0 60px;
}

.features-container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

/* Main Title */
.features-title {
	color: #4C4C3B;
	font-size: 26px;
	font-weight: 100;
	text-align: center;
	padding: 0;
	line-height: 28px;
	max-width: 900px;
	margin: 0 auto 10px;
	font-family: 'Article Century';
	text-transform: uppercase;
	letter-spacing: 0;
}

/* Swiper Wrapper */
.features-wrapper {
	width: 100%;
	position: relative;
	padding: 0;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.features-swiper {
	width: 100%;
	position: relative;
	padding: 20px 0;
}
.features-swiper .swiper-wrapper {
	transition-timing-function : linear;
}
/* Swiper Slides */
.features-slide {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Feature Link */
.features-link {
	display: block;
	width: 100%;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.features-link:hover,
.features-link:focus {
	opacity: 0.8;
	outline: 2px solid #4C4C3B;
	outline-offset: 4px;
}

.features-link:focus-visible {
	outline: 2px solid #4C4C3B;
	outline-offset: 4px;
}

/* Image Container */
.features-figure {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.features-image {
	width: 118px;
	height: 118px;
	object-fit: contain;
	display: block;
}

/* Swiper Navigation (hidden by default, can be enabled if needed) */
.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
	display: none;
}

.features-swiper .swiper-pagination {
	display: none;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
	.features-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.features-wrapper {
		padding: 0 15px;
	}

}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
	.features {
		padding: 30px 0;
	}

	.features-title {
		font-size: 24px;
		margin-bottom: 25px;
		padding: 0 15px;
	}

	.features-wrapper {
		padding: 0;
	}

	.features-swiper {
		padding: 15px 0;
	}

}

/* Extra Small Devices */
@media (max-width: 480px) {
	.features {
		padding: 25px 0;
	}

	.features-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.features-link {
		border: 2px solid currentColor;
	}

	.features-image {
		border: 1px solid currentColor;
	}
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	.features-link {
		transition: none;
	}

	.features-swiper {
		scroll-behavior: auto;
	}
}

/* Focus Indicators for Accessibility */
.features-link:focus {
	outline: 2px solid #4C4C3B;
	outline-offset: 4px;
}

.features-swiper:focus-within {
	outline: 2px solid #4C4C3B;
	outline-offset: 4px;
	border-radius: 4px;
}

/* Print Styles */
@media print {
	.features {
		padding: 20px 0;
		page-break-inside: avoid;
	}

	.features-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.features-wrapper {
		padding: 0;
	}

	.features-swiper {
		overflow: visible;
	}

	.features-slide {
		page-break-inside: avoid;
		margin-bottom: 15px;
		display: inline-block;
		width: auto;
		margin-right: 15px;
	}

	.features-image {
		width: 150px;
		height: 150px;
		border: 1px solid #000000;
	}

	.features-link {
		text-decoration: underline;
	}
}

/* Support for block wrapper color classes */
.features.has-background {
	padding: 40px 20px;
}

.features.has-text-color .features-title {
	color: inherit;
}

.features.has-text-color .features-link {
	color: inherit;
}












