/*
 * Our Leadership — About Us page section.
 *
 * @package Greenova
 */

.leadership-section {
	background-color: #FFFFFF;
	padding-block:     100px;
}

.leadership-section__inner {
	max-width:      1360px;
	margin:         0 auto;
	padding-inline: 24px;
}

.leadership-section__heading {
	font-family:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size:      56px;
	font-weight:    400;
	line-height:    63px;
	letter-spacing: -2.04px;
	color:          #000000;
	margin:         0 0 48px;
}

/* =============================================================================
   Grid — 3 columns desktop, equal-height cards via CSS Grid's own default
   row stretch (no fixed heights anywhere).
   ============================================================================= */

.leadership-section__grid {
	display:               grid;
	grid-template-columns: repeat(3, 1fr);
	gap:                   32px;
}

.leadership-card {
	display:        flex;
	flex-direction: column;
	border-radius:  24px;
	padding:        32px;
	box-sizing:     border-box;
}

.leadership-card__photo {
	display:       block;
	width:         120px;
	height:        120px;
	border-radius: 50%;
	object-fit:    cover;
	margin-bottom: 24px;
}

.leadership-card__name-row {
	display:     flex;
	align-items: center;
	gap:         8px;
}

.leadership-card__name {
	font-family:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size:      24px;
	font-weight:    600;
	line-height:    100%;
	letter-spacing: 1px;
	text-transform: uppercase;
	color:          #000000;
	margin:         0;
}

.leadership-card__linkedin {
	flex-shrink: 0;
	display:     inline-flex;
	transition:  transform 0.2s ease;
}

.leadership-card__linkedin:hover {
	transform: scale(1.08);
}

.leadership-card__linkedin-icon {
	display: block;
	width:   23px; /* Exact size of the uploaded badge asset — already a complete circular icon, so no CSS-drawn background/radius needed. */
	height:  23px;
}

.leadership-card__designation {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size:   14px;
	font-weight: 600;
	line-height: 22.4px;
	color:       #2E2E2E;
	margin:      8px 0 24px;
}

.leadership-card__description {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size:   14px;
	font-weight: 400;
	line-height: 22.4px;
	color:       #7C7B7B;
}

.leadership-card__description p {
	margin: 0 0 16px;
}

.leadership-card__description > *:last-child {
	margin-bottom: 0;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media ( max-width: 1199.98px ) {
	.leadership-section {
		padding-block: 80px;
	}

	.leadership-section__heading {
		font-size:   2.25rem;
		line-height: 1.2;
		margin-bottom: 40px;
	}

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

@media ( max-width: 767.98px ) {
	.leadership-section {
		padding-block: 56px;
	}

	.leadership-section__heading {
		font-size:      1.75rem;
		line-height:    1.25;
		letter-spacing: -0.02em;
		margin-bottom:  32px;
	}

	.leadership-section__grid {
		grid-template-columns: 1fr;
		gap:                   24px;
	}

	.leadership-card {
		padding:     24px;
		align-items: center;
		text-align:  center;
	}

	.leadership-card__name-row {
		justify-content: center;
	}

	.leadership-card__description {
		text-align: left;
	}
}
