.our-leadership-box {
    position: relative;
    background: rgb(226 227 218);
    padding: 3rem 1.5rem;
    border-radius: 1.125rem;
	width: 100%;
	@media (min-width: 768px) {
		padding: 0 3rem;
	}

    h2 {
        font-family: var(--e-global-typography-primary-font-family);
		font-size: 3.75rem;
		color: #000;
		position: relative;
		margin: 0;
		letter-spacing: -.067em;
		@media (min-width: 768px) {
			font-size: 7rem;
			transform: translate(-3rem, -3.3rem);
		}
    }

	.leader-slide {
		display: flex;
		flex-direction: column-reverse;
		padding-top: 2rem;
		padding-bottom: 2rem;
		gap: 1rem;
		@media (min-width: 768px) {
			flex-direction: row;
			align-items: center;
		}

		img {
			aspect-ratio: 16 / 9;
			width: 100%;
			object-fit: cover;
		}

		@media (min-width: 768px) {
			.leader-info {
				width: 50%;
				padding-left: 4rem;
				padding-right: 4rem;
			}
			img {
				width: 50%;
			}
		}

		.btn-primary {
			background-color: var(--e-global-color-primary);
			border-radius: 25px;
			text-transform: uppercase;
			font-weight: 400;
			font-family: "Oswald", sans-serif;
			letter-spacing: 1px;
			font-size: 1.2rem;
			transition: all 0.3s cubic-bezier(.455,.03,.515,.955);
			&:hover {
				background: #000;
				letter-spacing: 1.5px;
			}
		}
	}

    .button-wrapper {
		display: flex;
		justify-content: center;
		padding-bottom: 1rem;
		align-items: center;
		gap: 2rem;
		@media (min-width: 768px) {
			justify-content: flex-end;
		}
        button {
		    width: 2.5rem;
		    flex-shrink: 0;
		    color: rgb(35 31 32 / 1);
		    padding: 0;
		    border: none;
		    &:disabled {
		        color: rgb(150 148 146 / 1);
		    }
		    &:hover {
		        background: transparent;
		    }
		    &:not(:disabled):hover {
				transform: scale(1.1);
		    }
		    &:focus {
		        background: transparent;
				border: 1px solid var(--e-global-color-primary);
		    }
		    svg {
	            stroke: currentColor;
		    }
		}
    }
}

.leader-title {
	font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
	font-size: .75rem;
	text-transform: uppercase;
	line-height: 1;
	margin: 0;
	color: rgb(35 31 32 / 0.5);
}

.leader-info h3 {
	font-size: 2rem;
	font-weight: 700;
	font-family: var(--e-global-typography-accent-font-family);
	line-height: 1.15;
	letter-spacing: -.045em;
}

.bio-excerpt {
	line-height: 1.75rem;
	font-size: 1.125rem;
	padding-bottom: 1.5rem;
	p:last-child {
	    margin-bottom: 0;
	}
	@media (min-width: 768px) {
		padding-bottom: 3rem;
	}
}




