/* ===== ADMISSION PROCEDURE PAGE ===== */

/* --- Page Banner (shared structure) --- */
.page-banner {
	position: relative;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 120px 0 60px;
	color: #fff;
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(244, 197, 66, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.page-banner::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-content h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	margin: 12px 0 16px;
	line-height: 1.15;
}

.banner-tagline {
	font-size: clamp(16px, 2.2vw, 22px);
	font-weight: 300;
	opacity: 0.9;
	max-width: 650px;
	line-height: 1.5;
}

/* --- Breadcrumb --- */
.breadcrumb-list {
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-list li + li::before {
	content: "/";
	opacity: 0.5;
}

.breadcrumb-list li a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.breadcrumb-list li a:hover {
	color: var(--color-cta-bg);
}

.breadcrumb-list li.active span {
	color: #fff;
	font-weight: 500;
}

/* ===== ADMISSION OVERVIEW STRIP ===== */
.adm-overview-strip {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.adm-overview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.adm-overview-card {
	padding: 36px 28px;
	text-align: center;
	border-right: 1px solid #eee;
	transition: background 0.3s;
}

.adm-overview-card:last-child {
	border-right: none;
}

.adm-overview-card:hover {
	background: #fdf5f5;
}

.adm-overview-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(139, 46, 43, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.adm-overview-icon svg {
	fill: var(--color-primary-bg);
}

.adm-overview-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 6px;
}

.adm-overview-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* ===== ADMISSION STEPS (UP-DOWN SNAKE) ===== */
.adm-steps-section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.adm-steps-section .section-title {
	margin-bottom: 10px;
}

.adm-timeline {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	column-gap: 48px;
	row-gap: 64px;
}

.adm-timeline::before {
	display: none;
}

/* --- Grid placement: up-down snake ---
   Row 1: [1]  [4]  [5]
   Row 2: [2]  [3]  [6]
   Flow:  1↓2 → 3↑4 → 5↓6
*/
.adm-timeline-item:nth-child(1) { grid-row: 1; grid-column: 1; }
.adm-timeline-item:nth-child(2) { grid-row: 2; grid-column: 1; }
.adm-timeline-item:nth-child(3) { grid-row: 2; grid-column: 2; }
.adm-timeline-item:nth-child(4) { grid-row: 1; grid-column: 2; }
.adm-timeline-item:nth-child(5) { grid-row: 1; grid-column: 3; }
.adm-timeline-item:nth-child(6) { grid-row: 2; grid-column: 3; }

.adm-timeline-item {
	position: relative;
	padding-left: 0;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.adm-timeline-item:last-child {
	padding-bottom: 0;
}

/* Step number — centered above card */
.adm-step-number {
	position: relative;
	left: auto;
	top: auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-bg), #5c1a18);
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(139, 46, 43, 0.3);
	z-index: 3;
	margin-bottom: -25px;
}

/* ============================
   CONNECTOR LINES & ARROWS
   ============================ */

/* All connectors use ::after, all arrows use ::before */

/* --- 1 → 2 : vertical DOWN (col 1) --- */
.adm-timeline-item:nth-child(1)::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 1px);
	height: calc(64px - 2px);
	width: 3px;
	background: linear-gradient(to bottom, var(--color-primary-bg), var(--color-cta-bg));
	border-radius: 3px;
	z-index: 1;
}

.adm-timeline-item:nth-child(1)::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 50px);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid var(--color-cta-bg);
	z-index: 2;
}

/* --- 2 → 3 : horizontal RIGHT (row 2, col 1→2) --- */
.adm-timeline-item:nth-child(2)::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 1px);
	width: calc(48px - 2px);
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary-bg), var(--color-cta-bg));
	border-radius: 3px;
	z-index: 1;
}

.adm-timeline-item:nth-child(2)::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 36px);
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid var(--color-cta-bg);
	z-index: 2;
}

/* --- 3 → 4 : vertical UP (col 2) --- */
.adm-timeline-item:nth-child(3)::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(100% + 1px);
	height: calc(64px - 2px);
	width: 3px;
	background: linear-gradient(to top, var(--color-primary-bg), var(--color-cta-bg));
	border-radius: 3px;
	z-index: 1;
}

.adm-timeline-item:nth-child(3)::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(100% + 50px);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 10px solid var(--color-cta-bg);
	z-index: 2;
}

/* --- 4 → 5 : horizontal RIGHT (row 1, col 2→3) --- */
.adm-timeline-item:nth-child(4)::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 1px);
	width: calc(48px - 2px);
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary-bg), var(--color-cta-bg));
	border-radius: 3px;
	z-index: 1;
}

.adm-timeline-item:nth-child(4)::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc(100% + 36px);
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 10px solid var(--color-cta-bg);
	z-index: 2;
}

/* --- 5 → 6 : vertical DOWN (col 3) --- */
.adm-timeline-item:nth-child(5)::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 1px);
	height: calc(64px - 2px);
	width: 3px;
	background: linear-gradient(to bottom, var(--color-primary-bg), var(--color-cta-bg));
	border-radius: 3px;
	z-index: 1;
}

.adm-timeline-item:nth-child(5)::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: calc(100% + 50px);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid var(--color-cta-bg);
	z-index: 2;
}

/* Item 6 — no connector (last step) */

.adm-step-card {
	background: #fff;
	border-radius: 16px;
	padding: 36px 24px 24px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	flex: 1;
}

.adm-step-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.adm-step-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary-bg);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.adm-step-card h3 svg {
	flex-shrink: 0;
	fill: var(--color-cta-bg);
}

.adm-step-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

.adm-step-card .step-note {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 6px 16px;
	background: rgba(244, 197, 66, 0.12);
	color: #8a6900;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
}

/* ===== ELIGIBILITY SECTION ===== */
.adm-eligibility-section .section-title {
	margin-bottom: 10px;
}

.adm-eligibility-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.adm-elig-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.adm-elig-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.adm-elig-header {
	background: linear-gradient(135deg, var(--color-primary-bg), #5c1a18);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.adm-elig-header svg {
	fill: var(--color-cta-bg);
	flex-shrink: 0;
}

.adm-elig-header h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.adm-elig-header span {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
	margin-top: 2px;
}

.adm-elig-body {
	padding: 24px;
}

.adm-elig-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.adm-elig-body ul li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 10px;
}

.adm-elig-body ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-cta-bg);
	box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.2);
}

.adm-elig-body ul li:last-child {
	margin-bottom: 0;
}

/* ===== DOCUMENTS REQUIRED ===== */
.adm-documents-section {
	position: relative;
}

.adm-doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.adm-doc-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--color-primary-bg);
	transition: transform 0.2s, box-shadow 0.2s;
}

.adm-doc-item:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.adm-doc-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(139, 46, 43, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.adm-doc-icon svg {
	fill: var(--color-primary-bg);
}

.adm-doc-text h4 {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.adm-doc-text p {
	font-size: 13px;
	color: #777;
	line-height: 1.5;
}

/* ===== IMPORTANT DATES ===== */
.adm-dates-section {
	position: relative;
}

.adm-dates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

.adm-date-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.adm-date-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary-bg), var(--color-cta-bg));
}

.adm-date-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.adm-date-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-bg), #5c1a18);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.adm-date-icon svg {
	fill: #fff;
}

.adm-date-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 6px;
}

.adm-date-card .adm-date-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary-bg);
}

.adm-date-card p {
	font-size: 13px;
	color: #888;
	margin-top: 6px;
}

/* ===== FAQ ACCORDION ===== */
.adm-faq-section .section-title {
	margin-bottom: 10px;
}

.adm-faq-list {
	max-width: 850px;
	margin: 0 auto;
}

.adm-faq-item {
	background: #fff;
	border-radius: 12px;
	margin-bottom: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: box-shadow 0.3s;
}

.adm-faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.adm-faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a2e;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	text-align: left;
	font-family: inherit;
	transition: color 0.2s;
}

.adm-faq-question:hover {
	color: var(--color-primary-bg);
}

.adm-faq-question svg {
	flex-shrink: 0;
	fill: var(--color-primary-bg);
	transition: transform 0.3s ease;
}

.adm-faq-item.active .adm-faq-question svg {
	transform: rotate(180deg);
}

.adm-faq-item.active .adm-faq-question {
	color: var(--color-primary-bg);
}

.adm-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.adm-faq-item.active .adm-faq-answer {
	max-height: 500px;
}

.adm-faq-answer-inner {
	padding: 0 24px 20px;
	font-size: 15px;
	color: #555;
	line-height: 1.75;
}

/* ===== ADMISSION HELPLINE SECTION ===== */
.adm-helpline-section {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.adm-helpline-section::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(244, 197, 66, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.adm-helpline-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.adm-helpline-text h2 {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
}

.adm-helpline-text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	max-width: 480px;
	line-height: 1.6;
}

.adm-helpline-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.adm-helpline-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: background 0.3s, transform 0.2s;
	min-width: 220px;
}

.adm-helpline-card:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-2px);
}

.adm-helpline-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-primary-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.adm-helpline-card-icon svg {
	fill: #fff;
}

.adm-helpline-card h4 {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.adm-helpline-card a {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

.adm-helpline-card a:hover {
	color: var(--color-cta-bg);
}

/* ===== CTA SECTION (shared) ===== */
.overview-cta {
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 60px 0;
}

.overview-cta .cta-content {
	gap: 30px;
}

.overview-cta .cta-text h2 {
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.overview-cta .cta-text p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 550px;
	line-height: 1.6;
}

.overview-cta .cta-actions {
	gap: 16px;
	flex-shrink: 0;
}

.overview-cta .cta-btn.apply {
	display: inline-block;
	padding: 14px 36px;
	background: linear-gradient(90deg, #f7c948 0%, #e3a617 100%);
	color: #222;
	font-weight: 700;
	border: none;
	box-shadow: 0 2px 12px rgba(247, 201, 72, 0.15);
	border-radius: 8px;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: background 0.2s, box-shadow 0.2s, color 0.2s;
	text-transform: uppercase;
}

.overview-cta .cta-btn.apply:hover {
	background: linear-gradient(90deg, #e3a617 0%, #f7c948 100%);
	color: #000;
	box-shadow: 0 4px 18px rgba(247, 201, 72, 0.22);
}

.overview-cta .cta-btn-outline {
	display: inline-block;
	padding: 14px 36px;
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.overview-cta .cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
	.adm-overview-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.adm-overview-card {
		border-right: none;
		border-bottom: 1px solid #eee;
	}

	.adm-overview-card:nth-child(odd) {
		border-right: 1px solid #eee;
	}

	.adm-eligibility-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Snake: tighten gaps on tablets */
	.adm-timeline {
		column-gap: 32px;
		row-gap: 48px;
	}

	.adm-timeline-item:nth-child(2)::after,
	.adm-timeline-item:nth-child(4)::after {
		width: calc(32px - 2px);
	}

	.adm-timeline-item:nth-child(2)::before,
	.adm-timeline-item:nth-child(4)::before {
		left: calc(100% + 20px);
	}

	.adm-timeline-item:nth-child(1)::after,
	.adm-timeline-item:nth-child(5)::after {
		height: calc(48px - 2px);
	}

	.adm-timeline-item:nth-child(3)::after {
		height: calc(48px - 2px);
	}

	.adm-timeline-item:nth-child(1)::before,
	.adm-timeline-item:nth-child(5)::before {
		top: calc(100% + 36px);
	}

	.adm-timeline-item:nth-child(3)::before {
		bottom: calc(100% + 36px);
	}
}

@media (max-width: 768px) {
	.page-banner {
		padding: 100px 0 40px;
	}

	.adm-overview-grid {
		grid-template-columns: 1fr;
	}

	.adm-overview-card {
		border-right: none;
	}

	.adm-overview-card:nth-child(odd) {
		border-right: none;
	}

	/* Snake → vertical fallback on mobile */
	.adm-steps-section {
		min-height: auto;
	}

	.adm-timeline {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 48px;
		max-width: 600px;
	}

	/* Reset snake grid placement */
	.adm-timeline-item:nth-child(1),
	.adm-timeline-item:nth-child(2),
	.adm-timeline-item:nth-child(3),
	.adm-timeline-item:nth-child(4),
	.adm-timeline-item:nth-child(5),
	.adm-timeline-item:nth-child(6) {
		grid-row: auto;
		grid-column: auto;
	}

	/* Hide all snake connectors & arrows */
	.adm-timeline-item::after,
	.adm-timeline-item::before {
		display: none !important;
	}

	/* Show vertical connector line instead */
	.adm-timeline {
		position: relative;
	}

	.adm-timeline-item {
		position: relative;
	}

	/* Vertical dashed line between items */
	.adm-timeline-item:not(:last-child) {
		padding-bottom: 0;
	}

	.adm-step-number {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}

	.adm-step-card {
		padding: 32px 20px 20px;
	}

	.adm-eligibility-grid {
		grid-template-columns: 1fr;
	}

	.adm-doc-grid {
		grid-template-columns: 1fr;
	}

	.adm-dates-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.adm-helpline-inner {
		flex-direction: column;
		text-align: center;
	}

	.adm-helpline-text p {
		margin: 0 auto;
	}

	.adm-helpline-actions {
		justify-content: center;
	}

	.overview-cta .cta-content {
		flex-direction: column;
		text-align: center;
	}

	.overview-cta .cta-text p {
		margin: 0 auto;
	}

	.overview-cta .cta-actions {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.adm-dates-grid {
		grid-template-columns: 1fr;
	}

	.adm-helpline-card {
		min-width: unset;
		width: 100%;
	}

	.adm-faq-question {
		font-size: 15px;
		padding: 16px 18px;
	}

	.adm-faq-answer-inner {
		padding: 0 18px 16px;
		font-size: 14px;
	}

	.adm-step-card h3 {
		font-size: 16px;
	}

	.adm-step-card p {
		font-size: 13px;
	}
}
