@charset "UTF-8";

/* =========================================================================
   ABOUT (591) — per-page styles (D34: this file only).
   Bands: title-bar → image hero (.page-hero) → Mission + Staff (dark-teal,
   clipped) → Board of Directors → At Large Board Members → Executive
   Committee / 2026 Advisory Board (dark-teal, clipped) → Hall of Fame →
   Committees. Repeatable component: .member-card (circular headshot +
   role/name/company + LinkedIn).
   Shared tokens/classes owned by Mason (creda.css); referenced here.
   Layout units: vw + %. Type: clamp() with vw midpoints.
   ========================================================================= */

/* Shared section rhythm + headings */
.about-mission,
.about-board,
.about-atlarge,
.about-exec,
.about-hof,
.about-committees { padding: clamp(56px, 5.5vw, 90px) 3vw; }
.about-board, .about-atlarge, .about-hof, .about-committees { background: #fff; }

.about-mission > .wp-block-columns,
.about-exec > .wp-block-columns,
.about-hof > .wp-block-columns,
.about-committees > .wp-block-columns { gap: 4vw; align-items: flex-start; }

/* Section-level h4 headings (45px measured) */
.about-board > .wp-block-heading,
.about-atlarge > .wp-block-heading,
.about-hof > .wp-block-heading,
.about-committees > .wp-block-heading {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: var(--creda-secondary);
	font-size: clamp(2rem, 1.1rem + 2.8vw, 2.8125rem);
	line-height: 1.05;
	margin-bottom: 2.4vw;
}

/* ----- S2  Mission + Staff (dark teal, clipped) ----------------------- */
.about-mission {
	background: var(--creda-primary);
	color: #fff;
	padding-bottom: clamp(90px, 9vw, 150px);
}
.about-mission .wp-block-columns { gap: 4vw; }
.about-mission__heads { margin-bottom: 0.5vw; align-items: flex-end; }
.about-mission h4 {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: var(--creda-pale-teal);
	font-size: clamp(1.9rem, 1.1rem + 2.4vw, 2.8125rem);
	line-height: 1.05;
}
.about-mission__body { align-items: flex-start; }
.about-mission__body > .wp-block-column > p {
	color: #fff;
	font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1rem);
	margin-bottom: 1em;
}

/* ----- Team-member card (repeatable) ---------------------------------- */
.member-grid { gap: 2vw 2vw; margin-top: 1vw; }
.member-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.member-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.member-card { text-align: center; }
.member-card__photo { margin: 0 auto 1rem; width: -moz-fit-content; width: fit-content; }
.member-card__photo img {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: clamp(110px, 11vw, 180px) !important;
	height: auto;
	display: block;
}
.member-card__photo--empty {
	width: clamp(110px, 11vw, 180px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin: 0 auto 1rem;
	background: #d7dbdd radial-gradient(circle at 50% 38%, #b9c0c3 0 22%, transparent 23%);
}
.member-card__photo--empty::after {
	content: "";
	display: block;
	width: 60%; height: 42%;
	margin: 42% auto 0;
	border-radius: 50% 50% 0 0;
	background: #b9c0c3;
}
.member-card__role {
	color: var(--creda-primary);
	font-weight: 600;
	font-size: clamp(0.8rem, 0.72rem + 0.2vw, 0.875rem);
	line-height: 1.2;
	margin: 0 0 0.2em;
}
.member-card__name {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 600;
	color: var(--creda-secondary);
	font-size: clamp(1.3rem, 0.9rem + 1.1vw, 1.875rem);
	line-height: 1.1;
	margin: 0 0 0.15em;
}
.member-card__name--sm { font-size: clamp(1.1rem, 0.85rem + 0.7vw, 1.4375rem); }
.member-card__company {
	color: var(--creda-body);
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.125rem);
	margin: 0;
}
/* Staff variant — name teal 28px, position pale-blue, bio white left */
.member-card--staff { text-align: center; }
.member-card--staff .member-card__name { font-size: clamp(1.4rem, 1rem + 0.9vw, 1.75rem); }
.member-card--staff .member-card__position {
	color: var(--creda-pale-blue);
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.125rem);
	margin: 0 0 1em;
}
.member-card--staff .member-card__bio {
	color: #fff;
	text-align: left;
	font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
	margin-bottom: 1em;
}
/* LinkedIn as a small teal SQUARE badge overlaid on the photo's bottom-right corner
   (live Divi team-member style), not a circle below the name. Photo is a fixed 180px
   square, centered; anchor the badge to that corner relative to the card. */
.member-card { position: relative; }
.member-card__li { position: absolute; top: 150px; left: calc(50% + 56px); margin: 0; padding: 0; z-index: 3; justify-content: flex-start; }
.member-card__li .wp-social-link { background-color: var(--creda-secondary) !important; color: #fff !important; border-radius: 4px !important; }
.member-card__li .wp-social-link a { padding: 6px; }

/* ----- S5  Executive Committee / Advisory Board (dark teal, clipped) --- */
.about-exec {
	background: var(--creda-primary);
	color: #fff;
	padding-bottom: clamp(90px, 9vw, 150px);
}
.about-exec h4 {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: var(--creda-pale-teal);
	font-size: clamp(1.9rem, 1.1rem + 2.4vw, 2.8125rem);
	line-height: 1.05;
	margin-bottom: 1.4vw;
}
.about-exec p { color: #fff; font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1rem); margin-bottom: 0.8em; }

/* ----- S6  Hall of Fame ----------------------------------------------- */
.about-hof p { color: var(--creda-body); font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1rem); margin-bottom: 0.7em; }
.about-hof strong { color: var(--creda-primary); }

/* ----- S7  Committees -------------------------------------------------- */
.about-committee__title {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: var(--creda-primary);
	font-size: clamp(1.25rem, 1rem + 0.7vw, 1.5625rem);
	line-height: 1.2;
	margin: 2vw 0 0.8em;
}
.about-committees .wp-block-column > .about-committee__title:first-child { margin-top: 0; }
.about-committees p { color: var(--creda-body); font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem); margin-bottom: 1em; }
.about-committees strong { color: var(--creda-primary); }

/* ----- Responsive ----------------------------------------------------- */
@media screen and (max-width: 980px) {
	.member-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.member-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about-mission__heads,
	.about-mission__body,
	.about-exec > .wp-block-columns,
	.about-hof > .wp-block-columns,
	.about-committees > .wp-block-columns { flex-wrap: wrap; }
	.about-mission__heads .wp-block-column,
	.about-mission__body .wp-block-column,
	.about-exec .wp-block-column,
	.about-hof .wp-block-column,
	.about-committees .wp-block-column {
		flex-basis: 100% !important; max-width: 100% !important;
	}
	.about-mission__body .wp-block-column { margin-bottom: 6vw; }
	.about-exec .wp-block-column:first-child,
	.about-hof .wp-block-column:first-child { margin-bottom: 5vw; }
}
@media screen and (max-width: 479px) {
	.member-grid--3, .member-grid--4 { grid-template-columns: 1fr; }
}

/* =========================================================================
   INTERACTIONS (page-specific) — President polish. Global button/link
   hover defaults + on-scroll reveal handled in creda.css (don't duplicate);
   these are the About-specific member-card + badge accents.
   ~.2–.25s ease (D32: tasteful — cards are bg-less, so we lift the headshot
   rather than the whole card).
   ========================================================================= */
/* Member cards — circular headshot scales + gains shadow; name shifts teal */
.member-card__photo img { transition: transform .25s ease, box-shadow .25s ease; }
.member-card:hover .member-card__photo img { transform: scale(1.045); box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.member-card__name { transition: color .2s ease; }
.member-card:hover .member-card__name { color: var(--creda-tertiary); }
/* LinkedIn badge — lift + darken to navy on hover */
.member-card__li .wp-social-link { transition: transform .2s ease, background-color .2s ease; }
.member-card__li .wp-social-link:hover { transform: translateY(-2px); background-color: var(--creda-primary) !important; }
/* In-content links (committee/mission) — smooth fade */
.about-committees a, .about-mission a { transition: color .2s ease, opacity .2s ease; }
.about-committees a:hover, .about-mission a:hover { opacity: .82; }

@media (prefers-reduced-motion: reduce) {
	.member-card:hover .member-card__photo img { transform: none; }
	.member-card__li .wp-social-link:hover { transform: none; }
}
