body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f2f2f2;
}

.card {
	max-width: 400px;
	margin: 40px auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	position: relative;
}

/* Верхній блок */
.top-section {
	background-color: #6e45ad;
	position: relative;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: visible;
}

/* Фото */
.photo-wrapper {
	width: 140px;
	height: 140px;
	border: 6px solid #ed1c24;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 20px;
	/* ← було -70px, тепер нижче */
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	z-index: 3;
}

.name {
	color: #fff;
	margin-top: 100px;
	/* ↑ трохи більший відступ, щоб зберегти гармонію */
	font-size: 1.6rem;
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
}

.photo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Ім’я та роль */
.name {
	color: #fff;
	margin-top: 80px;
	font-size: 1.6rem;
	font-weight: bold;
}

.role {
	color: #fff;
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-top: 5px;
}

/* Хвиля SVG */
.wave {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 2;
}

.wave path {
	fill: #ed1c24;
}

/* Нижня частина */
.bottom-section {
	padding: 25px 30px;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.info p {
	margin: 10px 0;
	font-size: 0.96rem;
	color: #333;
	font-family: 'Poppins', sans-serif;
}

.info strong {
	color: #000;
}

.info .highlight {
	color: #ed1c24;
	font-weight: bold;
}

.views {
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	color: #000;
}

.views span {
	font-size: 1.2rem;
	color: #ed1c24;
}