.in-team-img-text {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
	min-height: 220px;
}

.in-team-img {
	width: 200px;
	height: 200px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 12px;
	background-color: #f7f7f7;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.in-team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.in-team-img:hover img {
	transform: scale(1.05);
}

.in-team-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.in-team-text h3 {
	margin-bottom: 5px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #222;
}

.in-team-text span {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	color: #777;
}

.in-team-text p {
	margin-bottom: 10px;
	color: #555;
	line-height: 1.5;
	max-height: 90px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.4s ease;
}

/* Açılmış metin */
.in-team-text p.expanded {
	max-height: 500px; /* yeterli genişlik */
}

/* "Devamını Oku" butonu */
.read-more-btn {
	align-self: flex-start;
	background: none;
	border: none;
	color: #a227f9;
	cursor: pointer;
	font-weight: 600;
	padding: 0;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.read-more-btn:hover {
	color: #dd56f9;
}

.in-team-social {
	display: flex;
	align-items: center;
}

.in-team-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #f0f0f0;
	margin-right: 8px;
	color: #333;
	transition: all 0.3s ease;
}

.in-team-social a:hover {
	background-color: #f92727;
	color: #fff;
}

/* Mobil uyum */
@media (max-width: 768px) {
	.in-team-img-text {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.in-team-img {
		margin-bottom: 15px;
	}
}
