/* ============================================
   BRAND COLORS
============================================ */
:root {
	--primary: #1b375e;
	--secondary: #285272;
	--text: #3A4A58;
	--text-soft: rgba(95, 95, 95, 0.7);
	--banner-bg1: #f3ecff;
	--banner-bg2: #efe6ff;
	--banner-bg3: #f7f2ff;
}


/* ============================================
   SECTION TITLES & TEXT
============================================ */
.section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
}

.mission-text {
	color: var(--text);
	line-height: 1.7;
}

/* ============================================
   PROFILE SECTIONS
============================================ */
.profile-section {
	padding: 70px 20px;
}

.alt-bg {
	background: rgba(205, 225, 245, 0.25);
}

.profile-container {
	max-width: 1100px;
	margin: auto;
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.profile-container.reverse {
	flex-direction: row-reverse;
}

.profile-photo {
	width: 320px;
	height: 380px;
	border-radius: 14px;
	object-fit: cover;
	background: #f1eaff;
}

.profile-content {
	flex: 1;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text);
}

.name {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.role {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary);
	margin-top: 5px;
}

.about-list {
	list-style: disc;
	padding-left: 22px;
}

.about-list li {
	margin: 4px 0;
	color: var(--text);
}

.quote {
	color: var(--text-soft);
	font-style: italic;
}

/* ============================================
   TEAM GRID
============================================ */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
}

.team-card {
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgb(76 125 176 / 44%);
	transition: 0.3s ease;
}

.team-card:hover {
	transform: translateY(-6px);
}

.team-photo {
	width: auto;
	height: 260px;
	border-radius: 12px;
	object-fit: cover;
	background: #f1eaff;
}

.team-name {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
	margin-top: 14px;
}

.team-role {
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 8px;
	font-size: 17px;
}

/* ============================================
   FADE IN (already works with main.js)
============================================ */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: 0.6s ease;
}

.in-view {
	opacity: 1 !important;
	transform: none !important;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
	.about-banner h1 {
		font-size: 32px;
	}

	.profile-container,
	.profile-container.reverse {
		flex-direction: column;
	}

	.profile-photo {
		width: 100%;
		max-width: 420px;
		height: 320px;
	}
}