.trocacel-home-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.trocacel-home-hero {
	padding: 28px 0 10px;
}

.trocacel-home-title {
	margin: 0;
	font-size: 42px;
	line-height: 1.15;
	color: #0c0c0c;
}

.trocacel-home-subtitle {
	margin: 10px 0 0;
	font-size: 18px;
	color: #5d5d5d;
}

.trocacel-home-posts {
	padding: 20px 0 10px;
}

.trocacel-home-featured {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 24px;
	margin-bottom: 28px;
	align-items: center;
}

.trocacel-home-featured-media,
.trocacel-home-card-media {
	display: block;
	overflow: hidden;
	border-radius: 8px;
}

.trocacel-home-featured-media img,
.trocacel-home-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trocacel-home-featured-media {
	aspect-ratio: 16 / 9;
}

.trocacel-home-featured-content h2 {
	margin: 0 0 10px;
	font-size: 30px;
	line-height: 1.2;
}

.trocacel-home-featured-content p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #3d3d3d;
}

.trocacel-home-featured a,
.trocacel-home-card a {
	color: #0c0c0c;
	text-decoration: none;
}

.trocacel-home-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.trocacel-home-card-media {
	aspect-ratio: 4 / 3;
}

.trocacel-home-card h3 {
	margin: 12px 0 0;
	font-size: 20px;
	line-height: 1.35;
}

.trocacel-home-cta {
	padding: 30px 0 40px;
}

.trocacel-home-cta-card {
	position: relative;
	display: block;
	min-height: 260px;
	padding: 74px 42px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	background: #16325d;
}

.trocacel-home-cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--trocacel-cta-bg, none);
	background-size: cover;
	background-position: 70% center;
	transform: scale(1);
	transform-origin: 82% center;
	opacity: 0;
	transition: transform 0.55s ease, opacity 0.35s ease;
}

.trocacel-home-cta-card.is-bg-loaded::before {
	opacity: 1;
}

.trocacel-home-cta-card:hover::before,
.trocacel-home-cta-card:focus-within::before {
	transform: scale(1.08);
}

.trocacel-home-cta-card:hover,
.trocacel-home-cta-card:focus,
.trocacel-home-cta-card:active {
	color: #fff;
	text-decoration: none;
}

.trocacel-home-cta-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(110deg, rgba(14, 22, 33, 0.76), rgba(48, 76, 123, 0.46));
}

.trocacel-home-cta-content {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.trocacel-home-cta-content h2 {
	margin: 0 0 10px;
	font-size: 34px;
	line-height: 1.2;
	color: #fff;
}

.trocacel-home-cta-content p {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 1.6;
}

.trocacel-home-cta-button {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 8px;
	background: #f57c00;
	color: #000;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.trocacel-home-title {
		font-size: 34px;
	}

	.trocacel-home-featured {
		grid-template-columns: 1fr;
	}

	.trocacel-home-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.trocacel-home-container {
		padding: 0 16px;
	}

	.trocacel-home-title {
		font-size: 28px;
	}

	.trocacel-home-subtitle {
		font-size: 16px;
	}

	.trocacel-home-grid {
		grid-template-columns: 1fr;
	}

	.trocacel-home-cta-card {
		min-height: 220px;
		padding: 44px 24px;
	}

	.trocacel-home-cta-content h2 {
		font-size: 28px;
	}

	.trocacel-home-cta-content p {
		font-size: 16px;
	}
}
