/* Team Members Tab Styling */

/* Hide the radio buttons */
#core-tab,
#demo-tab {
	display: none;
}

/* Style the tab labels as rectangular H2-style buttons */
.team-tab-label {
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	border: 2px solid #b8a054;
	color: #b8a054;
	font-size: 1.7rem;
	font-weight: 300;
	padding: 0.75rem 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.2;
	display: inline-block;
	text-decoration: none;
}

.team-tab-label:hover {
	background-color: #b8a054;
	color: #212529;
	border-color: #b8a054;
	box-shadow: 0 0 10px rgba(184, 160, 84, 0.5);
}

/* Active tab styling */
.team-tab-label.active {
	background-color: #b8a054;
	color: #212529;
	border-color: #b8a054;
	box-shadow: 0 0 10px rgba(184, 160, 84, 0.5);
}

.team-tab-label.active:focus {
	box-shadow: 0 0 0 0.2rem rgba(184, 160, 84, 0.5);
}

/* Ensure team sections display as flex to maintain grid layout */
.team-section {
	display: flex;
	flex-wrap: wrap;
}

/* Hide sections by default (controlled by JS) */
.team-section.demo-members {
	display: none;
}
