#vbio-about {
	--vbio-green: #00733C;
	--vbio-green-dark: #005A2F;
	--vbio-orange: #F58220;
	--vbio-ink: #1c2b24;
	--vbio-muted: #5b6b64;

	box-sizing: border-box;
	padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 40px);
	background: #f3f6f4;
	overflow: hidden;
}
#vbio-about *, #vbio-about *::before, #vbio-about *::after {
	box-sizing: border-box;
}

.vbio-about__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

/* ---------- Media / photo + badge ---------- */
.vbio-about__media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 45px -18px rgba(0, 40, 20, 0.35);
}

.vbio-about__img {
	display: block;
	width: 100%;
	height: auto; /* size follows the image's own natural aspect ratio */
	transition: transform 0.6s ease;
}

.vbio-about__media:hover .vbio-about__img {
	transform: scale(1.06);
}

.vbio-about__badge {
	position: absolute;
	left: clamp(14px, 3vw, 28px);
	bottom: clamp(14px, 3vw, 28px);
	right: clamp(14px, 3vw, 28px);
	max-width: 280px;
	padding: 18px 20px;
	border-radius: 14px;
	color: #fff;
	text-align: center;
	background: rgba(6, 26, 16, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	transition: transform 0.35s ease, background 0.35s ease;
}

.vbio-about__media:hover .vbio-about__badge {
	transform: translateY(-4px);
	background: rgba(6, 26, 16, 0.72);
}

.vbio-about__badge-icon {
	width: 34px;
	height: 34px;
	color: var(--vbio-green);
	background: #fff;
	border-radius: 50%;
	padding: 7px;
	margin-bottom: 10px;
}

.vbio-about__badge-title {
	margin: 0 0 4px;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.vbio-about__badge-sub {
	margin: 0 0 14px;
	font-size: 0.82rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
}

.vbio-about__badge-btn {
	display: inline-block;
	padding: 9px 22px;
	border-radius: 999px;
	background: var(--vbio-orange);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.vbio-about__badge-btn:hover {
	background: var(--vbio-green);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -8px rgba(0, 115, 60, 0.6);
}

/* ---------- Text content ---------- */
.vbio-about__title {
	margin: 0 0 14px;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	line-height: 1.25;
	font-weight: 700;
	color: var(--vbio-orange);
}

.vbio-about__underline {
	display: block;
	width: 60px;
	height: 4px;
	border-radius: 2px;
	background: var(--vbio-green);
	margin-bottom: 20px;
}

.vbio-about__desc {
	margin: 0 0 26px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--vbio-muted);
}

.vbio-about__card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #fff;
	border-left: 4px solid var(--vbio-green);
	border-radius: 10px;
	padding: 20px 22px;
	margin-bottom: 18px;
	box-shadow: 0 10px 25px -18px rgba(0, 30, 15, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vbio-about__card:last-child {
	margin-bottom: 0;
}

.vbio-about__card:hover {
	transform: translateX(6px);
	border-color: var(--vbio-orange);
	box-shadow: 0 16px 32px -16px rgba(0, 30, 15, 0.45);
}

.vbio-about__card-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 115, 60, 0.1);
	color: var(--vbio-green);
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vbio-about__card-icon svg {
	width: 20px;
	height: 20px;
}

.vbio-about__card:hover .vbio-about__card-icon {
	background: var(--vbio-orange);
	color: #fff;
	transform: rotate(-8deg) scale(1.08);
}

.vbio-about__card-body h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--vbio-ink);
}

.vbio-about__card-body p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--vbio-muted);
}

/* ---------- Scroll reveal ---------- */
[data-vbio-reveal] {
	opacity: 0;
	transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-vbio-reveal="left"]  { transform: translateX(-40px); }
[data-vbio-reveal="right"] { transform: translateX(40px); }
[data-vbio-reveal="up"]    { transform: translateY(28px); }

[data-vbio-reveal].vbio-in-view {
	opacity: 1;
	transform: none;
}

[data-vbio-delay="1"] { transition-delay: 0.12s; }
[data-vbio-delay="2"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
	[data-vbio-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.vbio-about__img,
	.vbio-about__badge,
	.vbio-about__badge-btn,
	.vbio-about__card,
	.vbio-about__card-icon {
		transition: none !important;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.vbio-about__grid {
		grid-template-columns: 1fr;
	}
	.vbio-about__badge {
		max-width: none;
	}
}

@media (max-width: 480px) {
	.vbio-about__title {
		font-size: 1.4rem;
	}
	.vbio-about__badge {
		position: static;
		margin-top: -40px;
		background: rgba(6, 26, 16, 0.85);
	}
	.vbio-about__media {
		box-shadow: none;
	}
	.vbio-about__card {
		flex-direction: column;
	}
}
