/* About Us — section-accurate UI (IIFR mockups) */

/* ── Shared motion & accents ── */
.iifr-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.iifr-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.iifr-hover-lift {
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.iifr-hover-lift:hover {
	transform: translateY(-5px);
}

.iifr-title-accent::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: var(--iifr-gold);
	margin-top: 0.6rem;
	border-radius: 1px;
}

.iifr-title-accent--center::after {
	margin-inline: auto;
}

.iifr-title-accent--short::after {
	width: 42px;
}

.iifr-title-accent--hero::after {
	width: 64px;
	background: var(--iifr-gold);
}

.iifr-title-accent--light::after {
	background: var(--iifr-gold);
}

.iifr-about-page {
	width: 100%;
	max-width: none;
	overflow-x: clip;
}

/* Full-bleed section bands — backgrounds span viewport; content stays in .iifr-container */
.iifr-about-page .iifr-section,
.iifr-about-page .iifr-hero--about,
.iifr-about-page .iifr-about-intro {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

.iifr-about-page .iifr-section > .iifr-container,
.iifr-about-page .iifr-about-intro > .iifr-container {
	width: 100%;
	max-width: var(--iifr-content-width);
}

.iifr-section {
	padding: 5rem 0;
}

.iifr-section--light {
	background: #f5f5f5;
}

.iifr-section--beige {
	background: #f9f7f2;
}

.iifr-section--cream {
	background: #fcfbf7;
}

.iifr-section--muted {
	background: #f5f6f8;
}

.iifr-section-title {
	font-family: var(--iifr-font-serif);
	font-size: clamp(1.65rem, 2.6vw, 2rem);
	font-weight: 600;
	color: var(--iifr-navy);
	margin-bottom: 0;
	line-height: 1.2;
}

.iifr-section-title--center {
	text-align: center;
}

.iifr-section-title--light {
	color: var(--iifr-white);
	font-size: 1.2rem;
	font-weight: 500;
}

.iifr-section-lead {
	color: var(--iifr-text-muted);
	font-size: 0.875rem;
	line-height: 1.75;
}

.iifr-section-lead--center {
	max-width: 560px;
	margin-inline: auto;
	text-align: center;
	margin-top: 1rem;
}

/* ── 1. Hero (matches reference: watermark, globe right, gold accent) ── */
.iifr-page-about .iifr-main {
	margin-top: 0;
}

.iifr-hero--about {
	position: relative;
	background-color: #050a18;
	background-image: var(--hero-image);
	background-size: cover;
	background-position: 72% center;
	background-repeat: no-repeat;
	color: var(--iifr-white);
	padding: 0 0 5rem;
	min-height: clamp(420px, 48vh, 520px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.iifr-hero--about .iifr-container {
	max-width: var(--iifr-content-width);
}

/* Darken left for text; keep globe visible on the right (original layout) */
.iifr-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='4' cy='4' r='0.7' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E") repeat,
		linear-gradient(90deg, rgba(5, 10, 24, 0.88) 0%, rgba(5, 10, 24, 0.5) 42%, rgba(5, 10, 24, 0.12) 58%, transparent 72%);
	background-size: 100px 100px, auto;
	pointer-events: none;
	z-index: 0;
}

.iifr-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: 3.5rem;
	padding-bottom: 2rem;
	width: 100%;
}

.iifr-hero__content {
	position: relative;
	max-width: 520px;
}

/* Decorative ghost title only — not a duplicate of visible copy */
.iifr-hero__watermark {
	position: absolute;
	left: -0.02em;
	top: 50%;
	transform: translateY(-58%);
	margin: 0;
	font-family: var(--iifr-font-serif);
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 600;
	line-height: 0.85;
	color: rgba(255, 255, 255, 0.07);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	letter-spacing: -0.03em;
}

.iifr-hero__title {
	position: relative;
	z-index: 1;
	font-size: clamp(2.85rem, 5.2vw, 4rem);
	font-weight: 600;
	color: var(--iifr-white);
	margin: 0;
	letter-spacing: -0.02em;
}

.iifr-title-accent--hero::after {
	width: 56px;
	height: 3px;
	margin-top: 0.9rem;
	margin-left: 0;
	background: var(--iifr-gold);
	border-radius: 1px;
}

.iifr-hero__lead {
	position: relative;
	z-index: 1;
	max-width: 480px;
	font-size: 0.875rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
	margin: 1.5rem 0 0;
	font-weight: 400;
}

/* ── 2. About IIFR ── */
.iifr-about-intro {
	background: #ffffff;
	padding: 5.5rem 0;
}

.iifr-about-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.iifr-about-intro__content p {
	font-size: 0.875rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.iifr-about-intro__media img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 31, 63, 0.12);
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.iifr-about-intro__media:hover img {
	transform: scale(1.015);
	box-shadow: 0 16px 48px rgba(0, 31, 63, 0.16);
}

/* ── 3. Why IIFR — left intro (⅓) + 4 columns with dividers (⅔) ── */
.iifr-why {
	padding: 5rem 0;
}

.iifr-why__layout {
	display: grid;
	grid-template-columns: minmax(240px, 34%) 1fr;
	gap: clamp(2rem, 3.5vw, 3.5rem);
	align-items: start;
}

.iifr-why__title {
	margin-bottom: 0.75rem;
}

.iifr-why__title-mark {
	display: inline-block;
	border-bottom: 3px solid var(--iifr-gold);
	padding-bottom: 0.2rem;
	line-height: 1.1;
}

.iifr-why__intro .iifr-section-lead {
	margin-top: 1.25rem;
	max-width: 300px;
	font-size: 0.875rem;
	color: #555;
	line-height: 1.75;
}

.iifr-why__columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: start;
}

.iifr-why__item {
	padding: 0 1.35rem;
	border-left: 1px solid #e0e0e0;
	text-align: left;
}

.iifr-why__item:first-child {
	border-left: none;
	padding-left: 0;
}

.iifr-why__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 42px;
}

.iifr-why__copy {
	font-size: 0.8125rem;
	color: #444;
	line-height: 1.55;
	margin: 0;
	font-family: var(--iifr-font-sans);
}

.iifr-why__copy strong {
	font-family: var(--iifr-font-serif);
	font-weight: 700;
	color: var(--iifr-navy);
	font-size: 0.9rem;
}

/* Dark line icons (reference) */
.iifr-why__icon--graduation {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 8L4 18l20 10 20-10-20-10z' stroke='%23222222' stroke-width='1.8'/%3E%3Cpath d='M12 22v10c0 4 8 8 12 8s12-4 12-8V22' stroke='%23222222' stroke-width='1.8'/%3E%3Cpath d='M40 18v14' stroke='%23222222' stroke-width='1.8'/%3E%3C/svg%3E");
}

.iifr-why__icon--lightbulb {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 6a14 14 0 0 0-4 27v5h8v-5a14 14 0 0 0-4-27z' stroke='%23222222' stroke-width='1.8'/%3E%3Cpath d='M20 38h8M22 42h4' stroke='%23222222' stroke-width='1.8'/%3E%3C/svg%3E");
}

.iifr-why__icon--people {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='16' cy='15' r='5' stroke='%23222222' stroke-width='1.8'/%3E%3Ccircle cx='32' cy='15' r='5' stroke='%23222222' stroke-width='1.8'/%3E%3Cpath d='M8 36c0-6 5-10 8-10s8 4 8 10M24 36c0-6 5-10 8-10s8 4 8 10' stroke='%23222222' stroke-width='1.8'/%3E%3C/svg%3E");
}

.iifr-why__icon--globe {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='24' r='16' stroke='%23222222' stroke-width='1.8'/%3E%3Cellipse cx='24' cy='24' rx='8' ry='16' stroke='%23222222' stroke-width='1.5'/%3E%3Cpath d='M8 24h32' stroke='%23222222' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ── 4. Mission (mockup: num top-left, line icon in white circle top-right) ── */
.iifr-mission {
	background: #ffffff;
	padding: 5.5rem 0;
}

.iifr-mission__title {
	margin-bottom: 0.5rem;
}

.iifr-mission__title-mark {
	display: inline-block;
	border-bottom: 3px solid var(--iifr-gold);
	padding-bottom: 0.2rem;
	line-height: 1.1;
}

.iifr-mission .iifr-section-lead--center {
	margin-top: 0.75rem;
	color: #6b7280;
}

.iifr-mission__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.15rem;
	margin-top: 2.75rem;
}

.iifr-mission-card {
	position: relative;
	padding: 1.25rem 1.2rem 1.35rem;
	border-radius: 14px;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.iifr-mission-card:hover {
	box-shadow: 0 8px 24px rgba(0, 31, 63, 0.08);
}

.iifr-mission-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 1.35rem;
}

.iifr-mission-card__num {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: var(--iifr-white);
	font-size: 0.8125rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--iifr-font-sans);
	flex-shrink: 0;
}

.iifr-mission-card--orange .iifr-mission-card__num { background: #d4883a; }
.iifr-mission-card--blue .iifr-mission-card__num { background: #1e4a7a; }
.iifr-mission-card--green .iifr-mission-card__num { background: #3d7a5a; }
.iifr-mission-card--gray .iifr-mission-card__num { background: #6b7280; }

.iifr-mission-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--iifr-white);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 34px;
	flex-shrink: 0;
	box-shadow: 0 2px 10px rgba(0, 31, 63, 0.07);
}

.iifr-mission-card h3 {
	font-family: var(--iifr-font-serif);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--iifr-navy);
	margin: 0 0 0.65rem;
	line-height: 1.35;
	width: 100%;
}

.iifr-mission-card p {
	font-family: var(--iifr-font-sans);
	font-size: 0.6875rem;
	color: #5c6578;
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

.iifr-mission-card--orange {
	background: #fdf0e4;
	border: 1px solid rgba(212, 136, 58, 0.22);
}

.iifr-mission-card--blue {
	background: #e8f0fa;
	border: 1px solid rgba(30, 74, 122, 0.18);
}

.iifr-mission-card--green {
	background: #e6f2eb;
	border: 1px solid rgba(61, 122, 90, 0.2);
}

.iifr-mission-card--gray {
	background: #eeeff2;
	border: 1px solid rgba(107, 114, 128, 0.22);
}

/* Line icons — stroke only, themed color */
.iifr-mission-card__icon--leaders {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='14' cy='16' r='3.5' stroke='%23d4883a' stroke-width='1.6'/%3E%3Ccircle cx='24' cy='14' r='3.5' stroke='%23d4883a' stroke-width='1.6'/%3E%3Ccircle cx='34' cy='16' r='3.5' stroke='%23d4883a' stroke-width='1.6'/%3E%3Cpath d='M8 32c0-4 3.5-7 6-7s6 3 6 7M18 32c0-4 3.5-7 6-7s6 3 6 7M28 32c0-4 3.5-7 6-7s6 3 6 7' stroke='%23d4883a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.iifr-mission-card__icon--discovery {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='20' cy='22' r='9' stroke='%231e4a7a' stroke-width='1.6'/%3E%3Cellipse cx='20' cy='22' rx='4.5' ry='9' stroke='%231e4a7a' stroke-width='1.4'/%3E%3Cpath d='M7 22h26' stroke='%231e4a7a' stroke-width='1.2'/%3E%3Ccircle cx='32' cy='32' r='6' stroke='%231e4a7a' stroke-width='1.6'/%3E%3Cpath d='M36.5 36.5l6 6' stroke='%231e4a7a' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.iifr-mission-card__icon--scholar {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M8 34h32' stroke='%233d7a5a' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M12 34V20l12-8 12 8v14' stroke='%233d7a5a' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M10 20h28' stroke='%233d7a5a' stroke-width='1.6'/%3E%3Cpath d='M17 34V24h2v10M23 34V24h2v10M29 34V24h2v10' stroke='%233d7a5a' stroke-width='1.6'/%3E%3C/svg%3E");
}

.iifr-mission-card__icon--network {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='10' r='3' stroke='%236b7280' stroke-width='1.6'/%3E%3Ccircle cx='10' cy='36' r='3' stroke='%236b7280' stroke-width='1.6'/%3E%3Ccircle cx='38' cy='36' r='3' stroke='%236b7280' stroke-width='1.6'/%3E%3Cpath d='M24 13v12M12 33l9-9M36 33l-9-9' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── 5. Vision ── */
.iifr-vision {
	background: #000c1f;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 380'%3E%3Ccircle cx='700' cy='190' r='160' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1'/%3E%3Cellipse cx='700' cy='190' rx='80' ry='160' fill='none' stroke='%23ffffff' stroke-opacity='0.06'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: right center;
	padding: 4.5rem 0;
	text-align: center;
}

.iifr-vision__quote {
	font-family: var(--iifr-font-serif);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 400;
	max-width: 760px;
	margin: 1rem auto 0;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.95);
	border: none;
	padding: 0;
}

/* ── 6. Leadership ── */
.iifr-leadership {
	padding: 5rem 0 5.5rem;
}

.iifr-leadership > .iifr-container > .iifr-section-title {
	margin-bottom: 2.25rem;
}

.iifr-leadership__board {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--iifr-white);
	border-radius: 14px;
	box-shadow: 0 8px 36px rgba(0, 31, 63, 0.08);
	overflow: hidden;
}

.iifr-leadership__col {
	padding: 2rem 1.75rem;
}

.iifr-leadership__col:first-child {
	border-right: 1px solid #ebebeb;
}

.iifr-leadership__col h3 {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--iifr-navy);
	margin-bottom: 0.5rem;
}

.iifr-leadership__intro {
	font-size: 0.75rem;
	color: #666;
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.iifr-leadership__subtitle {
	font-family: var(--iifr-font-sans);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--iifr-gold);
	margin: 1.5rem 0 0.75rem;
	padding-top: 0.5rem;
	border-top: 2px solid var(--iifr-gold);
	display: inline-block;
}

.iifr-leadership__featured {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.iifr-leader-featured {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.iifr-leader-featured__photo {
	width: 88px;
	height: 88px;
	flex-shrink: 0;
	border-radius: 10px;
	background: linear-gradient(145deg, #dde3ec, #b0bcc9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--iifr-navy);
	font-size: 1rem;
	box-shadow: 0 4px 14px rgba(0, 31, 63, 0.1);
	transition: transform 0.25s ease;
}

.iifr-leader-featured:hover .iifr-leader-featured__photo {
	transform: scale(1.03);
}

.iifr-leader-featured__info strong {
	display: block;
	font-family: var(--iifr-font-serif);
	font-size: 0.95rem;
	color: var(--iifr-navy);
}

.iifr-leader-featured__info span {
	display: block;
	font-size: 0.75rem;
	color: #666;
}

.iifr-leader-featured__org {
	font-size: 0.7rem !important;
	color: var(--iifr-gold) !important;
	font-weight: 600;
	margin-top: 0.15rem;
}

.iifr-leadership__members {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.85rem 1rem;
}

.iifr-leader-member {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.iifr-leader-member__photo {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 8px;
	background: linear-gradient(145deg, #e4e9f0, #c5ced8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--iifr-navy);
}

.iifr-leader-member__name {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--iifr-navy);
	line-height: 1.25;
}

.iifr-leadership__council {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem 0.65rem;
}

.iifr-council-member {
	margin: 0;
	text-align: center;
}

.iifr-council-member__photo {
	width: 100%;
	aspect-ratio: 1;
	max-width: 72px;
	margin: 0 auto 0.35rem;
	border-radius: 8px;
	background: linear-gradient(145deg, #e4e9f0, #c5ced8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--iifr-navy);
	transition: transform 0.25s ease;
}

.iifr-council-member:hover .iifr-council-member__photo {
	transform: scale(1.04);
}

.iifr-council-member figcaption {
	font-size: 0.625rem;
	font-weight: 500;
	color: var(--iifr-navy);
	line-height: 1.25;
}

/* ── 7. Partners ── */
.iifr-partners {
	background: #ffffff;
	padding: 5rem 0;
}

.iifr-partners__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.25rem;
}

.iifr-partner-card {
	background: var(--iifr-white);
	border: 1px solid #e8eaed;
	border-radius: 12px;
	padding: 2rem 1.5rem 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 31, 63, 0.05);
	display: flex;
	flex-direction: column;
	min-height: 230px;
}

.iifr-partner-card:hover {
	border-color: rgba(197, 160, 89, 0.4);
	box-shadow: 0 12px 32px rgba(0, 31, 63, 0.1);
}

.iifr-partner-card__logo {
	min-height: 56px;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.iifr-logo-bvb {
	font-family: var(--iifr-font-serif);
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a5f9e;
	line-height: 1;
}

.iifr-logo-bvb-tag {
	font-size: 0.7rem;
	color: #5a9fd4;
	font-weight: 500;
	margin-top: 0.15rem;
}

.iifr-partner-card__logo--efmd {
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.iifr-logo-efmd-icon {
	width: 36px;
	height: 36px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Ccircle cx='18' cy='10' r='3' fill='%23c41e3a'/%3E%3Ccircle cx='10' cy='24' r='3' fill='%23c41e3a'/%3E%3Ccircle cx='26' cy='24' r='3' fill='%23c41e3a'/%3E%3Cpath d='M18 13v6M13 21l4-3M23 21l-4-3' stroke='%23c41e3a' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.iifr-logo-efmd-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.02em;
}

.iifr-logo-latticed {
	font-size: 1.35rem;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.04em;
}

.iifr-logo-latticed-ed {
	color: #e69138;
}

.iifr-partner-card p {
	font-size: 0.8125rem;
	color: #5a6270;
	line-height: 1.65;
	flex: 1;
}

.iifr-partner-card__link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #1e5a8a;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	transition: color 0.2s ease;
}

.iifr-partner-card__link:hover {
	color: #0d4a75;
	text-decoration: underline;
}

.iifr-partner-card__link:hover span {
	transform: translateX(4px);
	transition: transform 0.2s ease;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
	.iifr-why__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.iifr-why__intro .iifr-section-lead {
		max-width: none;
	}

	.iifr-why__columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 0;
	}

	.iifr-why__item:nth-child(odd) {
		border-left: none;
		padding-left: 0;
	}

	.iifr-why__item:nth-child(even) {
		border-left: 1px solid #e0e0e0;
	}
}

@media (max-width: 960px) {
	.iifr-about-intro__grid,
	.iifr-leadership__board {
		grid-template-columns: 1fr;
	}

	.iifr-leadership__col:first-child {
		border-right: none;
		border-bottom: 1px solid #ebebeb;
	}

	.iifr-mission__grid,
	.iifr-partners__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.iifr-leadership__council {
		grid-template-columns: repeat(3, 1fr);
	}

	.iifr-hero--about {
		min-height: 360px;
		background-position: 70% center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iifr-reveal,
	.iifr-hover-lift,
	.iifr-reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 600px) {
	.iifr-why__columns,
	.iifr-mission__grid,
	.iifr-partners__grid,
	.iifr-leadership__members,
	.iifr-leadership__council {
		grid-template-columns: 1fr;
	}

	.iifr-section {
		padding: 3.25rem 0;
	}
}
