.custom-tec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.custom-tec-card {
	padding: 28px 24px 24px;
	background: #eda300;
	border: 3px solid #d85800;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
	min-height: 340px;
}

.custom-tec-card__title {
	margin: 0 0 14px;
	font-size: 2rem;
	line-height: 1.02;
	font-weight: 400;
	letter-spacing: -0.02em;
	font-size: 24px;
}

.custom-tec-card__title a {
	color: #111;
	text-decoration: none;
}

.custom-tec-card__title a:hover {
	opacity: 0.85;
}

.custom-tec-card__meta {
	margin: 0 0 16px;
	color: #111;
	font-size: 0.95rem;
	line-height: 1.4;
}

.custom-tec-card__excerpt {
	color: #111;
	font-size: 1.05rem;
	line-height: 1.55;
}

.custom-tec-grid-empty {
	padding: 12px 0;
}

@media (max-width: 1200px) {
	.custom-tec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.custom-tec-grid {
		grid-template-columns: 1fr;
	}

	.custom-tec-card__title {
		font-size: 1.65rem;
	}
}