/* ── Braz Turismo · Spot Relacionados ────────────── */
.brt-spot-rel__head{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.brt-spot-rel__title{
	margin: 0;
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 700;
	color: #1d2420;
}
.brt-spot-rel__link-todos{
	font-size: 13.5px;
	font-weight: 600;
	color: #E0613A;
	text-decoration: none;
	white-space: nowrap;
}
.brt-spot-rel__link-todos:hover{ text-decoration: underline; }

.brt-spot-rel__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.brt-spot-rel__card{
	background: #fff;
	border: 1px solid #E3DFD4;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.brt-spot-rel__media{
	position: relative;
	display: block;
	height: 150px;
	overflow: hidden;
	background: #e8e4db;
}
.brt-spot-rel__card--serra .brt-spot-rel__media:not(:has(img)){ background: linear-gradient(135deg,#2f8f4e,#023D18); }
.brt-spot-rel__card--cafe  .brt-spot-rel__media:not(:has(img)){ background: linear-gradient(135deg,#9a6b43,#5c3d20); }
.brt-spot-rel__card--pedra .brt-spot-rel__media:not(:has(img)){ background: linear-gradient(135deg,#5a7089,#334455); }

.brt-spot-rel__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}
.brt-spot-rel__card:hover .brt-spot-rel__img{ transform: scale(1.04); }

.brt-spot-rel__tipo{
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(2,61,24,0.85);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .28em .75em;
	border-radius: 999px;
}
.brt-spot-rel__dist{
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(255,255,255,0.90);
	color: #1d2420;
	font-size: 11px;
	font-weight: 600;
	padding: .25em .65em;
	border-radius: 999px;
}

.brt-spot-rel__body{
	padding: 14px 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.brt-spot-rel__name{
	margin: 0 0 6px;
	font-size: 14.5px;
	font-weight: 700;
}
.brt-spot-rel__name a{ color: #1d2420; text-decoration: none; }
.brt-spot-rel__name a:hover{ color: #046929; }
.brt-spot-rel__excerpt{
	margin: 0 0 12px;
	font-size: 12.5px;
	line-height: 1.5;
	color: #5B6660;
	flex: 1;
}
.brt-spot-rel__cta{
	align-self: flex-start;
	font-size: 13px;
	font-weight: 600;
	color: #E0613A;
	text-decoration: none;
}
.brt-spot-rel__cta:hover{ text-decoration: underline; }

@media (max-width: 768px){
	.brt-spot-rel__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
	.brt-spot-rel__grid{ grid-template-columns: 1fr; }
}
