/**
 * Cinemore kép widget stílusa.
 * Fix árnyék + kerekített konténer + sötétítő overlay + címkék (pill) a bal-alsó sarokban.
 */

.cinemore-kep {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 34px 70px rgba(7, 19, 14, .14);
	border: 1px solid #e0efe7;
}

.cinemore-kep__img {
	width: 100%;
	height: 540px; /* default; a widget selectors (magassag control) felülírja */
	object-fit: cover;
	display: block;
}

/* Sötétítő gradiens az alsó sávon (a címkék mögött, olvashatóság). */
.cinemore-kep__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 52%, rgba(7, 19, 14, .5));
	pointer-events: none;
}

/* Címkekonténer a bal-alsó sarokban. */
.cinemore-kep__cimkek {
	position: absolute;
	left: 22px;
	bottom: 22px;
	right: 22px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	z-index: 2;
}

/* Egy címke (pill). */
.cinemore-kep__cimke {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .92);
	border-radius: 100px;
	padding: 9px 15px;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #07130e;
	line-height: 1;
	white-space: nowrap;
}

/* Magenta pont a címke előtt. */
.cinemore-kep__cimke-pont {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #b0568a;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.cinemore-kep {
		border-radius: 18px;
	}
	.cinemore-kep__cimkek {
		left: 14px;
		bottom: 14px;
		right: 14px;
		gap: 8px;
	}
	.cinemore-kep__cimke {
		font-size: 11px;
		padding: 7px 12px;
	}
}
