/**
 * Phat Trien Ben Vung Grid Styles
 *
 * @package Euro_Event
 */

/* ============================================
   Grid Wrapper
   ============================================ */
.euro-ptbv-grid-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0;
	--card-bg-color: #6ACFF6;
}

/* ============================================
   Grid Container with Subgrid
   ============================================ */
.euro-ptbv-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 43px;
    width: 100%;
	margin: 0 auto;
}

/* ============================================
   Card
   ============================================ */
.euro-ptbv-card {
	background: var(--card-bg-color);
	border-radius: 16px;
	padding: 32px 24px;
	display: grid;
    gap: 1px;
	grid-template-rows: subgrid;
	grid-row: span 3;
	align-items: start;
    box-shadow: 0px 14px 21px -7px #0000001A;

}

/* ============================================
   Card Number
   ============================================ */
.euro-ptbv-number {
	font-family: 'Roboto', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #0B4F9F;
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

/* ============================================
   Card Title
   ============================================ */
.euro-ptbv-title {
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0B4F9F;
	line-height: 1.3;
	margin: 0 0 16px 0;
	min-height: 48px;
}

/* ============================================
   Card Content
   ============================================ */
.euro-ptbv-content {
	font-family: 'Fira Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
    text-align: justify;
	color: #364153;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets - 3 columns */
@media screen and (max-width: 1024px) {
	.euro-ptbv-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

/* Mobile Landscape - 2 columns */
@media screen and (max-width: 768px) {
	.euro-ptbv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.euro-ptbv-number {
		font-size: 40px;
		margin-bottom: 12px;
	}
	
	.euro-ptbv-title {
		font-size: 16px;
		min-height: auto;
		margin-bottom: 12px;
	}
	
	.euro-ptbv-content {
		font-size: 13px;
	}
	
	.euro-ptbv-card {
		padding: 24px 20px;
	}
}

/* Mobile Portrait - 1 column */
@media screen and (max-width: 480px) {
	.euro-ptbv-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.euro-ptbv-card {
		padding: 28px 24px;
	}
	
	.euro-ptbv-title br {
		display: none;
	}
}
