/* RolliPolli — Tagdíj szekciók (Elementor widgetek) */

.rptd-scope {
	--rptd-ink: #055078;
	--rptd-heading: #004a6b;
	--rptd-red: #da3831;
	--rptd-sun: #ffbf2d;
	--rptd-cream: #fdfbf7;
	--rptd-cream-deep: #f7efe6;
	--rptd-card: #ffffff;
	--rptd-radius: 28px;
	--rptd-shadow-soft: 0 1px 2px rgba(5, 80, 120, 0.06), 0 12px 32px -16px rgba(5, 80, 120, 0.16);
	--rptd-shadow-lift: 0 2px 4px rgba(5, 80, 120, 0.08), 0 24px 48px -12px rgba(5, 80, 120, 0.18);
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	color: var(--rptd-ink);
}

.rptd-section {
	padding: 80px 0;
	background: var(--rptd-cream);
}
.rptd-section--deep {
	background: var(--rptd-cream-deep);
}
.rptd-inner {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 20px;
}
@media (min-width: 640px) {
	.rptd-inner { padding: 0 32px; }
}

/* Címsorok */
.rptd-scope h2.rptd-title {
	font-family: Fraunces, Georgia, serif;
	font-weight: 600;
	font-size: 48px;
	line-height: 48px;
	color: var(--rptd-heading);
	margin: 0;
	max-width: 42rem;
}
@media (max-width: 640px) {
	.rptd-scope h2.rptd-title { font-size: 34px; line-height: 38px; }
}

.rptd-marker {
	background-image: linear-gradient(var(--rptd-sun), var(--rptd-sun));
	background-repeat: no-repeat;
	background-position: 0 88%;
	background-size: 100% 42%;
	padding: 0 2px;
	white-space: nowrap;
}

/* Kártyarács */
.rptd-grid {
	display: grid;
	gap: 20px;
	margin-top: 40px;
}
@media (min-width: 640px) {
	.rptd-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.rptd-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px;
	background: var(--rptd-card);
	border: 1px solid rgba(5, 80, 120, 0.06);
	border-radius: var(--rptd-radius);
	box-shadow: var(--rptd-shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rptd-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rptd-shadow-lift);
}

.rptd-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--rptd-ink);
	color: #fff;
	transition: transform 0.5s ease;
	flex: none;
}
.rptd-card:hover .rptd-icon { transform: rotate(360deg); }
.rptd-icon img,
.rptd-icon svg { width: 28px; height: 28px; display: block; }
.rptd-icon img { filter: brightness(0) invert(1); }

.rptd-card h3 {
	font-family: Fraunces, Georgia, serif;
	font-weight: 600;
	font-size: 30px;
	line-height: 1.15;
	color: var(--rptd-heading);
	margin: 0;
}
.rptd-card p {
	font-size: 18px;
	line-height: 29px;
	color: rgba(5, 80, 120, 0.78);
	margin: 0;
}

/* GYIK link */
.rptd-link-row { margin-top: 32px; }
.rptd-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 600;
	color: var(--rptd-red);
	text-decoration: none;
	transition: color 0.2s ease;
}
.rptd-link:hover { color: var(--rptd-ink); }
.rptd-link svg { width: 16px; height: 16px; }

/* Kiemelt sárga üzenetszalag */
.rptd-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 32px;
	padding: 20px;
	border-radius: 16px;
	background: rgba(255, 191, 45, 0.25);
}
.rptd-notice svg {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex: none;
	color: var(--rptd-red);
}
.rptd-notice p {
	margin: 0;
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: var(--rptd-heading);
}

/* Note widget */
.rptd-note-card {
	background: var(--rptd-card);
	border: 1px solid rgba(5, 80, 120, 0.06);
	border-radius: var(--rptd-radius);
	box-shadow: var(--rptd-shadow-soft);
	padding: 32px;
}
@media (min-width: 640px) {
	.rptd-note-card { padding: 40px; }
}
.rptd-note-card p {
	margin: 20px 0 0;
	font-size: 18px;
	line-height: 29px;
	color: rgba(5, 80, 120, 0.75);
	max-width: 62rem;
}
