.hvv-teachme {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto 100px;
	padding: 60px 80px 0;
	box-sizing: border-box;
}

.hvv-teachme__header {
	display: block;
	margin-bottom: 48px;
}

.hvv-teachme__bar {
	width: 111px;
	height: 10px;
	background: #1A8DA1;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	display: block;
	margin-left: calc(50% - 50vw);
	margin-bottom: 40px;
}

.hvv-teachme__title {
	margin: 0;
	color: #1A1A1A;
	font-family: Montserrat, sans-serif;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: normal;
	text-transform: uppercase;
}

.hvv-teachme__grid {
	display: grid;
	/* Proportional columns matching Figma 1008/681 ≈ 3:2 */
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 72px;
	align-items: stretch;
}

.hvv-teachme__image {
	width: 100%;
	aspect-ratio: 1008 / 532;
	border-radius: 26px;
	overflow: hidden;
	background: #f0f0f0;
}

.hvv-teachme__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hvv-teachme__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px 0;
	justify-content: space-between;
	gap: 32px;
}

.hvv-teachme__description {
	color: #000;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.35;
}

.hvv-teachme__description p { margin: 0 0 20px 0; }
.hvv-teachme__description p:last-child { margin: 0; }

.hvv-teachme__btn,
.hvv-teachme__btn:link,
.hvv-teachme__btn:visited {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 24px 36px;
	border-radius: 26px;
	background: #FC7405;
	color: #FFFFFF;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.96px;
	line-height: normal;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.3s ease;
}

.hvv-teachme__btn:hover,
.hvv-teachme__btn:focus,
.hvv-teachme__btn:active {
	background: #d96604;
	color: #FFFFFF;
}

@media screen and (max-width: 1199px) {
	.hvv-teachme {
		padding: 60px 40px 0;
	}
	.hvv-teachme__grid {
		gap: 40px;
	}
}

@media screen and (max-width: 991px) {
	.hvv-teachme__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.hvv-teachme__content {
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	.hvv-teachme {
		padding: 40px 20px 0;
		margin-bottom: 60px;
	}
	.hvv-teachme__bar {
		width: 48px;
		height: 8px;
		margin-bottom: 24px;
	}
	.hvv-teachme__header {
		margin-bottom: 24px;
	}
	.hvv-teachme__title {
		font-size: 28px;
		letter-spacing: 1.12px;
	}
	.hvv-teachme__description {
		font-size: 18px;
	}
	.hvv-teachme__btn {
		font-size: 18px;
		padding: 18px 28px;
		align-self: stretch;
	}
}
