/* How VIP Events Work — match provided mockup */
.atlfc-vip-events {
	--atlfc-vip-red: #CC0000;
	--atlfc-vip-black: #111111;
	--atlfc-vip-muted: #666666;
	--atlfc-vip-border: #E8E8E8;
	--atlfc-vip-white: #FFFFFF;
	box-sizing: border-box;
	width: 100%;
	padding: 80px 24px;
	background: var(--atlfc-vip-white);
	color: var(--atlfc-vip-black);
	text-align: center;
}

.atlfc-vip-events *,
.atlfc-vip-events *::before,
.atlfc-vip-events *::after {
	box-sizing: border-box;
}

.atlfc-vip-events__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.atlfc-vip-events__header {
	max-width: 680px;
	margin: 0 auto 48px;
	text-align: center;
}

/* Outline pill — red border + red text (NOT solid fill) */
.atlfc-vip-events__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 18px;
	margin: 0 0 22px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--atlfc-vip-red);
	background: transparent;
	border: 1.5px solid var(--atlfc-vip-red);
	border-radius: 999px;
	line-height: 1.2;
}

.atlfc-vip-events__title {
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(30px, 5vw, 46px);
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--atlfc-vip-black);
	margin: 0 0 18px;
}

.atlfc-vip-events__title-main {
	color: var(--atlfc-vip-black);
}

.atlfc-vip-events__title-main::after {
	content: "\00a0";
}

.atlfc-vip-events__title-accent {
	color: var(--atlfc-vip-red);
}

.atlfc-vip-events__subtitle {
	margin: 0 auto !important;
	max-width: 48ch;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--atlfc-vip-muted);
	text-align: center !important;
}

.atlfc-vip-events__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 0 0 32px;
	text-align: left;
}

.atlfc-vip-events__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	min-height: 240px;
	padding: 26px 22px 24px;
	background: var(--atlfc-vip-white);
	border: 1px solid var(--atlfc-vip-border);
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.atlfc-vip-events__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.atlfc-vip-events__card-num {
	display: block;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	color: var(--atlfc-vip-red);
	margin: 0 0 16px;
}

.atlfc-vip-events__card-title {
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--atlfc-vip-black);
	margin: 0 0 12px;
}

.atlfc-vip-events__card-text {
	margin: 0 0 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: #555555;
	flex: 1 1 auto;
}

.atlfc-vip-events__card-rule {
	display: block;
	width: 40px;
	height: 3px;
	margin-top: auto;
	background: var(--atlfc-vip-red);
	border-radius: 2px;
}

/* Dashed heads-up strip */
.atlfc-vip-events__banner {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 0 28px;
	padding: 18px 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #444444;
	text-align: center;
	background: rgba(204, 0, 0, 0.03);
	border: 1.5px dashed var(--atlfc-vip-red);
	border-radius: 12px;
}

.atlfc-vip-events__banner-label {
	color: var(--atlfc-vip-red);
	font-weight: 800;
	margin-right: 6px;
}

.atlfc-vip-events__banner-text {
	color: #444444;
}

.atlfc-vip-events__cta-wrap {
	margin: 0;
	text-align: center;
}

.atlfc-vip-events__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 36px;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--atlfc-ve-cta-color, #ffffff);
	background-color: var(--atlfc-ve-cta-bg, var(--atlfc-vip-red));
	border: var(--atlfc-ve-cta-border-width, 0) solid var(--atlfc-ve-cta-border, transparent);
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.atlfc-vip-events__cta:hover,
.atlfc-vip-events__cta:focus {
	color: var(--atlfc-ve-cta-color-hover, var(--atlfc-ve-cta-color, #ffffff));
	background-color: var(--atlfc-ve-cta-bg-hover, #a30000);
	border-color: var(--atlfc-ve-cta-border-hover, var(--atlfc-ve-cta-border, transparent));
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(204, 0, 0, 0.32);
}

@media (max-width: 1024px) {
	.atlfc-vip-events__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.atlfc-vip-events {
		padding: 48px 16px;
	}

	.atlfc-vip-events__steps {
		grid-template-columns: 1fr;
	}

	.atlfc-vip-events__card {
		min-height: 0;
	}

	.atlfc-vip-events__cta {
		width: 100%;
	}
}
