/* =========================================================
   Clubedu Gateway
   Lightweight / RTL / Responsive
   ========================================================= */

.clubedu-gateway {
	width: 100%;
	min-height: 100svh;
	padding: 50px 20px;
	background: #f5f0e6;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
}

.clubedu-gateway *,
.clubedu-gateway *::before,
.clubedu-gateway *::after {
	box-sizing: border-box;
}

.clubedu-gateway__inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}


/* Brand */

.clubedu-gateway__brand {
	margin-bottom: 30px;
}

.clubedu-gateway__logo {
	margin-bottom: 12px;
}

.clubedu-gateway__logo img {
	display: block;
	width: 110px;
	height: 110px;
	margin: 0 auto;
	object-fit: contain;
}

.clubedu-gateway__brand h1 {
	margin: 0;
	color: #1e4a40;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.5;
}

.clubedu-gateway__brand p {
	margin: 4px 0 0;
	color: #555;
	font-size: 17px;
	line-height: 1.8;
}


/* Decorative line */

.clubedu-gateway__line {
	width: 110px;
	height: 20px;
	margin: 5px auto 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.clubedu-gateway__line::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #c79b5f;
	top: 50%;
	right: 0;
}

.clubedu-gateway__line span {
	position: relative;
	z-index: 2;
	width: 10px;
	height: 10px;
	background: #c79b5f;
	transform: rotate(45deg);
}


/* Cards */

.clubedu-gateway__cards {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.clubedu-gateway__card {
	min-height: 440px;
	padding: 40px 38px 34px;
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.clubedu-gateway__card:hover {
	transform: translateY(-5px);
}


/* Teacher */

.clubedu-gateway__card--teacher {
	background: #1e4a40;
	border: 1px solid #c79b5f;
	color: #fff;
	box-shadow: 0 15px 40px rgba(30, 74, 64, .15);
}


/* Student */

.clubedu-gateway__card--student {
	background: #faf6ec;
	border: 1px solid #d9ccb0;
	color: #1e4a40;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}


/* Icons */

.clubedu-gateway__icon {
	width: 76px;
	height: 76px;
	margin-bottom: 20px;
	border: 2px solid #c79b5f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c79b5f;
	font-size: 35px;
}

.clubedu-gateway__icon span {
	line-height: 1;
}


/* Titles */

.clubedu-gateway__card h2 {
	margin: 0;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.5;
}

.clubedu-gateway__card--teacher h2 {
	color: #fff;
}

.clubedu-gateway__card--student h2 {
	color: #1e4a40;
}


/* Description */

.clubedu-gateway__card p {
	max-width: 450px;
	margin: 17px 0 30px;
	font-size: 16px;
	line-height: 2.05;
}


/* Buttons */

.clubedu-gateway__button {
	width: 100%;
	max-width: 350px;
	min-height: 54px;
	margin-top: auto;
	padding: 13px 20px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	transition:
		transform .2s ease,
		filter .2s ease;
}

.clubedu-gateway__button:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
}

.clubedu-gateway__button--teacher {
	background: #c79b5f;
	color: #173b34 !important;
}

.clubedu-gateway__button--student {
	background: #1e4a40;
	color: #fff !important;
}


/* Features */

.clubedu-gateway__features {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.clubedu-gateway__features div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: #555;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.7;
}

.clubedu-gateway__features strong {
	color: #c79b5f;
	font-size: 20px;
}


/* Notice */

.clubedu-gateway__notice {
	max-width: 700px;
	margin: 25px auto 0;
	padding: 9px 18px;
	border: 1px solid #ded2b8;
	border-radius: 30px;
	background: rgba(255, 255, 255, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #777;
	font-size: 12px;
	line-height: 1.8;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1024px) {

	.clubedu-gateway {
		padding: 40px 18px;
	}

	.clubedu-gateway__brand h1 {
		font-size: 34px;
	}

	.clubedu-gateway__card {
		min-height: 410px;
		padding: 32px 25px 28px;
	}

	.clubedu-gateway__card h2 {
		font-size: 24px;
	}

	.clubedu-gateway__card p {
		font-size: 15px;
	}

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

	.clubedu-gateway {
		min-height: 100svh;
		padding: 30px 14px;
	}

	.clubedu-gateway__brand {
		margin-bottom: 22px;
	}

	.clubedu-gateway__logo img {
		width: 85px;
		height: 85px;
	}

	.clubedu-gateway__brand h1 {
		font-size: 27px;
	}

	.clubedu-gateway__brand p {
		font-size: 14px;
	}

	.clubedu-gateway__cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.clubedu-gateway__card {
		min-height: auto;
		padding: 27px 19px 22px;
		border-radius: 22px;
	}

	.clubedu-gateway__icon {
		width: 62px;
		height: 62px;
		font-size: 28px;
		margin-bottom: 15px;
	}

	.clubedu-gateway__card h2 {
		font-size: 21px;
	}

	.clubedu-gateway__card p {
		margin-top: 10px;
		margin-bottom: 22px;
		font-size: 13.5px;
		line-height: 2;
	}

	.clubedu-gateway__button {
		max-width: none;
		min-height: 50px;
		border-radius: 12px;
		font-size: 13.5px;
	}

	.clubedu-gateway__features {
		margin-top: 25px;
		grid-template-columns: repeat(2, 1fr);
		gap: 17px 8px;
	}

	.clubedu-gateway__features div {
		font-size: 11px;
	}

	.clubedu-gateway__features div:last-child {
		grid-column: 1 / -1;
	}

	.clubedu-gateway__notice {
		margin-top: 20px;
		padding: 8px 10px;
		font-size: 10.5px;
		border-radius: 15px;
	}

}


/* =========================================================
   Small phones
   ========================================================= */

@media (max-width: 380px) {

	.clubedu-gateway {
		padding-left: 10px;
		padding-right: 10px;
	}

	.clubedu-gateway__brand h1 {
		font-size: 24px;
	}

	.clubedu-gateway__card {
		padding-left: 15px;
		padding-right: 15px;
	}

	.clubedu-gateway__card h2 {
		font-size: 19px;
	}

	.clubedu-gateway__card p {
		font-size: 13px;
	}

}