/**
 * Camps & Clinics and News & Events Sections
 *
 * @package TAV_Theme
 */

/* ==========================================================================
   Camps & Clinics Section
   ========================================================================== */

.camps-clinics-section {
	position: relative;
	background: #fff;
	padding: 80px 0;
	overflow: hidden;
}


.camps-clinics-section .container {
	position: relative;
	z-index: 1;
}

.camps-clinics-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.camps-clinics-section .eyebrow {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1C15C4;
	margin-bottom: 10px;
}

.camps-clinics-section .section-title {
	font-size: 2.5rem;
	font-weight: 900;
	color: #FFFFFF;
	margin: 0;
}

.camps-clinics-section .deck {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Card Styles */
.camps-clinics-section .item {
	position: relative;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.camps-clinics-section .item::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 18px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.camps-clinics-section .item:hover {
	transform: translateY(-8px) scale(1.02);
}

.camps-clinics-section .item:hover::before {
	opacity: 0.6;
}

.camps-clinics-section .tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: linear-gradient(135deg, #1C15C4 0%, #E71F95 100%);
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 8px 16px;
	border-radius: 20px;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(231, 31, 149, 0.4);
}

.camps-clinics-section .thumb {
	position: relative;
	width: 100%;
	height: 240px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.camps-clinics-section .content {
	padding: 24px;
}

.camps-clinics-section .title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 12px;
	line-height: 1.3;
}

.camps-clinics-section .subtitle {
	font-size: 0.875rem;
	font-weight: 600;
	color: #E71F95;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.camps-clinics-section .description {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.camps-clinics-section .btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
}

.camps-clinics-section .btn-primary {
	background: #FFFFFF;
	color: #0e1020;
}

.camps-clinics-section .btn-primary:hover {
	background: #E71F95;
	color: #FFFFFF;
	transform: translateX(4px);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
	.camps-clinics-section .deck {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.camps-clinics-section .section-title {
		font-size: 2rem;
	}
}

/* Responsive - Mobile */
@media (max-width: 576px) {
	.camps-clinics-section {
		padding: 60px 0;
	}

	.camps-clinics-section .deck {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.camps-clinics-section .section-title {
		font-size: 1.75rem;
	}

	.camps-clinics-section .thumb {
		height: 200px;
	}
}

/* ==========================================================================
   News & Events Section
   ========================================================================== */

.news-events-section {
	position: relative;
	background: #0e1020;
	padding: 80px 0;
	overflow: hidden;
}

.news-events-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center, rgba(28, 21, 196, 0.1) 0%, rgba(231, 31, 149, 0.1) 50%, transparent 100%);
	pointer-events: none;
}

.news-events-section .container {
	position: relative;
	z-index: 1;
}

.news-events-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.news-events-section .eyebrow {
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #1C15C4;
	margin-bottom: 10px;
}

.news-events-section .section-title {
	font-size: 2.5rem;
	font-weight: 900;
	color: #FFFFFF;
	margin: 0;
}

/* Slider */
.news-events-section .slider {
	position: relative;
	overflow: hidden;
}

.news-events-section .slide {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	background: linear-gradient(135deg, #0f1330 0%, #14183b 100%);
	border-radius: 20px;
	overflow: hidden;
	padding: 0;
}

.news-events-section .slide:first-child {
	display: grid;
}

.news-events-section .slide.active {
	display: grid;
}

.news-events-section .media {
	position: relative;
	height: 100%;
	min-height: 400px;
}

.news-events-section .fake-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.news-events-section .fake-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(28, 21, 196, 0.2) 0%, rgba(231, 31, 149, 0.2) 100%);
}

.news-events-section .copy {
	padding: 48px;
}

.news-events-section .tag {
	display: inline-block;
	background: linear-gradient(135deg, #1C15C4 0%, #E71F95 100%);
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 8px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(231, 31, 149, 0.4);
}

.news-events-section .slide-title {
	font-size: 2rem;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 16px;
	line-height: 1.3;
}

.news-events-section .slide-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-events-section .slide-title a:hover {
	color: #E71F95;
}

.news-events-section .excerpt {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 28px;
}

.news-events-section .btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
}

.news-events-section .btn-primary {
	background: #FFFFFF;
	color: #0e1020;
}

.news-events-section .btn-primary:hover {
	background: #E71F95;
	color: #FFFFFF;
	transform: translateX(4px);
}

/* Slider Controls */
.news-events-section .slider-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.news-events-section .slider-btn {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.news-events-section .slider-btn:hover {
	border-color: #E71F95;
	background: rgba(231, 31, 149, 0.1);
	transform: translateY(-2px);
}

.news-events-section .slider-btn .arrow {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
}

.news-events-section .slider-btn.prev:hover .arrow {
	transform: translateX(-4px);
}

/* ==========================================================================
   VertiMax Training CTA
   ========================================================================== */

.vertimax-training-cta {
	position: relative;
	padding: 0;
	color: #FFFFFF;
}

.vertimax-training-cta .vertimax-banner {
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	position: relative;
}

.vertimax-training-cta .vertimax-copy .eyebrow {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.85);
}

.vertimax-training-cta .vertimax-copy .section-title {
	font-size: 2.75rem;
	font-weight: 900;
	margin-bottom: 16px;
	color: #FFFFFF;
}

.vertimax-training-cta .vertimax-copy .lead {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.vertimax-training-cta .benefits li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	font-size: 0.975rem;
	color: rgba(255, 255, 255, 0.85);
}

.vertimax-training-cta .benefits li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #ffffff;
	font-weight: 700;
}

.vertimax-training-cta .btn-primary {
	background: #FFFFFF !important;
	color: var(--tav-primary) !important;
	border: none;
	font-weight: 700;
	padding: 14px 32px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.vertimax-training-cta .btn-primary:hover {
	background: rgba(255, 255, 255, 0.85);
	color: var(--tav-primary);
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.vertimax-training-cta .vertimax-banner {
		padding: 60px 0;
		text-align: center;
	}

	.vertimax-training-cta .vertimax-copy .section-title {
		font-size: 2.25rem;
	}

	.vertimax-training-cta .benefits {
		padding-left: 0;
	}

	.vertimax-training-cta .benefits li {
		padding-left: 22px;
	}
}

@media (max-width: 576px) {
	.vertimax-training-cta .vertimax-banner {
		padding: 48px 0;
	}

	.vertimax-training-cta .vertimax-copy .section-title {
		font-size: 2rem;
	}

	.vertimax-training-cta .lead {
		font-size: 1rem;
	}
}

.news-events-section .slider-btn.next:hover .arrow {
	transform: translateX(4px);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.news-events-section {
		padding: 60px 0;
	}

	.news-events-section .section-title {
		font-size: 2rem;
	}

	.news-events-section .slide {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.news-events-section .media {
		min-height: 300px;
		order: 1;
	}

	.news-events-section .copy {
		padding: 32px 24px;
		order: 2;
	}

	.news-events-section .slide-title {
		font-size: 1.5rem;
	}

	.news-events-section .slider-controls {
		flex-direction: column;
		gap: 12px;
	}

	.news-events-section .slider-btn {
		width: 100%;
		justify-content: center;
	}
}
