/**
 * OTP áruhitel kalkulátor – megjelenés.
 * Scope-olt (.otp-aruhitel-*) osztályok, hogy ne ütközzön a téma stílusaival.
 */

:root {
	--otp-green: #4e9d2d;
	--otp-green-dark: #3c7d22;
	--otp-green-soft: #eaf5e3;
	--otp-ink: #1f2a24;
	--otp-muted: #5b6b60;
	--otp-border: #e3e8e2;
	--otp-radius: 14px;
	--otp-shadow: 0 6px 24px rgba(30, 60, 30, 0.08);
}

/* ---- Kalkulátor doboz ---- */
.otp-aruhitel-box {
	box-sizing: border-box;
	width: 100%;
	max-width: 720px;
	margin: 24px 0;
	padding: 20px 20px 16px;
	background: #fff;
	border: 1px solid var(--otp-border);
	border-radius: var(--otp-radius);
	box-shadow: var(--otp-shadow);
}

.otp-aruhitel-box * {
	box-sizing: border-box;
}

.otp-aruhitel-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0 0 14px 12px;
	position: relative;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--otp-ink);
	border-bottom: 1px solid var(--otp-border);
}

/* zöld akcentus csík a cím előtt */
.otp-aruhitel-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 16px;
	width: 4px;
	border-radius: 4px;
	background: var(--otp-green);
}

.otp-aruhitel-logo {
	height: 26px;
	width: auto;
	display: inline-block;
}

.otp-aruhitel-title span {
	display: inline-block;
}

/* responsive iframe konténer (fix magasság, teljes szélesség) */
.otp-aruhitel-iframe-wrap {
	position: relative;
	width: 100%;
	background: var(--otp-green-soft);
	border-radius: 10px;
	overflow: hidden;
}

.otp-aruhitel-iframe {
	display: block;
	width: 100%;
	height: 500px;
	border: 0;
}

/* ---- "Kalkulátor megtekintése" gomb ---- */
.otp-aruhitel-link-wrap {
	margin: 0 0 16px;
}

.otp-aruhitel-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 18px;
	background: linear-gradient(180deg, var(--otp-green) 0%, var(--otp-green-dark) 100%);
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(60, 125, 34, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.otp-aruhitel-link:hover,
.otp-aruhitel-link:focus {
	color: #fff !important;
	filter: brightness(1.04);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(60, 125, 34, 0.32);
}

.otp-aruhitel-link:focus-visible {
	outline: 3px solid rgba(78, 157, 45, 0.45);
	outline-offset: 2px;
}

.otp-aruhitel-link-logo {
	height: 20px;
	width: auto;
	background: #fff;
	padding: 3px 5px;
	border-radius: 6px;
}

/* ---- Mobil ---- */
@media (max-width: 600px) {
	.otp-aruhitel-box {
		padding: 16px 14px 12px;
		margin: 18px 0;
	}
	.otp-aruhitel-title {
		font-size: 16px;
	}
	.otp-aruhitel-iframe {
		height: 560px;
	}
	.otp-aruhitel-link {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.otp-aruhitel-link {
		transition: none;
	}
	.otp-aruhitel-link:hover,
	.otp-aruhitel-link:focus {
		transform: none;
	}
}
