/* =====================================================
   Anúncios Block – style.css
===================================================== */

.anuncio-card {
	display: block;
	width: 100%;
}

.anuncio-card__ratio {
	position: relative;
	width: 100%;
	aspect-ratio: var(--aspect-ratio);
	overflow: hidden;
	background: #e5e5e5;
	border-radius:7px;
}

.anuncio-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* No-thumbnail placeholder */
.anuncio-card__placeholder {
	position: absolute;
	inset: 0;
	background: #d4d4d4;
}

/* ── Editor select label ─────────────────────────── */
.anuncio-block-editor-label {
	display: inline-block;
	margin-bottom: .5rem;
	padding: .2em .65em;
	background: #1d4ed8;
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	border-radius: 3px;
}
