/* â”€â”€ CTA Register Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-register {
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	background: #0d2e18;
}

.cta-register-bg {
	position: absolute;
	inset: 0;
	background: url('https://uigreenmetric.com/wp-content/uploads/2024/01/banner-about.jpg') center/cover no-repeat;
	/* Parallax: pinning the image to the viewport makes the section slide over it.
	   Declared after the shorthand, which would otherwise reset attachment to scroll. */
	background-attachment: fixed;
	opacity: 0.56;
	pointer-events: none;
}

/* Touch devices ignore fixed attachment (iOS) or jank on it, so hand those back a
   normal background. Keyed on pointer capability rather than width — a laptop with a
   half-width window is still a mouse-driven desktop and should keep the parallax. */
@media (hover: none) and (pointer: coarse),
(prefers-reduced-motion: reduce) {
	.cta-register-bg {
		background-attachment: scroll;
	}
}

.cta-register-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10,39,20,0.8), rgba(16,73,35,0.4));
	pointer-events: none;
}

.cta-register-inner {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.cta-register-inner h2 {
	color: #fff;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	margin-bottom: 1.25rem;
	line-height: 1.3;
}

.cta-register-inner p {
	color: rgba(255,255,255,0.88);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.cta-register-tagline {
	font-weight: 600;
	font-style: italic;
	color: rgba(255,255,255,0.95) !important;
	margin-bottom: 2rem !important;
	font-size: 1.1rem !important;
}

.cta-register .btn-lg {
	padding: 0.85rem 2.5rem;
	font-size: 1rem;
	border-radius: 8px;
	background: #fff;
	color: var(--green-900);
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-register .btn-lg:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.programs {
	padding: 4rem 0 5rem;
	background: var(--section-dark);
}

.section-header {
	margin-bottom: 2.5rem;
	text-align: center;
}

.section-header.light h2,
.section-header.light p {
	color: var(--white);
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	padding: 0 2rem;
}

.program-card {
	background: transparent;
	padding: 1rem;
	border-radius: 16px;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease,
	            opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
	background: var(--white);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.program-card img {
	border-radius: 8px;
	width: 100%;
	max-height: 220px;
	object-fit: cover;
	margin-bottom: 1rem;
}

.program-placeholder {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-radius: 8px;
	padding: 3rem 1rem;
	margin-bottom: 1rem;
}

.program-card:hover .program-placeholder {
	background: #f3f5f2;
	color: var(--green-700);
}

.program-card h3 {
	color: var(--white);
	margin-bottom: 0.5rem;
}

.program-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.program-card:hover h3,
.program-card:hover p,
.program-card:hover .text-link {
	color: var(--gray-900);
}

.clients {
	padding: 3rem 0 4rem;
	background: var(--gray-100);
}

.logo-marquee {
	overflow: hidden;
	position: relative;
	margin-bottom: 1.5rem;
	/* Each tier is a little narrower than the one above it and stays centred. */
	max-width: var(--row-width, 100%);
	margin-inline: auto;
}

/* The hover tooltip sits above a card, so the row must stop clipping vertically.
   overflow-x:clip is the one way to keep horizontal clipping while letting the
   y-axis stay visible (overflow-x:hidden would force overflow-y to auto). */
@supports (overflow: clip) {
	.logo-marquee {
		overflow: visible;
		overflow-x: clip;
	}
}

/* Tooltips open upward, so each row must sit above the row before it — --row is set
   inline per row. The hovered row jumps to the top so its tooltip is never covered,
   including while it fades back out. */
.logo-marquee {
	z-index: var(--row, 1);
}

.logo-marquee:hover {
	z-index: 10;
}

.logo-marquee::before,
.logo-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	width: 80px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.logo-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--gray-100), rgba(249, 255, 245, 0));
}

.logo-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--gray-100), rgba(249, 255, 245, 0));
}

.logo-track {
	--logo-gap: 1.5rem;
	display: flex;
	gap: var(--logo-gap);
	align-items: center;
	width: max-content;
	/* The track holds two identical copies of the row, so one loop must travel exactly
	   one copy PLUS the gap that follows it — that lands copy 2 where copy 1 started.
	   Plain -50% falls half a gap short and produces a visible jump, hence the dedicated
	   keyframe below. Duration scales with --logo-count (set inline per row) so a short
	   row and a long row scroll at the same speed instead of over the same duration. */
	animation: logo-marquee calc(var(--logo-count, 12) * 2.6s * var(--speed, 1)) linear infinite;
	margin: 10px 0;
}

@keyframes logo-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - var(--logo-gap) / 2));
	}
}

.logo-marquee:hover .logo-track {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
	.logo-track {
		animation: none;
	}
}

.logo-card {
	background: var(--white);
	padding: 0.75rem 1rem;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	width: 160px;
	height: 110px;
	display: grid;
	place-items: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
	color: inherit;
}

.logo-card img {
	max-height: 70px;
	object-fit: contain;
}

.logo-card {
	position: relative;
}

.logo-card:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

/* ── Hover tooltip: partner name + tier ──────────────────── */
.logo-tip {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	width: max-content;
	max-width: 240px;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 0.65rem 0.8rem;
	border-radius: 12px;
	background: rgba(17, 30, 24, 0.96);
	color: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
	text-align: left;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 6px) scale(0.96);
	transform-origin: bottom center;
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	pointer-events: none;
	z-index: 7;
}

/* little arrow */
.logo-tip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: rgba(17, 30, 24, 0.96);
}

.logo-card:hover .logo-tip,
.logo-card:focus-visible .logo-tip {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0) scale(1);
}

.logo-tip-name {
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: normal;
}

.logo-tip-meta {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
}

.logo-tip-badge {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	color: #1a1a1a;
	white-space: nowrap;
}

.logo-tip-badge--platinum {
	background: linear-gradient(135deg, #e8ecf1, #b9c4d0);
}

.logo-tip-badge--gold {
	background: linear-gradient(135deg, #f7d774, #d9a521);
}

.logo-tip-badge--silver {
	background: linear-gradient(135deg, #dfe4e8, #a8b2bb);
}

.logo-tip-country {
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {

	.logo-tip,
	.logo-card {
		transition: none;
	}
}


.testimonials {
	padding: 3rem 0 4rem;
	background: var(--gray-100);
}

.testimonial-grid {
	display: grid;
	gap: 2rem;
	max-width: 80vw;
	margin: 0 auto;
	margin-top: 2rem;
}

.testimonial-row {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 1.5rem;
	align-items: center;
}

.testimonial-row:nth-child(even) {
	grid-template-columns: 1fr 320px;
}

.testimonial-row:nth-child(even) img {
	order: 2;
}

.testimonial-row:nth-child(even) .testimonial-card {
	order: 1;
}

.testimonial-row img {
	border-radius: 16px;
	width: 100%;
	max-width: 320px;
	justify-self: center;
}

.testimonial-card {
	background: #fdfbec;
	border-radius: 16px;
	padding: 1.1rem 1.4rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.quote {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.events {
	padding: 3.5rem 0;
	background: #2f6142;
	color: var(--white);
	text-align: center;
}

.event-card {
	margin: 1.5rem auto 0;
	background: var(--white);
	color: var(--gray-900);
	padding: 2rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(23, 68, 41, 0.93);
	max-width: 860px;
}

.event-logos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	align-items: center;
	margin: 1.5rem 0;
}

.event-logos img {
	max-height: 80px;
	object-fit: contain;
	width: 100%;
}

.countdown {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 1rem;
	margin: 1.5rem auto;
}

.countdown div {
	background: #174429;
	color: var(--white);
	padding: 0.75rem 1rem;
	border-radius: 4px;
}

.countdown strong {
	font-size: 1.5rem;
	display: block;
}

.news {
	padding: 3rem 0 4rem;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}

.news-card {
	background: var(--white);
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
}

.news-card img {
	border-radius: 6px;
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 0.75rem;
	transition: transform .35s ease;
}
.news-card:hover img { transform: scale(1.03); }
.news-card-img-link {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 0.75rem;
}
.news-card-img-link img { margin-bottom: 0; border-radius: 0; }
.news-card-img-placeholder {
	width: 100%;
	height: 200px;
	background: var(--green-100, #dcfce7);
	border-radius: 6px;
	margin-bottom: .75rem;
}
.news-card-cat {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--green-600);
	margin: 0 0 .35rem;
}
.news-card-title-link {
	text-decoration: none;
	color: inherit;
}
.news-card-title-link h3 {
	font-size: 1rem;
	line-height: 1.45;
	margin: 0 0 .5rem;
	transition: color .2s;
}
.news-card-title-link:hover h3 { color: var(--green-600); }

.news-date {
	font-size: 0.85rem;
	color: var(--gray-700);
}

.text-link.light {
	color: var(--white);
}

.text-link {
	font-weight: 600;
	color: var(--green-700);
	text-decoration: underline;
}

/* â”€â”€ Registration Form (University Rankings Landing) â”€â”€â”€â”€â”€ */
.register-split {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 3rem;
	align-items: start;
}
.register-intro .eyebrow {
	letter-spacing: .15em;
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.register-form-card {
	background: #fff;
	border-radius: 1rem;
	padding: 2rem 2.25rem;
	box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.register-form label {
	display: block;
	font-size: .82rem;
	font-weight: 600;
	color: var(--gray-900);
	margin-bottom: .35rem;
}
.register-form .req { color: #e74c3c; }
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="url"],
.register-form select {
	width: 100%;
	padding: .6rem .85rem;
	border: 1px solid #ddd;
	border-radius: .5rem;
	font-size: .92rem;
	font-family: inherit;
	color: var(--gray-900);
	background: #fafafa;
	transition: border-color .2s, box-shadow .2s;
}
.register-form input:focus,
.register-form select:focus {
	outline: none;
	border-color: var(--green-600);
	box-shadow: 0 0 0 3px rgba(47,125,77,.15);
	background: #fff;
}
.register-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	padding-right: 2.25rem;
}
.form-row { margin-bottom: 1rem; }
.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.form-divider {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: .75rem 0 1.25rem;
}
.form-captcha .captcha-inline {
	display: flex;
	align-items: center;
	gap: .5rem;
}
.form-captcha .captcha-inline input[readonly] {
	width: 3rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.1rem;
	background: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: .5rem;
	padding: .5rem;
	color: var(--green-700);
}
.form-captcha .captcha-inline span {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--gray-700);
}
.form-captcha .captcha-answer {
	width: 5rem !important;
	text-align: center;
	font-weight: 600;
	font-size: 1.1rem;
}
.btn-submit {
	width: 100%;
	margin-top: .5rem;
	padding: .85rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	justify-content: center;
	gap: .5rem;
}
@media (max-width: 900px) {
	.register-split {
		grid-template-columns: 1fr;
	}
	.register-intro img { display: none; }
}
@media (max-width: 640px) {
	.register-form-card {
		padding: 1.5rem 1.25rem;
	}
	.form-grid-2 {
		grid-template-columns: 1fr;
	}
}

/* â”€â”€ Register CTA (Landing Page) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.register-cta-section {
	background: var(--section-dark);
	color: #fff;
}
.register-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	flex-wrap: wrap;
}
.register-cta-text {
	flex: 1 1 360px;
}
.register-cta-text .eyebrow {
	color: var(--accent);
	letter-spacing: .15em;
	text-transform: uppercase;
	font-size: .8rem;
	font-weight: 600;
	margin-bottom: .5rem;
}
.register-cta-text h2 {
	color: #fff;
	font-size: 2rem;
	margin: 0 0 1rem;
}
.register-cta-text p {
	color: rgba(255,255,255,.82);
	line-height: 1.7;
	margin-bottom: .6rem;
}
.register-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-shrink: 0;
}
.btn-outline-light {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.75rem;
	border-radius: .5rem;
	border: 2px solid rgba(255,255,255,.6);
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	transition: background .2s, border-color .2s;
}
.btn-outline-light:hover {
	background: rgba(255,255,255,.12);
	border-color: #fff;
}
.btn-outline-green {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.75rem;
	border-radius: .5rem;
	border: 2px solid var(--green-400, #4ade80);
	color: var(--green-300, #86efac);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	background: transparent;
	transition: background .2s, border-color .2s, color .2s;
}
.btn-outline-green:hover {
	background: rgba(74,222,128,.15);
	border-color: var(--green-300, #86efac);
	color: #fff;
}
.btn-lg {
	padding: .9rem 2rem;
	font-size: 1rem;
}
@media (max-width: 640px) {
	.register-cta-inner { flex-direction: column; }
	.register-cta-actions { width: 100%; }
	.register-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── How to Participate (University Rankings) ──────────────── */
.htp-section {
	background: var(--gray-50, #f9fafb);
}
.htp-section .section-header p {
	color: var(--gray-600);
	font-size: 1.05rem;
	margin-top: .4rem;
}
.htp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}
.htp-card {
	background: var(--white);
	border-radius: 1rem;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
	border: 1px solid rgba(0, 0, 0, .06);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
}
.htp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.htp-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(47, 125, 77, .10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-700, #166534);
	margin-bottom: .25rem;
}
.htp-badge {
	display: inline-block;
	background: var(--green-700, #166534);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .25rem .85rem;
	border-radius: 999px;
}
.htp-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 0;
	line-height: 1.35;
}
.htp-card p {
	font-size: .9rem;
	color: var(--gray-600);
	line-height: 1.65;
	margin: 0;
}
@media (max-width: 900px) {
	.htp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.htp-grid { grid-template-columns: 1fr; }
	.htp-card { padding: 1.5rem 1.25rem; }
}



/* â”€â”€ Register University Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reg-page-intro {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3rem;
	align-items: start;
}
.reg-page-intro-text h2 { margin-top: 0; }
.reg-page-intro-text p { color: var(--gray-700); line-height: 1.7; }
.reg-page-steps {
	margin-top: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.reg-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.reg-step-num {
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
	border-radius: 50%;
	background: var(--green-700, #166534);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .9rem;
	margin-top: .1rem;
}
.reg-step strong { display: block; font-size: .95rem; color: var(--gray-900); margin-bottom: .25rem; }
.reg-step p { margin: 0; font-size: .88rem; color: var(--gray-600); }
.reg-form-wrap {
	max-width: 820px;
	margin: 0 auto;
}
.reg-fieldset {
	border: 1px solid #e5e7eb;
	border-radius: .75rem;
	padding: 1.5rem 1.75rem;
	margin-bottom: 1.5rem;
}
.reg-legend {
	padding: 0 .5rem;
	font-weight: 700;
	font-size: .95rem;
	color: var(--green-700, #166534);
	letter-spacing: .04em;
}
.reg-form-footer {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}
.reg-privacy-note {
	font-size: .82rem;
	color: var(--gray-500);
	line-height: 1.5;
	margin: 0;
}
.captcha-op {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--gray-700);
}
/* FAQ grid */
.reg-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.reg-faq-item {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.reg-faq-item h4 {
	margin: 0 0 .6rem;
	font-size: .95rem;
	color: #000;
}
.reg-faq-item p {
	margin: 0;
	font-size: .88rem;
	color: var(--gray-600);
	line-height: 1.6;
	color: #000;
}
.reg-faq-item a { color: var(--green-700, #166534); font-weight: 600; }

@media (max-width: 820px) {
	.reg-page-intro { grid-template-columns: 1fr; }
	.reg-page-intro-img { order: -1; }
}
@media (max-width: 560px) {
	.reg-fieldset { padding: 1.25rem 1rem; }
	.reg-form-footer .btn-submit { width: 100%; justify-content: center; }
}

/* â”€â”€ Info Session Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.info-session-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.info-session-card {
	flex: 1 1 320px;
	max-width: 420px;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid rgba(0,0,0,.08);
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .2s, transform .2s;
}

.info-session-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.10);
	transform: translateY(-2px);
}

.info-session-card-header {
	background: linear-gradient(135deg, var(--green-900), var(--green-700));
	color: #fff;
	padding: 1.25rem 1.5rem;
}

.info-session-card-header h3 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

.info-session-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.info-session-meta-row {
	display: flex;
	align-items: flex-start;
	gap: .625rem;
	font-size: .95rem;
	color: var(--gray-700);
	line-height: 1.5;
}

.info-session-meta-row svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--green-700);
}

.info-session-meta-row .text-link {
	color: var(--green-700);
	font-weight: 600;
	text-decoration: none;
}

.info-session-meta-row .text-link:hover {
	text-decoration: underline;
}

.info-session-card-footer {
	padding: 0 1.5rem 1.5rem;
}

.info-session-card-footer .btn {
	width: 100%;
	justify-content: center;
}

@media (max-width: 640px) {
	.info-session-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
	.info-session-card-header h3 {
		font-size: .95rem;
	}
	.info-session-card-body {
		padding: 1.25rem;
	}
	.info-session-card-footer {
		padding: 0 1.25rem 1.25rem;
	}
	.rankings-indicator-grid {
		grid-template-columns: 1fr;
	}
}

/* â”€â”€ End Info Session â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€ Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* CARD */
.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 125, 77, .15);
  position: relative;
}

.contact-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(47, 125, 77, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin: 0 0 .5rem;
  color: var(--green-900);
}

.contact-card p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.contact-email {
  display: block;
  font-weight: 600;
  color: var(--green-900);
  text-decoration: underline;
  margin-bottom: .75rem;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-900);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: 6px;
  opacity: 0;
  transition: all .3s ease;
  font-size: .9rem;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ End Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

