
.header-team {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 100px;
	font-family: "Erode";
	font-size: 1.7vw;
	font-weight: 600;
	color: #e2dbca;
	background: #171f24;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.tabs-section {
	padding: 30px;
    max-width: 90vw;
    margin: 0 auto;
}

.tabs-header {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #999;
	padding-bottom: 15px;
	justify-content: space-between;
}

.tab-btn {
	background: none;
	border: none;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #999;
	cursor: pointer;
	padding-bottom: 10px;
	position: relative;
}

.tab-btn.active {
	color: #222;
	font-weight: 600;
}

.tab-btn.active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -16px;
	width: 100%;
	height: 2px;
	background: #222;
}

.tabs-content {
	margin-top: 40px;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.content-box {
	width: 520px;
	height: 420px;
	background: #e0e0e0;
}
.member-name {
    font-size: clamp(24px, 2.5vw, 60px);
    font-weight: 400;
}
.member-position {
    font-size: clamp(21px, 2vw, 32px);
    font-weight: 300;
    margin-bottom: 20px;
;
}
.member-bio {
    font-size: 16px;
    line-height: 1;
    color: #333;
    font-weight: 300;
    padding-top: 50px;
}
.member-flex {
    display: flex;
    gap: 20px;

    img {
        width: 100%;
    }
}
.member-section-1 {
    width: 50%;
}
.pt-100 {
    padding-top: 100px;
}