.headerThech {
	padding: 80px 0;
	font-family: Manrope;
}

.headerThech__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.headerThech__text-group {
	flex: 1;
}

.headerThech__title {
	color: #4D4B4C;
	font-family: 'Oswald', sans-serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.headerThech__subtitle {
	color: #4D4B4C;
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 300;
	line-height: 1.4;
}

.headerThech__button {

	align-self: end;
}

/* Сетка карточек */
.headerThech__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

/* Карточка */
.tech-card {
	background: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s;
	position: relative;
}

.tech-card:hover {
	transform: translateY(-5px);
}

/* Изображение */
.tech-card__image {
	width: 100%;
	aspect-ratio: 529 / 353;
	object-fit: cover;
	display: block;
}

/* Область контента (внутренние отступы) */
.tech-card__content {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Бейдж (метка с иконкой) */
.tech-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #FBFDD9;
	border-radius: 100px;
	padding: 0.25rem 1rem;
	width: fit-content;
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 1;
	margin-bottom: 0;
}

.tech-card__badge-icon {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-card__badge-icon svg {
	width: 100%;
	height: auto;
}

.tech-card__badge-text {
	color: #4D4B4C;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Manrope', sans-serif;
}

/* Заголовок дома */
.tech-card__house-title {
	font-size: 1.375rem;
	font-weight: 600;
	font-family: 'Manrope', sans-serif;
	color: black;
	margin: 0.5rem 0 0.75rem;

}

/* Описание */
.tech-card__description {
	color: #4D4B4C;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

/* Блок характеристик (иконка + текст) */
.tech-card__features {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
}
.tech-card__features::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}

.tech-card__feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #4D4B4C;
	font-size: 0.9rem;
	font-weight: 300;
	font-family: 'Manrope', sans-serif;
	line-height: 1.4;
	width: 33%;
}

.tech-card__feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-card__feature-icon img {
	width: 100%;
	height: auto;
	display: block;
}

/* Ссылка/кнопка в карточке */
.tech-card__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 1rem;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #138D75;
	text-decoration: none;
	transition: opacity 0.2s;
}

.tech-card__link-text {
	border-bottom: 1px solid transparent;
}

.tech-card__link:hover {
	opacity: 0.8;
}

.tech-card__link-arrow {
	width: 25px;
	height: 12px;
	display: flex;
	align-items: center;
}

.tech-card__link-arrow svg {
	width: 100%;
	height: auto;
}

/* Модификаторы для разных типов карточек (опционально) */
.tech-card--stone .tech-card__badge {
	background: #FBFDD9;
}

/* Вертикальные разделители между tech-card__feature */
.tech-card__feature:not(:last-child) {
	border-right: 1px dashed rgba(123, 123, 123, 0.3);
	padding-right: 1.5rem;
}

/* Стили для карточек с количеством элементов > 2 (текст под картинкой) */
.tech-card--features-below .tech-card__features {

}

.tech-card--features-below .tech-card__feature {
	display: block;

}
.tech-card--features-below  .tech-card__feature-icon {
	margin-bottom: 5px;
}


@media (max-width: 1599px) {

}

@media (max-width: 1339px) {

}

@media (max-width: 1199px) {
	.tech-card__feature:not(:last-child) {
		padding-right: 0.75rem;
	}
	.tech-card__features {
		gap: 0.75rem;
	}
	.tech-card__feature {
		font-size: 0.75rem;
	}
}

@media (max-width: 991px) {
	.tech-card__feature {
		font-size: 0.75rem;
	}
}

@media (max-width: 767px) {
	.tech-card__feature:not(:last-child) {
		padding-right: 0.5rem;
	}
	.tech-card__features {
		gap: 0.5rem;
	}
	.tech-card__feature {
		font-size: 0.75rem;
		justify-items: center;
		text-align: center;
		display: block;
	}
}
