.team {
	background: var(--color-surface-light);
	padding: 120px 0;
}

.team__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.team__heading {
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: var(--font-weight-h2);
	color: var(--color-bg-alt);
}

.team__nav {
	display: flex;
	gap: 12px;
}

.team__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: var(--color-bg-alt);
	font-size: 18px;
	cursor: pointer;
	transition: background 0.25s ease;
}

.team__nav-btn:hover {
	background: var(--color-card);
}

.team__nav-btn.swiper-button-disabled {
	opacity: 0.4;
	cursor: default;
}

.team__slider {
	width: 100%;
	overflow: visible;
	padding-top: 60px;
}

.team-card {
	position: relative;
	background-image: url("../images/team-card-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: var(--radius-md);
	overflow: visible;
	height: 100%;
}

.team-card__photo {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: visible;
}

.team-card__photo img {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 105%;
	transform: translateX(-50%);
	object-fit: contain;
	object-position: bottom;
}

.team__cta {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.team__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 36px;
	border-radius: var(--radius-pill);
	background: var(--color-bg-alt);
	color: var(--color-accent-light);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.team-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-card__photo--placeholder span {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	color: rgba(65, 23, 20, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 16px;
}

.team-card__body {
	padding: 20px 24px 24px;
}

.team-card__experience {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-bg-alt);
}

.team-card__doctor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.team-card__doctor-info {
	font-size: 13px;
	line-height: 1.5;
}

.team-card__doctor-role {
	display: block;
	color: var(--color-muted-warm);
}

.team-card__doctor-name {
	display: block;
	font-weight: 700;
	color: var(--color-bg-alt);
}

.team-card__link {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--color-bg-alt);
    font-size: 50px;
    font-weight: 100;
	transition: transform 0.25s ease;
}

.team-card__link:hover {
	transform: translate(3px, -3px);
}

/* Breakpoints: 1440 / 1280 / 1024 / 768 / 380 */

@media (max-width: 1280px) {
	.team__heading {
		font-size: 34px;
	}
}

@media (max-width: 1024px) {
	.team {
		padding: 80px 0;
	}
}

@media (max-width: 768px) {
	.team__heading {
		font-size: 28px;
	}

	.team__nav-btn {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 380px) {
	.team__heading {
		font-size: 24px;
	}
}