/**
 * Dobozok „link" stílus — [cinemore_dobozok stilus="link"] shortcode.
 * Kattintható dobozok (hero alatti kinézet): blob + ikon + cím + szöveg + nyíl.
 */

.cinemore-dobozlink {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1320px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
}

.cinemore-dobozlink__doboz {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e0efe7;
	border-radius: 20px;
	padding: 30px 28px 26px;
	min-height: 236px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

a.cinemore-dobozlink__doboz:hover {
	transform: translateY(-8px);
	border-color: #b0568a;
	box-shadow: 0 30px 60px rgba(176, 86, 138, .18);
	color: inherit;
}

/* Dekoratív blob a sarokban */
.cinemore-dobozlink__blob {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: rgba(20, 201, 141, 0.06);
	pointer-events: none;
}

/* Ikon doboz */
.cinemore-dobozlink__ikon {
	position: relative;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(176, 86, 138, 0.1);
	color: #b0568a; /* currentColor a Lucide stroke-hoz */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: auto;
}

.cinemore-dobozlink__ikon svg {
	width: 26px;
	height: 26px;
}

.cinemore-dobozlink__cim {
	position: relative;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.12;
	letter-spacing: -.01em;
	margin: 28px 0 8px;
	text-transform: uppercase;
	color: #07130e;
}

.cinemore-dobozlink__szoveg {
	position: relative;
	font-size: 17px;
	line-height: 1.5;
	color: #5a7067;
	margin: 0;
	font-weight: 400;
}

.cinemore-dobozlink__szoveg p {
	margin: 0;
}

.cinemore-dobozlink__szoveg p + p {
	margin-top: 8px;
}

/* Magenta nyíl (csak kattintható dobozoknál) */
.cinemore-dobozlink__nyil {
	position: relative;
	margin-top: 22px;
	color: #b0568a;
	display: inline-flex;
	transition: transform .35s ease;
}

.cinemore-dobozlink__nyil svg {
	width: 24px;
	height: 24px;
}

a.cinemore-dobozlink__doboz:hover .cinemore-dobozlink__nyil {
	transform: translateX(7px);
}

/* Smooth scroll + fix header offset a doboz anchor linkjeihez. */
html {
	scroll-behavior: smooth;
}

[id] {
	scroll-margin-top: 90px;
}

/* Reszponzív: 4 → 2 → 1 oszlop */
@media (max-width: 1100px) {
	.cinemore-dobozlink {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.cinemore-dobozlink {
		grid-template-columns: 1fr;
	}
	.cinemore-dobozlink__doboz {
		padding: 26px 24px 24px;
		min-height: 0;
	}
}
