html {
	scroll-snap-type: y proximity;
	scroll-padding-top: 0;
	scroll-behavior: smooth
}

@media (min-width:768px) {
	html {
		scroll-padding-top: 120px
	}
}

:root {
	--blue-dark: #1c3466;
	--blue-meta: #3868cc;
	--dark-bg: #182b58;
	--darker-bg: #01164a;
	--gold: #ffb700;
	--orange: #ff6f08;
	--font-poppins: 'Poppins', sans-serif;
	--font-montserrat: 'Montserrat', sans-serif
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body.members-page {
	background: url(../assets/members/background/Desktop-Members-Page-BG.jpg)center top/cover fixed no-repeat;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: var(--font-poppins)
}

#main-content {
	height: auto;
	overflow: visible;
	position: relative
}

.snap-section {
	height: 100vh;
	scroll-snap-align: start;
	position: relative;
	overflow: hidden
}

#footer-placeholder {
	scroll-snap-align: end
}

#section-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -120px;
	padding-top: 120px;
}

#section-hero:not(.active-section) {
	scroll-snap-align: none
}

.members-layout {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden
}

.members-sidebar {
	position: absolute;
	z-index: 5
}

.hero-card {
	position: relative;
	overflow: hidden;
	background: url(../assets/members/cards/Desktop-Members-Hero-Card.jpg)center/cover no-repeat
}

.hero-search {
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, .1);
	border: .821px solid rgba(255, 255, 255, .15);
	border-radius: 32.829px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25)
}

.hero-search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.hero-search-input {
	flex: 1;
	background: 0 0;
	border: 0;
	color: #fff;
	font-family: var(--font-poppins);
	font-weight: 200
}

.hero-search-input:focus-visible {
	outline: 3px solid #f2af00;
	outline-offset: 2px;
	border-radius: 4px
}

.hero-search-input::placeholder {
	color: rgba(255, 255, 255, .6);
	font-family: var(--font-poppins);
	font-weight: 200
}

.hero-content {
	position: absolute;
	z-index: 5
}

.hero-title {
	font-family: var(--font-poppins);
	font-weight: 700;
	color: #fff;
	line-height: 1;
	text-align: right
}

.hero-accent-line {
	height: 0;
	position: relative
}

.hero-accent-line::after {
	content: "";
	position: absolute;
	height: 5px;
	background: linear-gradient(90deg, #ffb700, #ff6f08);
	border-radius: 2px
}

.hero-subtitle {
	font-weight: 700;
	line-height: 1.2
}

.hero-cta-text,
.hero-description,
.hero-subtitle {
	font-family: var(--font-poppins);
	color: #fff
}

.hero-description {
	font-weight: 300;
	line-height: 1.5;
	transform: translateX(-10px)
}

.hero-cta-text {
	font-weight: 400
}

.hero-cta-highlight {
	background: linear-gradient(90deg, #ff8400, #ffb700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hero-btn-arrow,
.hero-btn-register {
	align-items: center;
	justify-content: center
}

.hero-btn-register {
	display: inline-flex;
	gap: 10.602px;
	background: linear-gradient(180deg, #f89804, #f06109);
	border-radius: 10.602px;
	color: #fff;
	font-family: var(--font-poppins);
	font-weight: 500;
	text-decoration: none;
	box-shadow: 0 9px 5.15px rgba(0, 0, 0, .25);
	transition: opacity .3s
}

.hero-btn-register:hover {
	opacity: .85
}

.hero-btn-arrow {
	display: flex
}

.hero-mascot {
	display: none
}

@media (max-width:767px) {
	.members-sidebar {
		display: none
	}

	.hero-card {
		width: calc(100% - 32px);
		height: calc(100% - 100px);
		margin: 0 16px;
		border-radius: 20px;
		align-self: center
	}

	.hero-search {
		top: 16px;
		right: 16px;
		left: 16px;
		height: 44px;
		padding: 0 16px;
		gap: 10px
	}

	.hero-search-icon svg {
		width: 14px;
		height: 14px
	}

	.hero-search-input {
		font-size: 13px
	}

	.hero-content {
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - 48px);
		text-align: center
	}

	.hero-title {
		font-size: 32px;
		margin-bottom: 8px;
		text-align: left
	}

	.hero-accent-line {
		margin: 0 auto 12px;
		width: 80px
	}

	.hero-accent-line::after {
		width: 80px
	}

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 8px;
		font-weight: 400;
		margin-right: 20px
	}

	.hero-description {
		font-size: 24px;
		margin-bottom: 20px;
		max-width: 530px
	}

	.hero-cta-text {
		font-size: 16px;
		margin-bottom: 20px
	}

	.hero-btn-register {
		padding: 12px 36px;
		font-size: 25.44px;
		margin: 0 auto;
		width: 326px;
		height: 69px
	}

	.hero-btn-arrow svg {
		width: 16px;
		height: 16px
	}
}

@media (min-width:768px) and (max-width:1023px) {
	.members-sidebar {
		display: none
	}

	.hero-card {
		width: calc(100% - 80px);
		height: calc(100% - 80px);
		margin: 0 40px;
		border-radius: 24px;
		align-self: center
	}

	.hero-search {
		top: 24px;
		right: 40px;
		width: 320px;
		height: 48px;
		padding: 0 20px;
		gap: 12px
	}

	.hero-search-input {
		font-size: 15px
	}

	.hero-content {
		top: 50%;
		left: 60px;
		transform: translateY(-50%);
		width: 55%
	}

	.hero-title {
		font-size: 48px;
		margin-bottom: 10px
	}

	.hero-accent-line {
		margin-bottom: 16px;
		width: 100px
	}

	.hero-accent-line::after {
		width: 100px
	}

	.hero-subtitle {
		font-size: 22px;
		margin-bottom: 12px
	}

	.hero-description {
		font-size: 16px;
		margin-bottom: 16px;
		max-width: 400px
	}

	.hero-cta-text {
		font-size: 18px;
		margin-bottom: 24px
	}

	.hero-btn-register {
		padding: 14px 44px;
		font-size: 18px
	}

	.hero-btn-arrow svg {
		width: 18px;
		height: 18px
	}
}

.founders-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 60px 40px
}

.founders-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px
}

.founders-title {
	font-family: var(--font-poppins);
	font-weight: 700;
	font-size: 24px;
	background: linear-gradient(180deg, #ffb700 0, #ff6f08 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	white-space: nowrap
}

.founders-line {
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #ffb700, #ff6f08, transparent);
	border-radius: 1px
}

.founders-description {
	font-family: var(--font-poppins);
	font-weight: 400;
	font-size: 14px;
	color: #000;
	text-align: center;
	max-width: 800px;
	line-height: 1.6;
	margin-bottom: 32px
}

.founders-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 24px;
	justify-items: center
}

.member-card {
	width: 180px;
	height: 300px;
	background: rgba(217, 217, 217, .2);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 12px;
	flex-shrink: 0;
	position: relative
}

.member-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 3px;
	background: linear-gradient(135deg, #3a6fff 0, #6aa0ff 25%, #e8c078 75%, #dba070 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none
}

.member-photo-wrapper {
	width: 80px;
	height: 80px;
	margin-bottom: 16px
}

.member-photo-inner {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden
}

.member-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center
}

.member-name,
.member-position {
	font-family: var(--font-poppins);
	font-weight: 700;
	font-size: 13px;
	color: #000;
	text-align: center;
	margin-bottom: 4px
}

.member-position {
	font-weight: 500;
	font-size: 11px;
	margin-bottom: 14px
}

.member-socials {
	display: flex;
	gap: 10px;
	margin-bottom: 10px
}

.member-links svg,
.member-socials svg {
	display: block
}

.member-links {
	display: flex;
	gap: 14px
}

.section-placeholder {
	display: flex;
	align-items: center;
	justify-content: center
}

.placeholder-content {
	text-align: center;
	opacity: .3
}

.placeholder-title {
	font-family: var(--font-poppins);
	font-weight: 700;
	font-size: clamp(32px, 6vw, 75px);
	background: linear-gradient(180deg, #ffb700 0, #ff6f08 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

@media (min-width:1024px) {
	.snap-section {
		height: calc(100vh - 120px)
	}

	#section-hero {
		margin-top: 0;
		padding-top: 0
	}

	.members-sidebar {
		display: flex;
		flex-direction: column;
		position: fixed;
		left: 50px;
		top: 157px;
		width: 247px;
		height: calc(100vh - 207px);
		max-height: 750px;
		background: #fff;
		border-radius: 23.185px;
		box-shadow: 0 3.367px 3.367px 0 rgba(0, 0, 0, .25);
		padding: 30px 0 20px;
		z-index: 100
	}

	.members-sidebar.at-footer {
		position: absolute;
		bottom: 35px;
		top: auto
	}

	.sidebar-title {
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		font-size: 26.938px;
		color: #071231;
		letter-spacing: -1.0775px;
		padding: 0 26px;
		margin-bottom: 30px
	}

	.sidebar-nav {
		display: flex;
		flex-direction: column;
		gap: 4px;
		padding: 0
	}

	.sidebar-nav-item {
		display: flex;
		align-items: center;
		gap: 14px;
		padding: 14px 26px;
		text-decoration: none;
		color: #58617d;
		font-family: var(--font-poppins);
		font-size: 18.123px;
		letter-spacing: -.7249px;
		position: relative;
		transition: all .2s
	}

	.sidebar-nav-item .sidebar-nav-indicator {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 0;
		background: #ff6f08;
		border-radius: 0 3px 3px 0;
		transition: width .2s
	}

	.sidebar-nav-item.active .sidebar-nav-indicator {
		width: 5.051px
	}

	.sidebar-nav-item.active {
		background: #f9f9f9;
		color: #ed5904
	}

	.sidebar-nav-icon {
		width: 33px;
		height: 33px;
		object-fit: contain;
		flex-shrink: 0
	}

	.sidebar-nav-icon,
	.sidebar-nav-label {
		position: relative;
		z-index: 1
	}

	.sidebar-card {
		margin: 60px 22px 0;
		padding: 20px 16px 24px;
		background: #fff;
		border-radius: 9.703px;
		box-shadow: 0 4.312px 4.312px 0 rgba(0, 0, 0, .25);
		text-align: center
	}

	.sidebar-card-badge {
		width: 61.171px;
		height: 61.171px;
		margin: 0 auto 12px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden
	}

	.sidebar-card-badge-img {
		width: 100%;
		height: 100%;
		object-fit: contain
	}

	.sidebar-card-title {
		font-family: var(--font-poppins);
		font-weight: 500;
		font-size: 16.171px;
		color: #000023;
		letter-spacing: -.6469px;
		text-transform: capitalize;
		margin-bottom: 6px
	}

	.sidebar-card-subtitle {
		font-family: var(--font-poppins);
		font-weight: 300;
		font-size: 11.859px;
		color: #5b617a;
		letter-spacing: -.4744px;
		line-height: 1.4;
		max-width: 148px;
		margin: 0 auto
	}

	.hero-card {
		position: absolute;
		left: 460px;
		width: calc(100% - 573px);
		right: auto;
		top: 37px;
		aspect-ratio: 1347/847;
		max-width: 1347px;
		max-height: calc(100vh - 220px);
		border-radius: 27.542px;
		container-type: size
	}

	.members-layout {
		height: 100%
	}

	.hero-search {
		top: 8.5cqh;
		right: 12.1cqw;
		width: 42.4cqw;
		height: 6.9cqh;
		padding: 0 1.8cqw;
		gap: 1cqw;
		border-radius: 3.5cqh
	}

	.hero-search-input {
		font-size: 1.55cqw;
		letter-spacing: .062cqw
	}

	.hero-content {
		left: 39.2cqw;
		top: 28.8cqh;
		right: auto;
		text-align: left;
		transform: none;
		display: flex;
		flex-direction: column;
		align-items: flex-start
	}

	.hero-title {
		font-size: 4.52cqw;
		text-align: left;
		white-space: nowrap;
		margin-bottom: 2cqh
	}

	.hero-accent-line {
		margin: 0 0 7.3cqh
	}

	.hero-accent-line,
	.hero-accent-line::after {
		width: 8.95cqw;
		height: .7cqh
	}

	.hero-subtitle {
		font-size: 1.93cqw;
		margin-bottom: 6cqh;
		margin-right: 0;
		white-space: nowrap
	}

	.hero-description {
		font-size: 1.78cqw;
		margin-bottom: 8.38cqh;
		max-width: 39.3cqw;
		text-align: left;
		transform: none
	}

	.hero-cta-text {
		width: auto;
		font-size: 1.78cqw;
		letter-spacing: 1.2px;
		margin-bottom: 2.36cqh;
		transform: none
	}

	.hero-btn-register {
		width: 24.2cqw;
		height: 8.14cqh;
		padding: 0;
		font-size: 1.88cqw;
		letter-spacing: 1.0178px;
		border-radius: .78cqw;
		transform: none
	}

	.hero-btn-arrow svg {
		width: 19px;
		height: 19px
	}

	.hero-mascot {
		display: block;
		position: absolute;
		right: 50%;
		top: 11px;
		height: 100%;
		width: auto;
		pointer-events: none;
		transform: scale(1.1)
	}

	.founders-content {
		position: absolute;
		left: 360px;
		right: 133px;
		top: 28px;
		transform: none;
		height: auto;
		padding: 0
	}

	.founders-header {
		gap: 24px;
		margin-bottom: 20px
	}

	.founders-title {
		font-size: 33.17px
	}

	.founders-line {
		width: 398px
	}

	.founders-description {
		font-size: 16px;
		max-width: 1110px;
		margin-top: -20px;
		margin-bottom: 20px
	}

	.founders-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		row-gap: 10px
	}

	.member-card {
		width: 210px;
		max-width: 304px;
		height: 320px;
		padding: 20px 16px 24px
	}

	.member-photo-wrapper {
		width: 120px;
		height: 120px;
		margin-bottom: 14px
	}

	.member-photo-inner {
		position: relative;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -40%);
		width: 150%;
		height: 140%;
		border-radius: 16px;
		overflow: hidden;
		background: rgba(217, 217, 217, .15);
		border: 2px solid rgba(255, 255, 255, .1);
		box-shadow: 0 3px 6px rgba(0, 0, 0, .15)
	}

	.member-name {
		font-size: 14px;
		color: #000;
		margin-top: 35px
	}

	.member-position {
		font-size: 11px;
		color: #000;
		margin-bottom: 16px
	}

	.member-socials {
		gap: 12px;
		margin-bottom: 12px
	}

	.member-links {
		gap: 16px
	}

	.section-placeholder {
		padding-left: 460px;
		padding-right: 113px
	}

	@media (max-height:850px) {
		.founders-content {
			top: 25px;
			transform: none
		}

		.founders-description {
			font-size: 13px;
			margin-bottom: 12px;
			line-height: 1.4;
			margin-top: -10px
		}

		.founders-grid {
			gap: 30px;
			row-gap: 10px
		}

		.member-card {
			width: 190px;
			max-width: 250px;
			height: 260px;
			padding: 12px 10px 16px
		}

		.member-photo-wrapper {
			width: 90px;
			height: 90px;
			margin-bottom: 10px
		}

		.member-photo-inner {
			width: 150%;
			height: 140%
		}

		.member-name {
			font-size: 13px;
			margin-top: 25px
		}

		.member-position {
			font-size: 10px;
			margin-bottom: 10px
		}
	}

	.hero-btn-arrow-mobile,
	.member-title-mobile {
		display: none
	}
}

@media (min-width:1400px) {
	.members-layout {
		max-width: 1920px;
		margin: 0 auto
	}
}

@media (max-width:767px) {
	.founders-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		height: 70%
	}

	.founders-description {
		font-size: 12px;
		height: 10%;
		background: linear-gradient(180deg, #1c3466 0, #1c3466 13%, #1c3466 93%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text
	}

	.member-name,
	.member-position {
		color: #003678
	}

	.member-position {
		font-style: italic
	}

	.founders-content {
		overflow-y: auto;
		padding-top: -30px;
	}

	.founders-title {
		font-size: 37px;
		background: linear-gradient(180deg, #ffb700 0, #f2af00 30%, #ff6f08 78%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text
	}

	.founders-header {
		margin-bottom: 0;
	}

	.founders-line {
		height: 2.5px
	}

	.member-card {
		width: 182.46px;
		height: 300.85px;
	}

	.member-photo-inner {
		width: 100%;
		height: 100%;
		background: rgba(217, 217, 217, .15);
		border: 2px solid rgba(255, 255, 255, .1);
		box-shadow: 0 3px 6px rgba(0, 0, 0, .15)
	}

	.member-photo-wrapper {
		width: 149.09px;
		height: 149.24px
	}

	.member-links {
		display: none
	}

	.hero-card {
		margin: 0 auto;
		border-radius: 0;
		background: url(../assets/members/background/mobile-hero-card-ellipse.svg), url(../assets/members/background/mobile-hero-card-bg.webp)center/cover no-repeat, linear-gradient(180deg, #182b58 33%, #02184b 100%);
		background-position: top, center, center, center;
		background-size: 500px 300px, cover, auto;
		background-repeat: no-repeat, no-repeat, no-repeat;
		width: 431px
	}

	.hero-mascot {
		position: relative;
		left: 5%;
		z-index: 3;
		width: 70%;
		max-width: 500px;
		margin: 1rem auto 0;
		display: block
	}

	.hero-accent-line::after {
		right: 90%;
		width: 120.66px;
		background: #ff750b
	}

	.hero-description {
		font-size: 12px;
		margin-left: 30px;
		margin-top: 35px
	}

	.hero-cta-text {
		font-size: 23px;
		text-align: center;
		letter-spacing: 2px
	}

	.hero-title {
		font-size: 40px;
		margin-left: 45px
	}

	.hero-search {
		top: 10%;
		width: 345px;
		margin: 0 auto
	}

	.snap-section {
		height: 200vh
	}

	.member-title-mobile {
		text-align: center;
		padding-top: 30px;
		font-weight: 700;
		font-size: 26.94px;
		color: #fff
	}

	.hero-btn-arrow {
		display: none
	}

	.hero-btn-arrow-mobile svg {
		width: 34.19px;
		height: 50.19px
	}
}

.hidden {
	display: none !important
}

.member-socials a,
.member-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none
}

#section-associates,
#section-offices {
	height: auto !important;
	overflow: visible !important;
	min-height: 0 !important
}

#section-associates .members-layout,
#section-offices .members-layout {
	height: auto !important;
	overflow: visible !important
}

#section-associates .founders-content,
#section-offices .founders-content {
	overflow: visible !important
}

#section-associates .founders-grid,
#section-offices .founders-grid {
	height: auto !important;
	overflow: visible !important
}

#section-associates .founders-grid{
	top: -10%;
	position: relative;
	display: grid;
}

@media (max-width:767px) {
	#section-associates,
	#section-offices {
		height: auto !important
	}

	#section-associates .snap-section,
	#section-offices .snap-section {
		height: auto !important
	}
}

@media (max-height:850px) {
	#section-associates,
	#section-offices {
		height: auto !important
	}
}

.founders-subsection {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* FOUNDERS SECTION STYLES */
#section-founders .member-card {
	width: 382px;
	max-width: 382px;
	height: 600px;
	border-radius: 39.556px;
	padding: 24px 8px;
	flex-shrink: 0
}

#section-founders .member-photo-wrapper {
	width: 316px;
	height: 346px;
	margin-bottom: 10px;
	border-radius: 28.301px;
	display: flex;
	align-items: center;
	justify-content: center
}

#section-founders .member-photo-inner {
	width: 390px;
	height: 305px;
	border-radius: 30.07px;
	background: #fff;
	transform: none;
	left: auto;
	top: auto;
	position: relative;
	border: none;
	overflow: hidden
}

#section-founders .member-name {
	font-size: 23px;
	font-weight: 600;
	color: #003678;
	margin-top: 10px;
	margin-bottom: 4px;
	line-height: 34px
}

#section-founders .member-role {
	font-size: 24.7222px;
	font-style: italic;
	font-weight: 500;
	line-height: 37px;
	background: linear-gradient(180deg, #0064DE, #003678);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-align: center;
	margin-bottom: 4px;
	font-family: var(--font-poppins)
}

#section-founders .member-position {
	font-size: 14.8333px;
	font-weight: 300;
	color: #003678;
	text-align: center;
	margin-bottom: 10px;
	line-height: 22px
}

#section-founders .founders-grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 30px
}

#section-founders .member-socials {
	gap: 16px;
	margin-bottom: 8px
}

#section-founders .member-links {
	gap: 16px
}

#section-founders .member-card::before {
	padding: 4px;
	border-radius: 39.556px
}

@media (min-width: 1024px) {

	/* EXECUTIVES SECTION OVERRIDES (DESKTOP) */
	#section-executives .member-card {
		width: 300px;
		max-width: 320px;
		height: 550px;
		border-radius: 23.975px;
		padding: 16px 10px;
		flex-shrink: 0;
	}

	#section-executives .member-photo-wrapper {
		width: 260px;
		height: 300px;
		margin-top: 10px;
		border-radius: 17px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#section-executives .member-photo-inner {
		width: 250px;
		height: 290px;
		border-radius: 18px;
		background: #fff;
		transform: none;
		left: auto;
		top: auto;
		position: relative;
		border: none;
		overflow: hidden;
	}

	#section-executives .member-name {
		font-size: 20px;
		font-weight: 600;
		color: #003678;
		margin-top: 10px;
		margin-bottom: 4px;
		line-height: 30px;
	}

	#section-executives .member-role {
		font-size: 16px;
		font-style: italic;
		font-weight: 500;
		line-height: 24px;
		background: linear-gradient(180deg, #0064DE, #003678);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
		text-align: center;
		margin-bottom: 4px;
		font-family: var(--font-poppins);
	}

	#section-executives .member-position {
		font-size: 14px;
		font-weight: 300;
		color: #003678;
		text-align: center;
		margin-bottom: 10px;
		line-height: 20px;
	}

	#section-executives .founders-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	#section-executives .member-socials {
		gap: 14px;
		margin-bottom: 8px;
	}

	#section-executives .member-socials svg {
		width: 18px;
		height: 18px;
	}

	#section-executives .member-links {
		gap: 14px;
	}

	#section-executives .member-links svg {
		width: 16px;
		height: 16px;
	}

	#section-executives .member-card::before {
		padding: 3px;
		border-radius: 23.975px;
	}

	/* SECTION LAYOUT OVERRIDES (DESKTOP) */
	#section-founders,
	#section-executives,
	#section-associates,
	#section-offices {
		height: auto !important;
		overflow: visible !important;
		scroll-snap-align: none;
	}

	#section-founders .members-layout,
	#section-executives .members-layout,
	#section-associates .members-layout,
	#section-offices .members-layout {
		height: auto;
		overflow: visible;
	}

	#section-founders .founders-content,
	#section-executives .founders-content,
	#section-associates .founders-content,
	#section-offices .founders-content {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		padding: 37px 133px 60px 460px !important;
	}

	#section-executives .founders-content {
		margin-top: 0;
	}

	#section-founders .founders-subsection:nth-child(1) {
		position: relative;
		top: -20px;
	}

	#section-founders .founders-subsection:nth-child(2) {
		padding-top: 20px;
	}

	#section-founders .founders-subsection:nth-child(3) {
		position: relative;
		top: -30px;
	}



	#section-founders .founders-subsection,
	#section-executives .founders-subsection,
	#section-offices .founders-subsection,
	#section-associates .founders-subsection {
		height: auto;
		min-height: 100vh;
	}

	/* Executive year labels */
	#section-executives .founders-subsection:nth-child(1 of .founders-subsection) .founders-grid::before {
		content: "26'-27'";
		display: block;
		width: 100%;
		flex-shrink: 0;
		text-align: center;
		font-family: var(--font-poppins);
		font-style: italic;
		font-size: 50px;
		color: #fff;
		text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
		margin-bottom: 20px;
	}

	#section-executives .founders-subsection:nth-child(2 of .founders-subsection) .founders-grid::before {
		content: "25'-26'";
		display: block;
		width: 100%;
		flex-shrink: 0;
		text-align: center;
		font-family: var(--font-poppins);
		font-style: italic;
		font-size: 50px;
		color: #fff;
		text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
		margin-bottom: 20px;
	}

	/* ASSOCIATES SECTION OVERRIDES (DESKTOP) */
	#section-associates .member-card {
		width: 300px;
		max-width: 320px;
		height: 550px;
		border-radius: 23.975px;
		padding: 16px 10px;
		flex-shrink: 0;
	}

	#section-associates .member-photo-wrapper {
		width: 260px;
		height: 300px;
		margin-top: 10px;
		border-radius: 17px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#section-associates .member-photo-inner {
		width: 250px;
		height: 290px;
		border-radius: 18px;
		background: #fff;
		transform: none;
		left: auto;
		top: auto;
		position: relative;
		border: none;
		overflow: hidden;
	}

	#section-associates .member-name {
		font-size: 20px;
		font-weight: 600;
		color: #003678;
		margin-top: 10px;
		margin-bottom: 4px;
		line-height: 30px;
	}

	#section-associates .member-role {
		font-size: 16px;
		font-style: italic;
		font-weight: 500;
		line-height: 24px;
		background: linear-gradient(180deg, #0064DE, #003678);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
		text-align: center;
		margin-bottom: 4px;
		font-family: var(--font-poppins);
	}

	#section-associates .member-position {
		font-size: 14px;
		font-weight: 300;
		color: #003678;
		text-align: center;
		margin-bottom: 10px;
		line-height: 20px;
	}

	#section-associates .founders-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	#section-associates .member-socials {
		gap: 14px;
		margin-bottom: 8px;
	}

	#section-associates .member-socials svg {
		width: 18px;
		height: 18px;
	}

	#section-associates .member-links {
		gap: 14px;
	}

	#section-associates .member-links svg {
		width: 16px;
		height: 16px;
	}

	#section-associates .member-card::before {
		padding: 3px;
		border-radius: 23.975px;
	}

	/* Hide empty description for associates */
	#section-associates .founders-description {
		display: none;
	}

	/* Align first associate subsection to the top matching other sections */
	#section-associates .founders-subsections > .founders-subsection:first-child {
		justify-content: flex-start;
	}

	/* AWS Official Website Contributors subtitle on first associate subsection */
	#section-associates .founders-subsection:nth-child(1 of .founders-subsection) .founders-grid::before {
		content: "AWS Official Website Contributors";
		display: block;
		width: 100%;
		flex-shrink: 0;
		text-align: center;
		font-family: var(--font-poppins);
		font-style: italic;
		font-size: 37.4px;
		color: #fff;
		text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
		margin-bottom: 20px;
	}
}

/* Associate subsection titles (UI/UX, FRONTEND, BACKEND) in white italic */
#section-associates .founders-subsection:nth-child(n+2) .founders-title {
	font-style: italic;
	font-size: 37.4px;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	background-clip: unset
}

/* Hide empty description for offices */
#section-offices .founders-description {
	display: none
}

/* Office card styles (same as executive) */
#section-offices .member-card {
	width: 300px;
	max-width: 320px;
	height: 550px;
	border-radius: 23.975px;
	padding: 16px 10px;
	flex-shrink: 0
}

#section-offices .member-photo-wrapper {
	width: 260px;
	height: 300px;
	margin-top: 10px;
	border-radius: 17px;
	display: flex;
	align-items: center;
	justify-content: center
}

#section-offices .member-photo-inner {
	width: 250px;
	height: 290px;
	border-radius: 18px;
	background: #fff;
	transform: none;
	left: auto;
	top: auto;
	position: relative;
	border: none;
	overflow: hidden
}

#section-offices .member-name {
	font-size: 20px;
	font-weight: 600;
	color: #003678;
	margin-top: 10px;
	margin-bottom: 4px;
	line-height: 30px
}

#section-offices .member-role {
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	line-height: 24px;
	background: linear-gradient(180deg, #0064DE, #003678);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-align: center;
	margin-bottom: 4px;
	font-family: var(--font-poppins)
}

#section-offices .member-position {
	font-size: 14px;
	font-weight: 300;
	color: #003678;
	text-align: center;
	margin-bottom: 10px;
	line-height: 20px
}

#section-offices .founders-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px
}

/* OFFICES MOBILE OVERRIDE */
@media(max-width:767px){
	#section-offices .founders-grid,
	#section-founders .founders-grid{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.founders-grid::before{
		grid-column: 1 / -1;
	}
	#section-offices .member-card,
	#section-founders .member-card{
		width: 182.46px;
		height: 300.85px;
	}
	#section-offices .member-photo-wrapper,
	#section-founders .member-photo-wrapper{
		width: 149.09px;
		height: 149.24px;
	}
	#section-offices .member-photo-inner,
	#section-founders .member-photo-inner{
		height: 100%;
		width: 100%;
	}
	#section-offices .member-name,
	#section-founders .member-name{
		font-size: 13px;
		line-height: 1.1em;
		margin-bottom: 0;
		margin-top: 2px;
	}
	#section-offices .member-role, 
	#section-offices .member-position,
	#section-founders .member-role,
	#section-founders .member-position{
		font-size: 11px;
		margin-bottom: 0;
	}
	#section-offices .member-socials{
		margin-top: 2px;
	}
	.member-role{
		color: #003678;
		font-style: italic;
		font-size: 11px;
	}
	#section-founders .founders-grid > *:first-child:last-child{
		grid-column: 1 / -1;
		justify-self: center;
	}
	#section-founders .founders-grid > div:first-child:last-child .member-position{
		font-size: 9px;
	}
	.hero-card{
		height: 100vh;
	}
}


#section-offices .member-socials {
	gap: 14px;
	margin-bottom: 8px
}

#section-offices .member-socials svg {
	width: 18px;
	height: 18px
}

#section-offices .member-links {
	gap: 14px
}

#section-offices .member-links svg {
	width: 16px;
	height: 16px
}

#section-offices .member-card::before {
	padding: 3px;
	border-radius: 23.975px
}

/* Office subsection white titles */
#section-offices .founders-subsection:nth-child(1 of .founders-subsection) .founders-grid::before {
	content: "RELATIONS";
	display: block;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	font-family: var(--font-poppins);
	font-style: italic;
	font-size: 37.4px;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
	margin-bottom: 20px
}

#section-offices .founders-subsection:nth-child(2 of .founders-subsection) .founders-grid::before {
	content: "OPERATIONS";
	display: block;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	font-family: var(--font-poppins);
	font-style: italic;
	font-size: 37.4px;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
	margin-bottom: 20px
}

#section-offices .founders-subsection:nth-child(3 of .founders-subsection) .founders-grid::before {
	content: "MARKETING";
	display: block;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	font-family: var(--font-poppins);
	font-style: italic;
	font-size: 37.4px;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
	margin-bottom: 20px
}

#section-offices .founders-subsection:nth-child(4 of .founders-subsection) .founders-grid::before {
	content: "CREATIVES";
	display: block;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	font-family: var(--font-poppins);
	font-style: italic;
	font-size: 37.4px;
	color: #fff;
	text-shadow: 0 4px 10px rgba(0, 54, 120, 0.5);
	margin-bottom: 20px
}