/**
 * Phytest Info Cards Styles
 * 2x2 grid of cards with light purple background
 */

/* Wrapper */
.phytest-info-cards-wrapper {
	width: 100%;
	background: #ffffff;
}

/* Container */


/* Grid */
.phytest-info-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Individual Card */
.phytest-info-card {
	background: #FBF6FE;
	border: 1px solid #C991EF;
	border-radius: 24px;
	padding: 32px;
	transition: all 0.3s ease;
}

.phytest-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(123, 104, 238, 0.15);
}

/* Card Title */
.phytest-info-card-title {
	font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
	font-size: 32px;
	font-weight: 500;
	color: #000000;
	line-height: 40px;
	padding-bottom: 16px;
}

/* Card Text */
.phytest-info-card-text {
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 28px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	
	
	.phytest-info-card {
		padding: 25px;
	}
	
	.phytest-info-card-title {
		font-size: 20px;
		margin-bottom: 14px;
	}
	
	.phytest-info-card-text {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	
	.phytest-info-cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.phytest-info-card {
		padding: 24px;
	}
	
	.phytest-info-card-title {
		font-size: 19px;
		margin-bottom: 12px;
	}
	
	.phytest-info-card-text {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	
	.phytest-info-card {
		padding: 20px;
	}
	
	.phytest-info-card-title {
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.phytest-info-card-text {
		font-size: 13px;
	}
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.phytest-info-card {
	animation: fadeInUp 0.6s ease-out;
}

.phytest-info-card:nth-child(1) {
	animation-delay: 0s;
}

.phytest-info-card:nth-child(2) {
	animation-delay: 0.1s;
}

.phytest-info-card:nth-child(3) {
	animation-delay: 0.2s;
}

.phytest-info-card:nth-child(4) {
	animation-delay: 0.3s;
}

