/**
 * @package Helix Ultimate Framework
 * NQA-inspired custom style overrides (nqa.com look & feel)
 * Palette: primary blue #0062AE, hover blue #0087F0, accent orange #F18528, text #333333
 * Font: Montserrat
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;800&display=swap');

/* Global typography */
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #333333;
}

/* Header */
#sp-header {
	background-color: #ffffff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

#sp-header .logo {
	font-family: 'Montserrat', sans-serif;
}

/* Top bar (NQA style: light bar, dark links) */
#sp-top-bar a:hover,
#sp-top-bar a:focus {
	color: #0062AE;
}

/* ============================================================
   MAIN MENU - NQA style (nqa.com)
   Grey menu bar, black Montserrat links, orange active bar
   ============================================================ */

/* Grey menu bar strip like NQA */
#sp-menu .sp-megamenu-wrapper {
	justify-content: center;
	width: 100%;
}

ul.sp-megamenu-parent {
	background-color: #EFEFEF;
	margin: 0;
	padding: 0 1.75em;
}

/* Top-level links: black, Montserrat, 16px, capitalize (NQA) */
.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: #000000;
	padding: 1em 0;
	position: relative;
}

/* Item spacing like NQA (1.5em gap) */
.sp-megamenu-parent > li:not(:last-child) {
	margin-right: 1.5em;
}

/* Disable Helix default underline/arrow effects on top-level items */
.sp-megamenu-parent > li > a:before,
.sp-megamenu-parent > li > a:after,
.sp-megamenu-parent > li > span:before,
.sp-megamenu-parent > li > span:after {
	display: none !important;
}

/* Hover: black text + orange underline bar (NQA look) */
.sp-megamenu-parent > li:hover > a,
.sp-megamenu-parent > li:hover > span {
	color: #000000;
	background: transparent;
}

.sp-megamenu-parent > li:hover > a:after,
.sp-megamenu-parent > li:hover > span:after {
	display: block !important;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	top: auto;
	transform: none;
	background-color: #F16628;
}

/* Active menu item: black text + orange bar (NQA .nqa-nav-is-active) */
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active:hover > a,
.sp-megamenu-parent > li.active > span {
	color: #000000;
	background: transparent;
}

.sp-megamenu-parent > li.active > a:after,
.sp-megamenu-parent > li.active > span:after {
	display: block !important;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	top: auto;
	transform: none;
	background-color: #F16628;
}

/* Dropdown (second level): light grey panel like NQA mega dropdown */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
	background: #EFEFEF;
	border-top: 1px solid #E2E2E2;
	border-radius: 0;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.sp-megamenu-parent > li > .sp-dropdown.sp-dropdown-main {
	padding-top: 0;
}

/* Dropdown links: grey #666, Montserrat (NQA second tier) */
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > span,
.sp-megamenu-parent .sp-mega-group > li > a {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #666666;
	padding: 0.875em 1em;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:focus {
	color: #0062AE;
	background: transparent;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a {
	color: #0062AE;
}

/* Mobile off-canvas menu: Montserrat, NQA colors */
.offcanvas-menu .offcanvas-inner ul.menu > li a,
.offcanvas-menu .offcanvas-inner ul.menu > li span {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
}

#offcanvas-toggler > .fa,
#offcanvas-toggler > .fas,
#offcanvas-toggler > .far,
#offcanvas-toggler .burger-icon span {
	color: #000000;
	border-color: #000000;
	background-color: #000000;
}

/* Buttons: NQA style - 4px radius, semibold, blue primary / orange CTA */
.btn,
.sppb-btn,
button[type="submit"],
input[type="submit"] {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	border-radius: 4px;
}

.btn-primary,
.sppb-btn-primary {
	background-color: #0062AE;
	border-color: #0062AE;
	color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus {
	background-color: #0087F0;
	border-color: #0087F0;
	color: #ffffff;
}

/* Orange accent CTA button (NQA "Get a quote" style). Use class: nqa-cta */
.nqa-cta,
a.nqa-cta,
.sppb-btn.nqa-cta,
.btn.nqa-cta {
	background-color: #F18528;
	border-color: #F18528;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	border-radius: 4px;
}

.nqa-cta:hover,
a.nqa-cta:hover,
.sppb-btn.nqa-cta:hover,
.btn.nqa-cta:hover,
.nqa-cta:focus,
a.nqa-cta:focus,
.sppb-btn.nqa-cta:focus,
.btn.nqa-cta:focus {
	background-color: #F16628;
	border-color: #F16628;
	color: #ffffff;
}

/* Page title */
.sp-page-title {
	background: #0062AE;
}

.sp-page-title .sp-page-title-heading {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

/* Section titles (SP Page Builder): NQA style with short blue underline */
.sppb-addon-title,
.sp-module .sp-module-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

/* Footer: light grey like nqa.com */
#sp-footer,
#sp-bottom {
	background: #EFEFEF;
	color: #333333;
}

/* Footer module titles: uppercase, black, blue underline bar */
#sp-footer .sp-module-title,
#sp-bottom .sp-module-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 20px;
}

#sp-footer .sp-module-title:after,
#sp-bottom .sp-module-title:after {
	height: 4px;
	width: 50px;
	content: "";
	background: #0062AE;
	display: block;
	margin-top: 20px;
}

/* Footer links hover in NQA blue */
#sp-footer a:hover,
#sp-footer a:active,
#sp-footer a:focus,
#sp-bottom a:hover,
#sp-bottom a:active,
#sp-bottom a:focus {
	color: #A2A2A2;
}

/* Social icons in footer: round white badges like NQA */
#sp-footer ul.social-icons > li > a,
#sp-bottom ul.social-icons > li > a {
	background-color: #ffffff;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	display: inline-block;
	color: #333333;
}

#sp-footer ul.social-icons > li > a:hover,
#sp-bottom ul.social-icons > li > a:hover {
	background-color: #0062AE;
	color: #ffffff;
}

/* Light grey section backgrounds (NQA alt sections) */
.nqa-section-grey {
	background-color: #F5F5F5;
}

/* Pagination & misc accents */
.pagination > .active > a,
.pagination > .active > span {
	border-radius: 4px;
}

/* ============================================================
   NQA section heading with orange underline bar
   Usage in SP Page Builder:
   - Heading addon: add "nqa-underlined-title" to the addon
     Custom CSS Class field, OR
   - Text addon (HTML view):
     <h2 class="nqa-heading">Your title</h2>
     <span class="nqa-heading-underline"></span>
   ============================================================ */
h1.nqa-heading,
h2.nqa-heading,
h3.nqa-heading,
h4.nqa-heading,
.nqa-underlined-title .sppb-addon-title,
.nqa-underlined-title h1,
.nqa-underlined-title h2,
.nqa-underlined-title h3,
.nqa-underlined-title h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 40px;
	line-height: 1.1;
	color: #333333;
}

/* Orange bar as separate element (Text addon HTML variant) */
.nqa-heading-underline {
	width: 78px;
	border: 2px solid #F18528;
	background-color: #F18528;
	display: inline-block;
	vertical-align: top;
	margin: 20px 0 30px;
}

/* Centered variant: add "nqa-heading-center" class to the addon
   Custom CSS Class field (or to a wrapper element in the HTML) */
.nqa-heading-center,
.nqa-heading-center h1,
.nqa-heading-center h2,
.nqa-heading-center h3,
.nqa-heading-center h4,
.nqa-heading-center p {
	text-align: center;
}

.nqa-heading-center .nqa-heading-underline {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Orange bar as ::after (Heading addon custom class variant) */
.nqa-underlined-title .sppb-addon-title:after,
.nqa-underlined-title h1:after,
.nqa-underlined-title h2:after,
.nqa-underlined-title h3:after,
.nqa-underlined-title h4:after {
	content: "";
	display: block;
	width: 78px;
	border-bottom: 4px solid #F18528;
	margin-top: 20px;
	margin-bottom: 10px;
}

@media (max-width: 991px) {
	h1.nqa-heading,
	h2.nqa-heading,
	h3.nqa-heading,
	h4.nqa-heading,
	.nqa-underlined-title .sppb-addon-title,
	.nqa-underlined-title h1,
	.nqa-underlined-title h2,
	.nqa-underlined-title h3,
	.nqa-underlined-title h4 {
		font-size: 38px;
	}
}

/* ============================================================
   NQA "At a glance" Feature Box style (nqa.com benefits block)
   Usage in SP Page Builder (free Feature Box addon):
   - Add "nqa-feature-box" to the ADDON Custom CSS Class field, OR
   - Add "nqa-benefits-section" to the ROW Custom CSS Class field
     (then ALL feature boxes in that row get the NQA style)
   - Image is forced to 80x80px by CSS (no Pro needed)
   ============================================================ */
.nqa-feature-box,
.nqa-feature-box .sppb-addon-content,
.nqa-benefits-section .sppb-addon-feature,
.nqa-benefits-section .sppb-addon-feature .sppb-addon-content {
	text-align: center;
}

/* Stack image above content, centered (NQA layout, SPPB5 markup) */
.nqa-feature-box .sppb-addon-content,
.nqa-benefits-section .sppb-addon-feature .sppb-addon-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Image container centered */
.nqa-feature-box .sppb-img-container,
.nqa-benefits-section .sppb-addon-feature .sppb-img-container,
.nqa-feature-box .sppb-media,
.nqa-benefits-section .sppb-addon-feature .sppb-media {
	display: block;
	float: none;
	margin: 0 auto;
	text-align: center;
}

/* Neutralize SPPB float-based image alignment */
.nqa-feature-box .pull-left,
.nqa-feature-box .pull-right,
.nqa-feature-box .pull-center,
.nqa-benefits-section .sppb-addon-feature .pull-left,
.nqa-benefits-section .sppb-addon-feature .pull-right,
.nqa-benefits-section .sppb-addon-feature .pull-center {
	float: none;
	margin: 0 auto;
}

/* Icon size: 80x80px like nqa.com (this replaces the missing
   image size option of the free Feature Box addon) */
.nqa-feature-box img,
.nqa-benefits-section .sppb-addon-feature img {
	width: 80px !important;
	height: 80px !important;
	object-fit: contain;
	display: block;
	margin: 0 auto 12px;
}

/* Title: Montserrat 700, 16px/20px, centered (NQA .nqa-benefit-title) */
.nqa-feature-box .sppb-feature-box-title,
.nqa-feature-box .sppb-addon-title,
.nqa-feature-box .sppb-media-heading,
.nqa-feature-box h1,
.nqa-feature-box h2,
.nqa-feature-box h3,
.nqa-feature-box h4,
.nqa-benefits-section .sppb-addon-feature .sppb-feature-box-title,
.nqa-benefits-section .sppb-addon-feature .sppb-addon-title,
.nqa-benefits-section .sppb-addon-feature h1,
.nqa-benefits-section .sppb-addon-feature h2,
.nqa-benefits-section .sppb-addon-feature h3,
.nqa-benefits-section .sppb-addon-feature h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #333333;
	text-align: center;
	margin: 0 auto 8px;
}

/* Description text: 14px/20px, centered (NQA .nqa-benefit-text) */
.nqa-feature-box .sppb-addon-text,
.nqa-feature-box .sppb-media-content,
.nqa-feature-box .sppb-media-body,
.nqa-feature-box p,
.nqa-benefits-section .sppb-addon-feature .sppb-addon-text,
.nqa-benefits-section .sppb-addon-feature .sppb-media-content,
.nqa-benefits-section .sppb-addon-feature p {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #333333;
	text-align: center;
}

/* Optional section wrapper: NQA "At a glance" section padding */
.nqa-benefits-section {
	padding: 45px 0;
}

/* ============================================================
   NQA "Steps to certification" style (nqa.com)
   Usage in SP Page Builder:
   - Row with 3 columns, ROW Custom CSS Class: nqa-steps-section
   - One Feature Box addon per column, NO image
     Title: "Step 1" / "Step 2" / "Step 3", Content: the text
   - Orange number badges are generated automatically (1, 2, 3)
   NOTE: badge/arrows/counter live on .sppb-addon-wrapper because
   the Feature Box addon renders 4 duplicate .sppb-addon-feature
   variants (only one is visible).
   ============================================================ */

/* Equal height boxes */
.nqa-steps-section .sppb-row-column,
.nqa-steps-section .sppb-column,
.nqa-steps-section .sppb-column-addons {
	display: flex;
	flex-direction: column;
}

.nqa-steps-section .sppb-column,
.nqa-steps-section .sppb-column-addons {
	flex: 1;
}

.nqa-steps-section .sppb-addon-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.nqa-steps-section .sppb-addon-wrapper > div,
.nqa-steps-section .sppb-addon-feature {
	flex: 1;
	height: 100%;
}

/* Column stacking: earlier columns paint above later ones,
   so the ::after arrows are not covered by the next box */
.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(1) {
	z-index: 3;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(2) {
	z-index: 2;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(3) {
	z-index: 1;
}

/* Remove horizontal gutter so boxes touch like on nqa.com */
.nqa-steps-section .sppb-row > .sppb-row-column {
	padding-left: 0;
	padding-right: 0;
}

/* Step box base (mobile first: stacked, centered, no badge like NQA) */
.nqa-steps-section {
	counter-reset: nqastep;
}

.nqa-steps-section .sppb-addon-wrapper {
	counter-increment: nqastep;
}

.nqa-steps-section .sppb-addon-feature {
	margin: 0;
	width: 100%;
	color: #FFFFFF;
	text-align: center;
}

/* Orange number badge (automatic counter) - desktop only, like NQA */
.nqa-steps-section .sppb-addon-wrapper:before {
	display: none;
}

/* Box content (mobile) */
.nqa-steps-section .sppb-addon-feature .sppb-addon-content {
	padding: 24px 24px 32px;
	width: 100%;
}

/* Step title (mobile: centered, semibold - like NQA) */
.nqa-steps-section .sppb-addon-feature .sppb-feature-box-title,
.nqa-steps-section .sppb-addon-feature .sppb-addon-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: #FFFFFF;
	text-align: center;
	margin: 0 0 10px;
}

/* Step text: white 16px/20px */
.nqa-steps-section .sppb-addon-feature .sppb-addon-text,
.nqa-steps-section .sppb-addon-feature .sppb-media-content,
.nqa-steps-section .sppb-addon-feature p {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	text-align: center;
	margin: 0;
}

/* The 3 NQA blue shades, in column order */
.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(1) .sppb-addon-feature {
	background: #05528D;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(2) .sppb-addon-feature {
	background: #0062AE;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(3) .sppb-addon-feature {
	background: #286ACD;
}

/* Connecting arrows between boxes (mobile: pointing down) */
.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(-n+2) .sppb-addon-wrapper:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	z-index: 5;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(1) .sppb-addon-wrapper:after {
	border-top: 20px solid #05528D;
}

.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(2) .sppb-addon-wrapper:after {
	border-top: 20px solid #0062AE;
}

/* Desktop: side-by-side, left aligned, badge at box edge,
   arrows pointing right */
@media (min-width: 768px) {
	.nqa-steps-section .sppb-addon-feature {
		text-align: left;
	}

	/* Orange number badge flush at the box left edge (NQA style) */
	.nqa-steps-section .sppb-addon-wrapper:before {
		content: counter(nqastep);
		display: block;
		background-color: #F18528;
		color: #FFFFFF;
		font-family: 'Montserrat', sans-serif;
		font-weight: 300;
		font-size: 26px;
		line-height: 1;
		padding: 8px 12px 6px;
		min-width: 40px;
		text-align: center;
		position: absolute;
		left: 0;
		top: 30px;
		z-index: 5;
	}

	.nqa-steps-section .sppb-addon-feature .sppb-addon-content {
		padding: 37px 24px 30px 55px;
	}

	.nqa-steps-section .sppb-addon-feature .sppb-feature-box-title,
	.nqa-steps-section .sppb-addon-feature .sppb-addon-title {
		font-weight: 300;
		font-size: 32px;
		line-height: 28px;
		text-align: left;
	}

	.nqa-steps-section .sppb-addon-feature .sppb-addon-text,
	.nqa-steps-section .sppb-addon-feature .sppb-media-content,
	.nqa-steps-section .sppb-addon-feature p {
		text-align: left;
	}

	/* Right-pointing arrows */
	.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(-n+2) .sppb-addon-wrapper:after {
		bottom: auto;
		top: calc(50% - 25px);
		left: 100%;
		transform: none;
		border-right: none;
		border-top: 25px solid transparent;
		border-bottom: 25px solid transparent;
	}

	.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(1) .sppb-addon-wrapper:after {
		border-left: 25px solid #05528D;
		border-top: 25px solid transparent;
	}

	.nqa-steps-section .sppb-row > .sppb-row-column:nth-child(2) .sppb-addon-wrapper:after {
		border-left: 25px solid #0062AE;
		border-top: 25px solid transparent;
	}
}

/* NQA "MORE DETAILS" gomb stílusa */
.nqa-generic-button-orange-long-link {
  -webkit-appearance: none;
  border-radius: 4px;
  background-color: #f18528;
  border: none;
  font-family: 'Montserrat', sans-serif;
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  height: 60px;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  padding: 0 50px;
  line-height: 60px;
  display: inline-block;
}
.nqa-generic-button-orange-long-link:hover,
.nqa-generic-button-orange-long-link:focus {
  background-color: #f16628;
  color: #fff !important;
}
@media (min-width: 1000px) {
  .nqa-generic-button-orange-long-link {
    font-size: 20px;
    line-height: 70px;
    height: 70px;
    width: auto;
  }
}

/* ============================================== */
/* HÍRKÁRTYÁK - NQA STÍLUS                        */
/* ============================================== */

/* Kártya container - NQA .nqa-rbp-tile stílusa */
.mod-articles-grid .mod-articles-item {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, opacity 0.2s ease-out;
  transition-delay: 0.1s;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover effect - kártya megemelkedése */
.mod-articles-grid .mod-articles-item:hover {
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

/* Belső content - flex column a sorrendhez */
.mod-articles-grid .mod-articles-item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

/* 1. KÉP - legfelül (NQA .nqa-rbp-image-container) */
.mod-articles-grid .mod-articles-image {
  order: 1;
  height: 188px;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  float: none !important;
}

.mod-articles-grid .mod-articles-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease-out;
}

.mod-articles-grid .mod-articles-item:hover .mod-articles-image img {
  transform: scale(1.05);
}

/* 2. CÍM - kép alatt (NQA .nqa-rbp-title) */
.mod-articles-grid .mod-articles-title {
  order: 2;
  margin-top: 10px;
  font-weight: 400;
  line-height: 29px;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  padding: 0 24px;
  min-height: 87px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mod-articles-grid .mod-articles-title a {
  color: #333;
  text-decoration: none;
}

.mod-articles-grid .mod-articles-title a:hover,
.mod-articles-grid .mod-articles-title a:focus {
  color: #f18528;
}

/* 3. DÁTUM - cím alatt (a dl a flex gyermek, nem a dd!) */
.mod-articles-grid .list-unstyled {
  order: 3;
  list-style: none;
  padding: 0 24px;
  margin: 0 0 24px;
}

.mod-articles-grid .mod-articles-date {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin: 6px 0 0;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  min-height: 22px;
}

.mod-articles-grid .mod-articles-date .icon-calendar {
  margin-right: 6px;
}

/* Grid container - NQA .nqa-rbp-tiles */
.mod-articles-grid.grid-cols-3 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.mod-articles-grid.grid-cols-3 > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reszponzív szélesség - NQA breakpoints */
@media (min-width: 992px) {
  .mod-articles-grid.grid-cols-3 > li {
    width: calc(32% - 14px);
    flex: 0 0 calc(32% - 14px);
  }
}

@media (min-width: 650px) and (max-width: 991.98px) {
  .mod-articles-grid.grid-cols-3 > li {
    width: calc(48% - 10px);
    flex: 0 0 calc(48% - 10px);
  }
}

@media (max-width: 649.98px) {
  .mod-articles-grid.grid-cols-3 > li {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* ============================================== */
/* HÍRKÁRTYÁK - NYÍL A JOBB ALSÓ SARKON            */
/* ============================================== */

/* A cím link container - relatív pozíció a nyílhoz */
.mod-articles-grid .mod-articles-item {
  position: relative;
}

/* Nyíl a kártya jobb alsó sarkában (NQA .nqa-rbp-link-arrow) */
.mod-articles-grid .mod-articles-item-content::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 20px;
  width: 27px;
  height: 23px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='27' height='23' viewBox='0 0 27 23' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='14.8384667 0 24.9953225 10.2857431 14.4153226 21'/><path d='M24.6975806,10.5 L0.6975806,10.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease-out;
}

/* Hover-re a nyíl jobbra mozog (NQA-hoz hasonló finom hatás) */
.mod-articles-grid .mod-articles-item:hover .mod-articles-item-content::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='27' height='23' viewBox='0 0 27 23' fill='none' stroke='%23f18528' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='14.8384667 0 24.9953225 10.2857431 14.4153226 21'/><path d='M24.6975806,10.5 L0.6975806,10.5'/></svg>");
}

/* ============================================== */
/* NQA STÍLUSÚ CÍMSOR FEHÉR ALÁHÚZÁSSAL           */
/* ============================================== */

.nqa-hb-content {
  text-align: center;
  padding: 60px 29px;
}

@media (min-width: 1000px) {
  .nqa-hb-content {
    padding: 60px;
  }
}

.nqa-hb-content h1,
.nqa-hb-content h2,
.nqa-hb-content .nqa-hb-heading {
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  padding-bottom: 18px;
  display: inline-block;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 42px;
}

@media (min-width: 1000px) {
  .nqa-hb-content h1,
  .nqa-hb-content h2,
  .nqa-hb-content .nqa-hb-heading {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 50px;
    line-height: 50px;
  }
}

/* Opcionális strapline (alcímsor a főcím alatt) */
.nqa-hb-strapline {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 20px;
  display: block;
  margin-top: 10px;
}

@media (min-width: 1000px) {
  .nqa-hb-strapline {
    font-size: 23px;
  }
}

/* ============================================== */
/* NQA STÍLUSÚ FOOTER                              */
/* ============================================== */

.nqa-footer-container {
  background-color: #efefef;
  z-index: 1;
}

.nqa-footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1000px) {
  .nqa-footer-wrapper {
    justify-content: space-between;
  }
}

.nqa-footer-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
}

@media (min-width: 1000px) {
  .nqa-footer-content {
    align-items: flex-start;
    flex-flow: row;
    flex-wrap: wrap;
    height: auto;
  }
}

/* ---- 1. OSZLOP: Feliratkozás / gomb ---- */
.nqa-footer-signup {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .nqa-footer-signup {
    text-align: left;
    width: 33%;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-signup {
    width: 33%;
    margin-bottom: 0;
  }
}

.nqa-footer-signup-text {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  line-height: 23px;
  font-weight: 400;
  margin: 0 0 22px;
}

@media (min-width: 992px) {
  .nqa-footer-signup-text {
    padding-right: 40px;
    margin: 0;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-signup-text {
    height: 60px;
  }
}

/* Gomb (kék, NQA stílus) */
.nqa-footer-signup-link a {
  -webkit-appearance: none;
  border-radius: 4px;
  background-color: #0062ae;
  border: none;
  width: 50%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 20px 0;
  text-align: center;
  display: inline-block;
  min-width: 100%;
  font-size: 18px;
  transition: background-color 0.3s ease-out;
}

.nqa-footer-signup-link a:hover,
.nqa-footer-signup-link a:focus {
  background-color: #0087f0;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 480px) {
  .nqa-footer-signup-link a {
    min-width: 300px;
  }
}

/* ---- 2. OSZLOP: Telefon ---- */
.nqa-footer-call {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 40px;
}

@media (min-width: 1000px) {
  .nqa-footer-call {
    display: block;
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-call {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .nqa-footer-call {
    width: 33%;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-call {
    width: 25%;
  }
}

.nqa-footer-call-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  line-height: 23px;
  font-weight: 400;
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .nqa-footer-call-text {
    margin: 0;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-call-text {
    height: 60px;
  }
}

.nqa-footer-telephone-number {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .nqa-footer-telephone-number {
    justify-content: flex-start;
    height: 65px;
  }
}

.nqa-footer-display-telephone {
  margin: 0;
  margin-left: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  text-align: center;
  font-weight: 500;
  color: #333;
}

@media (min-width: 1000px) {
  .nqa-footer-display-telephone {
    margin-left: 13px;
    font-size: 31px;
  }
}

.nqa-svg-phone {
  margin-top: 0.3rem;
  width: 14px;
}

@media (min-width: 1000px) {
  .nqa-svg-phone {
    width: 24px;
  }
}

/* ---- 3. OSZLOP: Social + Munkatársak ---- */
.nqa-footer-socials {
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .nqa-footer-socials {
    width: 33%;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-socials {
    width: 25%;
  }
}

.nqa-footer-socials-text {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  line-height: 23px;
  font-weight: 400;
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .nqa-footer-socials-text {
    margin: 0;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .nqa-footer-socials-text {
    height: 60px;
  }
}

.nqa-footer-socials-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 992px) {
  .nqa-footer-socials-container {
    justify-content: flex-start;
  }
}

/* Kerek ikon gombok (Facebook + Munkatársak) */
.nqa-footer-social {
  height: 61px;
  width: 61px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease-out;
}

.nqa-footer-social:hover,
.nqa-footer-social:focus {
  text-decoration: none;
}

/* Facebook ikon - hover kék */
.nqa-social-fb:hover {
  background-color: #1877f2;
}

.nqa-footer-social-svg {
  margin: auto 0;
  display: flex;
}

.nqa-footer-social-svg-white {
  display: none;
  margin: auto 0;
}

.nqa-footer-social:hover .nqa-footer-social-svg,
.nqa-footer-social:focus .nqa-footer-social-svg {
  display: none;
}

.nqa-footer-social:hover .nqa-footer-social-svg-white,
.nqa-footer-social:focus .nqa-footer-social-svg-white {
  display: flex;
}

/* Munkatársak link ikon - hover narancs (NQA fő szín) */
.nqa-social-staff:hover {
  background-color: #f18528;
}

/* Munkatársak szöveges link az ikonok mellett */
.nqa-footer-staff-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0062ae;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s ease-out;
}

.nqa-footer-staff-link:hover,
.nqa-footer-staff-link:focus {
  color: #f18528;
  text-decoration: none;
}
/* ============================================== */
/* NQA STÍLUSÚ GYORSMENÜ / LINK OSZLOP (3 oszlop)  */
/* ============================================== */

.nqa-quick-links-footer-wrapper {
  background-color: #fff;
}

.nqa-quick-links-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 0 7px 50px;
}

@media (min-width: 1200px) {
  .nqa-quick-links-footer-container {
    flex-wrap: nowrap;
  }
}

/* Oszlopok szélessége: 40% / 30% / 30% */
.nqa-quick-links-footer-column {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

.nqa-quick-links-footer-column.nqa-ql-company {
  width: 40%;
  flex: 0 0 40%;
}

.nqa-quick-links-footer-column.nqa-ql-links {
  width: 30%;
  flex: 0 0 30%;
}

@media (max-width: 1199.98px) {
  .nqa-quick-links-footer-column.nqa-ql-company,
  .nqa-quick-links-footer-column.nqa-ql-links {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .nqa-quick-links-footer-column.nqa-ql-company,
  .nqa-quick-links-footer-column.nqa-ql-links {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* Oszlopcím (modulnév) - NQA .nqa-quick-links-titles */
.nqa-quick-links-footer-column .nqa-quick-links-titles,
.nqa-quick-links-footer-column h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  line-height: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

/* Kék aláhúzás a cím alatt - NQA ::after */
.nqa-quick-links-footer-column .nqa-quick-links-titles::after,
.nqa-quick-links-footer-column h5::after {
  height: 4px;
  width: 50px;
  content: "";
  background: #0062ae;
  display: block;
  margin-top: 20px;
}

/* Link elemek - NQA .nqa-quick-links-items */
.nqa-quick-links-footer-column .nqa-quick-links-items,
.nqa-quick-links-footer-column ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  text-decoration: none;
  font-weight: 450;
  line-height: 30px;
  color: #000;
  display: block;
  transition: color 0.3s ease-out;
}

.nqa-quick-links-footer-column .nqa-quick-links-items:hover,
.nqa-quick-links-footer-column .nqa-quick-links-items:focus,
.nqa-quick-links-footer-column ul li a:hover,
.nqa-quick-links-footer-column ul li a:focus {
  color: #0062ae;
  text-decoration: none;
}

/* Joomla modul listázás reset */
.nqa-quick-links-footer-column ul {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.nqa-quick-links-footer-column ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Céginformáció oszlop (40%) ---- */
.nqa-ql-company-info {
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}

.nqa-ql-company-info p {
  margin: 0 0 12px;
  padding: 0;
  line-height: 26px;
}

.nqa-ql-company-name {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nqa-ql-company-address,
.nqa-ql-company-phone,
.nqa-ql-company-email,
.nqa-ql-company-reg {
  font-weight: 400;
  font-size: 15px;
  color: #333;
  line-height: 24px;
}

.nqa-ql-company-phone a,
.nqa-ql-company-email a {
  color: #0062ae;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nqa-ql-company-phone a:hover,
.nqa-ql-company-email a:hover,
.nqa-ql-company-phone a:focus,
.nqa-ql-company-email a:focus {
  color: #f18528;
  text-decoration: none;
}

.nqa-ql-company-label {
  font-weight: 400;
  color: #000;
}

/* ============================================== */
/* NQA STÍLUSÚ COPYRIGHT ALSÓ CSÍK                 */
/* ============================================== */

.nqa-btm-nav-container {
  display: flex;
  align-items: center;
  background-color: #474747;
  position: relative;
  width: 100%;
  text-align: center;
}

@media (min-width: 1000px) {
  .nqa-btm-nav-container {
    height: 65px;
    text-align: left;
  }
}

.nqa-btm-nav-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  align-items: center;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1000px) {
  .nqa-btm-nav-wrapper {
    flex-direction: row;
    margin: 0 auto;
  }
}

/* Copyright szöveg */
.nqa-btm-copyright {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  margin: 20px 0 0;
  order: 2;
}

@media (min-width: 1000px) {
  .nqa-btm-copyright {
    order: 1;
    margin: 0;
  }
}

/* Link doboz */
.nqa-btm-nav-box {
  order: 1;
}

@media (min-width: 1000px) {
  .nqa-btm-nav-box {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    order: 2;
  }
}

/* Linkek */
.nqa-btm-nav-pill {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  width: 100%;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease-out;
}

.nqa-btm-nav-pill:hover,
.nqa-btm-nav-pill:focus {
  color: #f18528;
  text-decoration: none;
}

@media (min-width: 1000px) {
  .nqa-btm-nav-pill {
    display: inline;
    width: auto;
    padding: 0;
  }

  /* Függőleges elválasztó a linkek között */
  .nqa-btm-nav-pill::after {
    content: "";
    display: inline-block;
    width: 1px;
    border-top: 15px solid rgba(153, 153, 153, 0.45);
    margin: 0 15px;
    vertical-align: middle;
  }

  .nqa-btm-nav-pill:last-child::after {
    display: none;
  }
}

#sp-footer a, #sp-bottom a {
  color: #fff;
}

/* ============================================== */
/* NQA STÍLUSÚ BREADCRUMBS                         */
/* ============================================== */

/* Wrapper - abszolút pozicionálva a banner felett (NQA .nqa-bc-wrapper) */
.nqa-bc-wrapper {
  position: absolute;
  display: block;
  top: 17px;
  left: 19px;
  z-index: 20;
}

/* Mobil: rejtve (NQA < 1000px display:none) */
@media (max-width: 999.98px) {
  .nqa-bc-wrapper {
    display: none;
  }
}

/* Modul container reset */
.nqa-bc-wrapper .sp-module-content {
  padding: 0;
  margin: 0;
}

/* Nav wrapper reset */
.nqa-bc-wrapper .mod-breadcrumbs__wrapper {
  padding: 0;
  margin: 0;
  background: transparent;
}

/* Lista reset */
.nqa-bc-wrapper .mod-breadcrumbs,
.nqa-bc-wrapper .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* "Ön itt van:" szöveg elrejtése (NQA-n nincs ilyen) */
.nqa-bc-wrapper .mod-breadcrumbs__here {
  display: none;
}

/* Lista elemek reset */
.nqa-bc-wrapper .mod-breadcrumbs__item {
  list-style: none;
  padding: 0;
  margin: 0;
  float: none;
}

/* Link stílus (NQA .nqa-bc-link) */
.nqa-bc-wrapper .mod-breadcrumbs__item a,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway,
.nqa-bc-wrapper .mod-breadcrumbs__item span {
  text-decoration: none;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}

/* Kattintható linkek (NQA .nqa-bc-link-clickable) */
.nqa-bc-wrapper .mod-breadcrumbs__item a,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway {
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease-out;
}

.nqa-bc-wrapper .mod-breadcrumbs__item a:hover,
.nqa-bc-wrapper .mod-breadcrumbs__item a:focus,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway:hover,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway:focus {
  text-decoration: underline;
  color: #fff;
}

/* Elválasztó "/" a linkek után (NQA .nqa-bc-link-clickable::after) */
.nqa-bc-wrapper .mod-breadcrumbs__item a::after,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  color: #b9b8b7;
  display: inline-block;
}

/* Link span reset (a <a><span> struktúra miatt) */
.nqa-bc-wrapper .mod-breadcrumbs__item a span,
.nqa-bc-wrapper .mod-breadcrumbs__item .pathway span {
  color: inherit;
}

/* Aktuális oldal (utolsó elem, nem link) - NQA .nqa-bc-link-disabled */
.nqa-bc-wrapper .mod-breadcrumbs__item.active,
.nqa-bc-wrapper .mod-breadcrumbs__item:last-child {
  cursor: default;
  color: #b9b8b7;
  display: inline-block;
}

.nqa-bc-wrapper .mod-breadcrumbs__item.active span,
.nqa-bc-wrapper .mod-breadcrumbs__item:last-child span {
  color: #b9b8b7;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}

/* Az utolsó elemre ne kerüljön elválasztó */
.nqa-bc-wrapper .mod-breadcrumbs__item:last-child a::after,
.nqa-bc-wrapper .mod-breadcrumbs__item.active a::after {
  display: none;
}

/* ============================================== */
/* NQA STÍLUSÚ BREADCRUMBS                         */
/* ============================================== */

/* Page Title szekció - nincs háttér */
#sp-page-title {
  position: relative;
  background: transparent !important;
}

.sp-page-title {
  position: relative;
  background: transparent !important;
}

/* Container - relatív pozíció a breadcrumb abszolút pozicionálásához */
.sp-page-title .container {
  position: relative;
}

/* Page Title heading elrejtése (a "Rólunk" szöveg) */
.sp-page-title-heading {
  display: none !important;
}

/* Breadcrumb wrapper - abszolút pozicionálva a container-en belül (NQA .nqa-bc-wrapper) */
.mod-breadcrumbs__wrapper {
  position: absolute;
  display: block;
  top: 0px;
  left: 45px;
  z-index: 20;
  padding: 0;
  margin: 0;
  background: transparent;
}

/* Mobil: rejtve (NQA < 1000px display:none) */
@media (max-width: 999.98px) {
  .mod-breadcrumbs__wrapper {
    display: none;
  }
}

/* Lista reset */
.mod-breadcrumbs,
.mod-breadcrumbs.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* "Ön itt van:" szöveg elrejtése (NQA-n nincs ilyen) */
.mod-breadcrumbs__here {
  display: none !important;
}

/* Lista elemek reset */
.mod-breadcrumbs__item {
  list-style: none;
  padding: 0;
  margin: 0;
  float: none;
}

/* Link stílus (NQA .nqa-bc-link) */
.mod-breadcrumbs__item a,
.mod-breadcrumbs__item .pathway,
.mod-breadcrumbs__item span {
  text-decoration: none;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}

/* Kattintható linkek - KÉK (NQA .nqa-bc-link-clickable: color:#0075be) */
.sp-page-title .breadcrumb>li>a,
.sp-page-title .mod-breadcrumbs__item a,
.sp-page-title .mod-breadcrumbs__item .pathway,
.sp-page-title .breadcrumb .pathway {
  cursor: pointer;
  color: #0075be !important;
  transition: color 0.3s ease-out;
}

.sp-page-title .breadcrumb>li>a:hover,
.sp-page-title .breadcrumb>li>a:focus,
.sp-page-title .mod-breadcrumbs__item a:hover,
.sp-page-title .mod-breadcrumbs__item a:focus,
.sp-page-title .breadcrumb .pathway:hover,
.sp-page-title .breadcrumb .pathway:focus {
  text-decoration: underline;
  color: #0075be !important;
}

/* Link span szín - örökli a link színét */
.sp-page-title .breadcrumb>li>a span,
.sp-page-title .mod-breadcrumbs__item a span,
.sp-page-title .mod-breadcrumbs__item .pathway span {
  color: inherit !important;
}

/* Elválasztó "/" a linkek után - SZÜRKE */
.sp-page-title .breadcrumb>li>a::after,
.sp-page-title .mod-breadcrumbs__item a::after,
.sp-page-title .breadcrumb .pathway::after,
.sp-page-title .mod-breadcrumbs__item .pathway::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  color: #757575;
  display: inline-block;
}

/* Aktuális oldal (active/utolsó) - SZÜRKE */
.sp-page-title .breadcrumb>.active,
.sp-page-title .breadcrumb>li:last-child,
.sp-page-title .mod-breadcrumbs__item.active,
.sp-page-title .mod-breadcrumbs__item:last-child {
  cursor: default;
  color: #757575 !important;
  display: inline-block;
}

.sp-page-title .breadcrumb>.active span,
.sp-page-title .breadcrumb>li:last-child span,
.sp-page-title .mod-breadcrumbs__item.active span,
.sp-page-title .mod-breadcrumbs__item:last-child span {
  color: #757575 !important;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}

/* Utolsó elemre ne kerüljön elválasztó */
.sp-page-title .breadcrumb>li:last-child a::after,
.sp-page-title .breadcrumb>.active a::after,
.sp-page-title .mod-breadcrumbs__item:last-child a::after,
.sp-page-title .mod-breadcrumbs__item.active a::after {
  display: none;
}

/* Bootstrap breadcrumb padding reset */
.mod-breadcrumbs.breadcrumb.px-3.py-2 {
  padding: 0 !important;
}

/* ============================================== */
/* NQA STÍLUSÚ TARTALMI OLDAL / BLOG               */
/* ============================================== */

/* Container - NQA .nqa-gp-container */
.article-details {
  padding: 0px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .article-details {
    
  }
}

@media (min-width: 1000px) {
  .article-details {
    
  }
}

/* Főcím container - NQA .nqa-gp-description */
.article-details .article-header {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0px;
  width: 100%;
  text-align: center;
}

@media (min-width: 1000px) {
  .article-details .article-header {
    margin: 0 auto 30px;
  }
}

/* Főcím - NQA .nqa-gp-description h1 */
.article-details .article-header h1 {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 28px;
  color: #333;
  margin: 0;
  padding: 0px;
  word-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

@media (min-width: 1000px) {
  .article-details .article-header h1 {
    font-size: 40px;
    line-height: 40px;
    
  }
}

/* Narancs aláhúzás a főcím alatt - NQA .nqa-gp-underline */
.article-details .article-header h1::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  background-color: #f18528;
  margin: 20px auto 0;
}

/* Tartalom container - NQA .nqa-gp-content-container */
.article-details [itemprop="articleBody"] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 26px;
}

/* Bekezdések */
.article-details [itemprop="articleBody"] p {
  margin: 0 0 20px;
  line-height: 26px;
}

/* Alcímek (h2, h3) */
.article-details [itemprop="articleBody"] h2,
.article-details [itemprop="articleBody"] h3 {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  margin: 30px 0 15px;
  font-weight: 800;
}

.article-details [itemprop="articleBody"] h2 {
  font-size: 30px;
  line-height: 39px;
}

.article-details [itemprop="articleBody"] h3 {
  font-size: 20px;
  line-height: 26px;
}

/* Felsorolások - NQA narancs pöttyök */
.article-details [itemprop="articleBody"] ul {
  padding-left: 60px;
  list-style: none;
  position: relative;
  margin-left: 0;
  margin-bottom: 20px;
}

.article-details [itemprop="articleBody"] ul li {
  margin: 20px 0;
  line-height: 26px;
}

.article-details [itemprop="articleBody"] ul li::before {
  position: absolute;
  content: "\2022";
  color: #f18528;
  margin-left: -30px;
  font-size: 40px;
  line-height: 18px;
}

/* Sorszámozott lista - NQA stílus */
.article-details [itemprop="articleBody"] ol {
  padding-left: 33px;
  counter-reset: item;
  list-style-type: none;
  position: relative;
  margin-bottom: 20px;
}

.article-details [itemprop="articleBody"] ol li {
  display: block;
  margin: 18px 0;
  line-height: 26px;
}

.article-details [itemprop="articleBody"] ol li::before {
  font-weight: 400;
  margin-right: 20px;
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  margin-left: -30px;
  color: #f18528;
}

/* Képek - NQA .nqa-wysiwyg img */
.article-details [itemprop="articleBody"] img {
  
  max-width: 100%;
  height: auto !important;
  margin: 20px 0;
}

/* Linkek */
.article-details [itemprop="articleBody"] a {
  color: #0075be;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.article-details [itemprop="articleBody"] a:hover,
.article-details [itemprop="articleBody"] a:focus {
  color: #f18528;
  text-decoration: underline;
}



/* ============================================== */
/* EGYEDI JOBOLDALI MODUL - KÉK ALÁHÚZÁSSAL        */
/* ============================================== */

.nqa-sidebar-module {
  background-color: #f5f5f5;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 0;
}

/* Modul címe */
.nqa-sidebar-module .sp-module-title,
.nqa-sidebar-module h3.sp-module-title,
.nqa-sidebar-module .module-title,
.nqa-sidebar-module h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.2;
}

/* Kék aláhúzás a modul címe alatt */
.nqa-sidebar-module .sp-module-title::after,
.nqa-sidebar-module h3.sp-module-title::after,
.nqa-sidebar-module .module-title::after,
.nqa-sidebar-module h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #0062ae;
  margin-top: 12px;
}

/* Modul tartalom alapstílus */
.nqa-sidebar-module .sp-module-content,
.nqa-sidebar-module .mod-articles-items,
.nqa-sidebar-module .custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

/* Linkek a modulon belül */
.nqa-sidebar-module a {
  color: #0075be;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nqa-sidebar-module a:hover,
.nqa-sidebar-module a:focus {
  color: #f18528;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .h2, h2 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    
  }

  h2::after {
  content: "" !important;
  display: block !important;
  width: 78px !important;
  height: 3px !important;
  background-color: #f18528 !important;
  margin: 10px 0 0 !important;
}
}

/* ============================================== */
/* EGYEDI JOBOLDALI MODUL 2 - FEHÉR HÁTTÉR         */
/* ============================================== */

.nqa-sidebar-module2 {
  background-color: #fff;
  border: 1px solid #dfd2d2;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 0;
}

/* Modul címe */
.nqa-sidebar-module2 .sp-module-title,
.nqa-sidebar-module2 h3.sp-module-title,
.nqa-sidebar-module2 .module-title,
.nqa-sidebar-module2 h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.2;
}

/* Kék aláhúzás a modul címe alatt */
.nqa-sidebar-module2 .sp-module-title::after,
.nqa-sidebar-module2 h3.sp-module-title::after,
.nqa-sidebar-module2 .module-title::after,
.nqa-sidebar-module2 h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #0062ae;
  margin-top: 12px;
}

/* Modul tartalom alapstílus */
.nqa-sidebar-module2 .sp-module-content,
.nqa-sidebar-module2 .mod-articles-items,
.nqa-sidebar-module2 .custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

/* Linkek a modulon belül */
.nqa-sidebar-module2 a {
  color: #0075be;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nqa-sidebar-module2 a:hover,
.nqa-sidebar-module2 a:focus {
  color: #f18528;
  text-decoration: none;
}

#sp-bottom .sp-module {
  margin-bottom: 0px;
}

#sp-bottom {
  padding: 60px 0 0px;
}

/* Céginformáció linkek - KÉK */
.nqa-ql-company-info a,
.nqa-ql-company-info p a {
  color: #0062ae !important;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nqa-ql-company-info a:hover,
.nqa-ql-company-info a:focus,
.nqa-ql-company-info p a:hover,
.nqa-ql-company-info p a:focus {
  color: #f18528 !important;
  text-decoration: none;
}

#sp-bottom a {
  color: #000;
}

.nqa-footer-signup-link a {
  -webkit-appearance: none;
  border-radius: 4px;
  background-color: #0062ae;
  border: none;
  width: 50%;
  font-family: 'Montserrat', sans-serif;
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 20px 0;
  text-align: center;
  display: inline-block;
  min-width: 100%;
  font-size: 18px;
  transition: background-color 0.3s ease-out;
}

.nqa-footer-signup-link a:hover,
.nqa-footer-signup-link a:focus {
  background-color: #0087f0;
  color: #fff !important;
  text-decoration: none;
}

/* ============================================== */
/* EGYEDI JOBOLDALI MODUL 3 - KÉK ALÁHÚZÁSSAL        */
/* ============================================== */

.nqa-sidebar-module3 {
  background-color: #f18528;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 0;
}

/* Modul címe */
.nqa-sidebar-module3 .sp-module-title,
.nqa-sidebar-module3 h3.sp-module-title,
.nqa-sidebar-module3 .module-title,
.nqa-sidebar-module3 h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.2;
}

/* Kék aláhúzás a modul címe alatt */
.nqa-sidebar-module3 .sp-module-title::after,
.nqa-sidebar-module3 h3.sp-module-title::after,
.nqa-sidebar-module3 .module-title::after,
.nqa-sidebar-module3 h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #0062ae;
  margin-top: 12px;
}

/* Modul tartalom alapstílus */
.nqa-sidebar-module3 .sp-module-content,
.nqa-sidebar-module3 .mod-articles-items,
.nqa-sidebar-module3 .custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #333;
}

/* Linkek a modulon3 belül */
.nqa-sidebar-module a {
  color: #0075be;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.nqa-sidebar-module3 a:hover,
.nqa-sidebar-module3 a:focus {
  color: #f18528;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .h2, h2 {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
    
  }

  h2::after {
  content: "" !important;
  display: block !important;
  width: 78px !important;
  height: 3px !important;
  background-color: #f18528 !important;
  margin: 10px 0 0 !important;
}
}

.sp-page-title {
  padding: 0px 0;
}

/* ============================================== */
/* KATEGÓRIA LISTA - FŐCÍMEK FORMÁZÁSA             */
/* (NQA stílus: középen, nagy betű, narancs vonal) */
/* ============================================== */

/* Cikk konténer - elválasztó vonal */
.com-content-category-blog .blog-item,
.com-content-category-blog .com-content-category-blog__item {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2dddd;
}

/* Főcím blokk */
.com-content-category-blog .article-header {
  text-align: center !important;
  margin-bottom: 20px !important;
}

/* Főcím (h2) - !important a template felülírásához */
.article-list .article .article-header h2,
.com-content-category-blog .article-header h2 {
  display: block !important;
  text-transform: uppercase !important;
  font-size: 28px !important;
  line-height: 32px !important;
  color: #333 !important;
  margin: 0 !important;
  padding: 0 !important;
  word-wrap: break-word !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  text-align: center !important;
}

@media (min-width: 1000px) {
  .article-list .article .article-header h2,
  .com-content-category-blog .article-header h2 {
    font-size: 40px !important;
    line-height: 40px !important;
  }
}

/* Főcím link */
.article-list .article .article-header h2 a,
.com-content-category-blog .article-header h2 a {
  color: #333 !important;
  text-decoration: none !important;
  transition: color 0.3s ease-out;
}

.article-list .article .article-header h2 a:hover,
.article-list .article .article-header h2 a:focus,
.com-content-category-blog .article-header h2 a:hover,
.com-content-category-blog .article-header h2 a:focus {
  color: #f18528 !important;
  text-decoration: none !important;
}

/* Narancs aláhúzás - középen */
.article-list .article .article-header h2::after,
.com-content-category-blog .article-header h2::after {
  content: "" !important;
  display: block !important;
  width: 78px !important;
  height: 4px !important;
  background-color: #f18528 !important;
  margin: 20px auto 0 !important;
}

/* Bevezető szöveg */
.com-content-category-blog .article-introtext {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

/* ============================================== */
/* TARTALOM MODUL - MENÜPONTOK FORMÁZÁSA           */
/* (vastagabb betű + narancs pont a listák előtt)  */
/* ============================================== */

/* Főmenü listaelemek - narancs pont a link előtt */
.nqa-sidebar-module .mod-menu > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  list-style: none;
}

.nqa-sidebar-module .mod-menu > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f18528;
}

/* Főmenü linkek - vastagabb betű */
.nqa-sidebar-module .mod-menu > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  line-height: 22px;
  display: inline-block;
  transition: color 0.3s ease-out;
}

.nqa-sidebar-module .mod-menu > li > a:hover,
.nqa-sidebar-module .mod-menu > li > a:focus {
  color: #f18528;
  text-decoration: none;
}

/* Aktív menüpont - narancs szín */
.nqa-sidebar-module .mod-menu > li.active > a,
.nqa-sidebar-module .mod-menu > li.current > a {
  color: #f18528;
}

/* Almenü listaelemek - kisebb narancs pont */
.nqa-sidebar-module .mod-menu__sub > li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  list-style: none;
}

.nqa-sidebar-module .mod-menu__sub > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f18528;
}

/* Almenü linkek - vastagabb, de kisebb betű */
.nqa-sidebar-module .mod-menu__sub > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  line-height: 20px;
  display: inline-block;
  transition: color 0.3s ease-out;
}

.nqa-sidebar-module .mod-menu__sub > li > a:hover,
.nqa-sidebar-module .mod-menu__sub > li > a:focus {
  color: #f18528;
  text-decoration: none;
}

/* Almenü aktív elem */
.nqa-sidebar-module .mod-menu__sub > li.active > a,
.nqa-sidebar-module .mod-menu__sub > li.current > a {
  color: #f18528;
  font-weight: 700;
}

/* A menu-toggler ikon elrejtése (ha zavaró) */
.nqa-sidebar-module .menu-toggler {
  display: none;
}

/* ============================================== */
/* "BŐVEBBEN..." GOMB - NQA STÍLUSÚ NARANCS GOMB    */
/* ============================================== */

/* Gomb konténer - középre igazítás */
.com-content-category-blog .readmore {
  text-align: center;
  margin: 25px 0 10px;
}

/* Gomb link - NQA narancs stílus */
.com-content-category-blog .readmore a {
  display: inline-block;
  background: #f3912d;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  border: none;
  transition: background 0.3s ease-out, transform 0.2s ease-out;
}

/* Hover - sötétebb narancs + enyki emelkedés */
.com-content-category-blog .readmore a:hover,
.com-content-category-blog .readmore a:focus {
  background: #d97a1e;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(243, 145, 45, 0.3);
}

/* ============================================== */
/* RENDSZERTANÚSÍTÁS - IKON KÉPEK ANIMÁCIÓ         */
/* (hvr-rotate: 3 oszlop, hover skálázás+árnyék)  */
/* ============================================== */

/* Tartalom konténer - flexbox a képekhez */
.article-details [itemprop="articleBody"] {
  display: block;
}

/* Ikon konténer - flexbox elrendezés */
.article-details [itemprop="articleBody"] .hvr-rotate {
  display: inline-block;
  vertical-align: top;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  margin: 10px 8px;
  width: calc((100% - 60px) / 3);
  box-sizing: border-box;
  font-size: 0;
}

/* Ikon kép - reszponzív méret */
.article-details [itemprop="articleBody"] .hvr-rotate img {
  width: 100% !important;
  height: auto !important;
  float: none !important;
  margin: 0 !important;
  border-radius: 4px;
  display: block;
}

/* Hover effekt - skálázás + árnyék */
.article-details [itemprop="articleBody"] .hvr-rotate:hover,
.article-details [itemprop="articleBody"] .hvr-rotate:focus,
.article-details [itemprop="articleBody"] .hvr-rotate:active {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -ms-transform: scale(1.06);
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  z-index: 10;
  position: relative;
}

/* Két oszlop 1200px alatt */
@media (max-width: 1199.98px) {
  .article-details [itemprop="articleBody"] .hvr-rotate {
    width: calc((100% - 40px) / 2);
    margin: 10px 8px;
  }
}

/* Egy oszlop mobilon */
@media (max-width: 767.98px) {
  .article-details [itemprop="articleBody"] .hvr-rotate {
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    display: block;
  }
  
  .article-details [itemprop="articleBody"] .hvr-rotate img {
    width: 100% !important;
    height: auto !important;
  }
}
/* ============================================== */
/* BREADCRUMBS - 20px LEJJEBB                       */
/* ============================================== */

.mod-breadcrumbs__wrapper {
  margin-top: 20px;
}

#sp-header.header-sticky {
  top: 15px;
  animation: none;
}

/* ============================================== */
/* TÁBLÁZATOK - NQA .nqa-wysiwyg table stílus      */
/* ============================================== */

.article-details [itemprop="articleBody"] table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
}

/* Táblázat fejléc (th) - NQA stílus */
.article-details [itemprop="articleBody"] table th {
  padding: 15px;
  vertical-align: top;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: left;
  color: #333;
}

/* Táblázat cellák (td) - NQA stílus */
.article-details [itemprop="articleBody"] table td {
  padding: 15px;
  vertical-align: top;
  border: 1px solid #e6e6e6;
}

/* Páros sorok enyhe háttérszín (zebra) - olvashatóság javítása */
.article-details [itemprop="articleBody"] table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover sor kiemelés */
.article-details [itemprop="articleBody"] table tbody tr:hover {
  background-color: #f0f0f0;
  transition: background-color 0.2s ease-out;
}

/* ============================================== */
/* TÁBLÁZATOK - BLOGFELSOROLÁS OLDALAKON           */
/* (com-content-category-blog .article-introtext)  */
/* ============================================== */

/* Táblázat a blogfelsorolás bevezető szövegében */
.com-content-category-blog .article-introtext table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
}

/* Fejléc (th) */
.com-content-category-blog .article-introtext table th {
  padding: 15px;
  vertical-align: top;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: left;
  color: #333;
}

/* Cellák (td) */
.com-content-category-blog .article-introtext table td {
  padding: 15px;
  vertical-align: top;
  border: 1px solid #e6e6e6;
}

/* Páros sorok - zebra csíkozás */
.com-content-category-blog .article-introtext table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover sor kiemelés */
.com-content-category-blog .article-introtext table tbody tr:hover {
  background-color: #f0f0f0;
  transition: background-color 0.2s ease-out;
}

/* ============================================== */
/* FELSOROLÁSOK - BLOGFELSOROLÁS OLDALAKON         */
/* (com-content-category-blog .article-introtext)  */
/* ============================================== */

/* Felsorolás lista - narancs pöttyök */
.com-content-category-blog .article-introtext ul {
  padding-left: 60px;
  list-style: none;
  position: relative;
  margin-left: 0;
  margin-bottom: 20px;
}

.com-content-category-blog .article-introtext ul li {
  margin: 20px 0;
  line-height: 26px;
}

.com-content-category-blog .article-introtext ul li::before {
  position: absolute;
  content: "\2022";
  color: #f18528;
  margin-left: -30px;
  font-size: 40px;
  line-height: 18px;
}

/* Sorszámozott lista - narancs számok */
.com-content-category-blog .article-introtext ol {
  padding-left: 33px;
  counter-reset: item;
  list-style-type: none;
  position: relative;
  margin-bottom: 20px;
}

.com-content-category-blog .article-introtext ol li {
  display: block;
  margin: 18px 0;
  line-height: 26px;
}

.com-content-category-blog .article-introtext ol li::before {
  font-weight: 400;
  margin-right: 20px;
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  margin-left: -30px;
  color: #f18528;
}
/* ========================================================================== */
/* FŐMENÜ ALMENÜK ÉS AL-ALMENÜK - KOMPAKT MEGJELENÍTÉS + DINAMIKUS SZÉLESSÉG  */
/* ========================================================================== */

/* 1. Almenük és al-almenük (sp-dropdown-main és sp-dropdown-sub) automatikus szélessége */
.sp-megamenu-parent .sp-dropdown,
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main,
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  width: auto !important;
  min-width: 200px !important;
  max-width: 450px !important;
}

/* 2. Belső térköz az almenükben */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  padding: 10px 18px !important;
}

/* 3. Menüpontok hézagmentesítése */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items li.sp-menu-item {
  padding: 0 !important;
  margin: 0 !important;
}

/* 4. Első szintű almenük (sp-dropdown-main) - 14px betű, normál hézag */
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main .sp-dropdown-items li.sp-menu-item > a,
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main .sp-dropdown-items li.sp-menu-item > span {
  display: block !important;
  padding: 5px 0 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  cursor: pointer;
}

/* 5. Második szintű AL-ALMENÜK (sp-dropdown-sub) - KISEBB BETŰ (13px) ÉS KISEBB HÉZAG */
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub .sp-dropdown-items li.sp-menu-item > a,
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub .sp-dropdown-items li.sp-menu-item > span {
  display: block !important;
  padding: 3.5px 0 !important;   /* Kisebb függőleges hézag */
  font-size: 13px !important;     /* Kisebb betűméret */
  line-height: 1.25 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  cursor: pointer;
}

/* 6. Hover állapot - narancs szín */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items li.sp-menu-item > a:hover,
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items li.sp-menu-item > a:focus {
  color: #f18528 !important;
  text-decoration: none !important;
}

/* 7. Aktív menüpont - narancs szín */
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items li.sp-menu-item.active > a,
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items li.sp-menu-item.current > a {
  color: #f18528 !important;
}