/*
 * Theme Name: place2b
 *
 * Layout: Team-Content
 *
 * Learn more: https://developer.wordpress.org/themes/basics/template-files/
 */

/* Banner */
/* Banner klickbar */
.team-banner {
	cursor: pointer;
	transition: box-shadow 0.3s ease;
}

/* Bild im Banner */
.team-banner img {
	display: block;
	width: 100%;
	height: auto;
}

/* Neon-Effekt für aktives Team */
.team-banner.active {
	box-shadow:
		0 0 5px #a1f33e,
		0 0 10px #a1f33e,
		0 0 15px #a1f33e;
}

/* CONTENT – geschlossen */
.team-toggle-content {
	opacity: 0;
	transform: translateY(-10px);
	max-height: 0;
	overflow: hidden;

	transition: 
		opacity 0.3s ease,
		transform 0.3s ease,
		max-height 0.4s ease;
}

/* CONTENT – geöffnet */
.team-toggle-content.is-open {
	opacity: 1;
	transform: translateY(0);
	max-height: 1000px; /* ggf. erhöhen */
}