/* ==========================================================================
   Euroforest — dizajn sistem
   Sve vrednosti su IZMERENE na originalu (tools/measure.js), ne procenjene.
   ========================================================================== */

:root {
	/* boje */
	--ef-green:       #37A97F;   /* akcenat: podnaslovi, dugmad */
	--ef-teal:        #407D88;   /* uvodni pasusi, linkovi */
	--ef-dark:        #232727;   /* naslovi */
	--ef-body:        #707677;   /* telo teksta */
	--ef-light:       #EFF1EF;   /* svetla pozadina bloka */
	--ef-white:       #FFFFFF;
	--ef-border:      #DDDDDD;
	--ef-footer-bg:   #0C1E21;
	--ef-footer-text: #C5C5C5;

	/* tipografija */
	--ef-font: "Kumbh Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

	/* JEDNA promenljiva za sirinu sadrzaja — ne hardkoduj px po pravilu */
	--ef-w: 1290px;
}

/* ------------------------------------------------------------------ osnova */

body,
body.elementor-page {
	font-family: var(--ef-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ef-body);
	background-color: var(--ef-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.elementor-widget-heading .elementor-heading-title {
	font-family: var(--ef-font);
	font-weight: 700;
	color: var(--ef-dark);
	margin: 0;
}

h1 { font-size: 57px;    line-height: 1.05;  letter-spacing: -0.57px; }

/* Elementor "heading" widget nasilno stavlja line-height:1 — vrati prave odnose */
h1.elementor-heading-title { font-size: 57px;    line-height: 1.05;  letter-spacing: -0.57px; }
h2.elementor-heading-title { font-size: 47px;    line-height: 1.021; letter-spacing: -0.47px; }
h3.elementor-heading-title { font-size: 34px;    line-height: 1.1;   letter-spacing: -0.34px; }
h4.elementor-heading-title { font-size: 27px;    line-height: 1.15;  letter-spacing: -0.27px; }
h5.elementor-heading-title { font-size: 22.66px; line-height: 1.2; }
h6.elementor-heading-title { font-size: 18.99px; line-height: 1.474; }
h2 { font-size: 47px;    line-height: 1.021; letter-spacing: -0.47px; }
h3 { font-size: 34px;    line-height: 1.1;   letter-spacing: -0.34px; }
h4 { font-size: 27px;    line-height: 1.15;  letter-spacing: -0.27px; }
h5 { font-size: 22.66px; line-height: 1.2; }
h6 { font-size: 18.99px; line-height: 1.474; }

p { margin: 0 0 21px; }
p:last-child { margin-bottom: 0; }

a { color: var(--ef-teal); text-decoration: none; transition: color .25s ease; }
a:hover, a:focus { color: var(--ef-green); }

img { max-width: 100%; height: auto; }

/* sirina sadrzaja — ista promenljiva svuda */
.elementor-section.elementor-section-boxed > .elementor-container,
.e-con.e-con-boxed > .e-con-inner {
	max-width: var(--ef-w);
}

/* Hello Elementor cisti header/footer — HFE ih preuzima */
.site-header, .site-footer { display: none; }

/* ---------------------------------------------------- pomocne klase layout-a */

/* widgeti u koloni jedan pored drugog (npr. dva dugmeta u heroju) */
.ef-inline > .elementor-widget-wrap {
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.ef-inline > .elementor-widget-wrap > .elementor-widget { width: auto; margin-bottom: 0; }

/* hero: tacno 100vh ukupno (padding + sadrzaj), sadrzaj poravnat pri dnu.
   Elementor-ova .elementor-section-items-middle je jaca, otud !important. */
.ef-hero { --ef-hero-pad-y: 140px; }

.elementor-section.ef-hero > .elementor-container {
	min-height: calc(100vh - var(--ef-hero-pad-y));
	align-items: flex-end !important;
}
.ef-hero .elementor-column > .elementor-widget-wrap {
	align-content: flex-end !important;
	align-items: flex-end;
}

/* Centriran blok fiksne sirine (naslovi 645px na originalu).
   NAPOMENA: Elementor 3.6+ renderuje bez .elementor-widget-container omotaca,
   pa klasa stoji direktno na .elementor-element — selektor mora da cilja njega. */
.ef-w645 { max-width: 645px; margin-left: auto; margin-right: auto; }
.ef-w520 { max-width: 520px; }
.ef-w335 { max-width: 335px; }

/* lepljiva pozadinska slika u koloni (vizija/misija blok) */
.ef-sticky-media > .elementor-widget-wrap { position: sticky; top: 0; }

/* vizija/misija — desna kolona: original na 1440px daje sadrzaj x=833, sirine 556 */
.ef-vm > .elementor-widget-wrap { padding-left: 15.7%; padding-right: 7.1%; }
@media (max-width: 767px) {
	.ef-vm > .elementor-widget-wrap { padding-left: 0; padding-right: 0; }
}

/* ============================================================ EF SECTION TITLE
   Zamena za trx_sc_title: podnaslov + naslov + opis.
   ========================================================================== */

.ef-section-title { display: block; }

.ef-section-title__subtitle {
	font-family: var(--ef-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--ef-green);
	margin: 0 0 28.6px;
	display: block;
}

.ef-section-title__title {
	font-family: var(--ef-font);
	font-size: 57px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.57px;
	color: var(--ef-dark);
	margin: 0;
	display: block;
}

/* naslov prati svoj HTML tag — h2 je 47px na originalu, ne 57px */
h2.ef-section-title__title { font-size: 47px;    line-height: 1.021; letter-spacing: -0.47px; }
h3.ef-section-title__title { font-size: 34px;    line-height: 1.1;   letter-spacing: -0.34px; }
h4.ef-section-title__title { font-size: 27px;    line-height: 1.15;  letter-spacing: -0.27px; }
h5.ef-section-title__title { font-size: 22.66px; line-height: 1.2;   letter-spacing: 0; }
h6.ef-section-title__title { font-size: 18.99px; line-height: 1.474; letter-spacing: 0; }

.ef-section-title__descr {
	font-family: var(--ef-font);
	font-size: 17px;
	font-weight: 400;
	line-height: 28.05px;
	color: var(--ef-body);
	margin: 23.8px 0 0;
}

.ef-section-title--center { text-align: center; }
.ef-section-title--right  { text-align: right; }

/* ============================================================== EF CAROUSELS */

.ef-carousel {
	position: relative;
	--ef-gap: 30px;
	--ef-pv: 3;
}

.ef-carousel__track {
	display: flex;
	gap: var(--ef-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.ef-carousel__track::-webkit-scrollbar { display: none; }

/* sirina slajda = (100% - (n-1) * razmak) / n  → n slajdova tacno staje u vidno polje */
.ef-carousel__slide {
	flex: 0 0 calc((100% - (var(--ef-pv) - 1) * var(--ef-gap)) / var(--ef-pv));
	scroll-snap-align: start;
	box-sizing: border-box;
	min-width: 0;
}

/* mreza (stranica Proizvodi): 3 kolone, razmak 30px, kvadratne slike */
.ef-carousel--grid .ef-carousel__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	overflow: visible;
	scroll-snap-type: none;
}
.ef-carousel--grid .ef-carousel__slide { flex: none; width: auto; }
@media (max-width: 1024px) {
	.ef-carousel--grid .ef-carousel__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
	.ef-carousel--grid .ef-carousel__track { grid-template-columns: 1fr; }
}

/* proizvodi: naizmenicno uzak/sirok slajd (original: 394px / 501px u traci od 895px) */
.ef-carousel--products .ef-carousel__slide:nth-child(odd)  { flex: 0 0 var(--ef-wa, 44.04%); }
.ef-carousel--products .ef-carousel__slide:nth-child(even) { flex: 0 0 var(--ef-wb, 56%); }

/* strelice ← → */
.ef-carousel__nav { display: flex; gap: 26px; align-items: center; }

.ef-carousel__arrow {
	width: 34px; height: 34px;
	display: inline-flex; align-items: center; justify-content: center;
	background: none; border: 0; padding: 0;
	color: var(--ef-dark);
	cursor: pointer;
	transition: color .25s ease, transform .25s ease;
}
.ef-carousel__arrow:hover { color: var(--ef-green); }
.ef-carousel__arrow svg { width: 30px; height: 16px; display: block; }
.ef-carousel__arrow[disabled] { opacity: .3; cursor: default; }

/* tackice */
.ef-carousel__dots { display: flex; gap: 9px; justify-content: center; margin-top: 30px; }
.ef-carousel__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: #C9D2CE; border: 0; padding: 0; cursor: pointer;
	transition: background .25s ease;
}
.ef-carousel__dot.is-active { background: var(--ef-green); }

/* ------------------------------------------------------ proizvodi (portfolio) */

.ef-product { display: block; }

.ef-product__media {
	position: relative;
	overflow: hidden;
	display: block;
	height: 493px;              /* original: fiksna visina, ne odnos stranica */
	background: var(--ef-light);
}
.ef-product__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.ef-product:hover .ef-product__media img { transform: scale(1.06); }

/* original: 493 slika + 20 razmak + 27 naslov = 540 ukupno */
.ef-product__barwrap { display: block; padding-top: 20px; }

.ef-product__bar {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 0;
	margin: 0;
	font-weight: 700;
}

.ef-product__title {
	font-family: var(--ef-font);
	font-size: 22.66px;
	font-weight: 700;
	line-height: 27.19px;
	color: var(--ef-dark);
	margin: 0;
	transition: color .25s ease;
}
.ef-product:hover .ef-product__title { color: var(--ef-green); }

.ef-product__num {
	font-family: var(--ef-font);
	font-size: 22.66px;
	font-weight: 700;
	line-height: 27.19px;
	color: var(--ef-green);
}

/* ---------------------------------------------------------------- vesti/blog */

.ef-news__media {
	display: block;
	aspect-ratio: 890 / 664;
	overflow: hidden;
	background: var(--ef-light);
}
.ef-news__media img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.ef-news:hover .ef-news__media img { transform: scale(1.06); }

.ef-news__cat {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--ef-dark);
	margin: 26px 0 12px;
}
.ef-news__cat:hover { color: var(--ef-green); }

/* naslov vesti: original meri 28px / 33.6px */
.ef-news__title {
	font-family: var(--ef-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 33.6px;
	color: var(--ef-dark);
	margin: 0 0 14px;
	display: block;
}
.ef-news__title a { color: inherit; }
.ef-news__title a:hover { color: var(--ef-green); }

.ef-news__meta {
	font-size: 13px;
	line-height: 20px;
	color: #A5ABAB;
	display: flex;
	gap: 8px;
	align-items: center;
}
.ef-news__meta a { color: inherit; }
.ef-news__meta span + span::before { content: "•"; margin-right: 8px; }

/* ================================================================== DUGMAD */

.elementor-button,
.ef-btn,
input[type="submit"],
button[type="submit"] {
	font-family: var(--ef-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 50px;
	letter-spacing: 0;
	padding: 0 34px;
	border-radius: 0;
	border: 0;
	background-color: var(--ef-green);
	color: var(--ef-white);
	text-align: center;
	display: inline-block;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
	cursor: pointer;
}
.elementor-button:hover, .ef-btn:hover,
input[type="submit"]:hover, button[type="submit"]:hover {
	background-color: var(--ef-dark);
	color: var(--ef-white);
}

/* sekundarno dugme: providno + zeleni okvir 2px */
.ef-btn--outline,
.elementor-button.ef-btn--outline {
	background: transparent;
	border: 2px solid var(--ef-green);
	color: var(--ef-white);
	line-height: 46px;
	padding: 0 32px;
}
.ef-btn--outline:hover { background: var(--ef-green); color: var(--ef-white); }

/* ============================================================ CONTACT FORM 7 */

/* original: razmak izmedju redova 37px, kolona 30px */
.wpcf7 .ef-form { display: flex; flex-wrap: wrap; gap: 37px 30px; }
.wpcf7 .ef-form__col { flex: 1 1 calc(50% - 15px); min-width: 220px; }
.wpcf7 .ef-form__col--full { flex: 1 1 100%; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	font-family: var(--ef-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: .1px;
	color: var(--ef-body);
	width: 100%;
	padding: 13px 0 13px 36px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #E1E1E1;
	border-radius: 0;
	box-sizing: border-box;
	transition: border-color .25s ease;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
	outline: none;
	border-bottom-color: var(--ef-green);
}
.wpcf7 ::placeholder { color: var(--ef-body); opacity: 1; }
.wpcf7 textarea { min-height: 51px; height: 99px; resize: vertical; }   /* original: 99px */

/* ikonica ispred polja */
.ef-field { position: relative; display: block; }
.ef-field > svg {
	position: absolute; left: 2px; top: 50%; transform: translateY(-50%);
	width: 18px; height: 18px; color: var(--ef-green); pointer-events: none;
}

/* original: dugme je 23px nize od mrezastog razmaka */
.wpcf7 .ef-form__submit { margin-top: 23px; }

.wpcf7 .wpcf7-submit {
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
	padding: 17px 35px 17px 64px;
	background-color: var(--ef-green);
	color: var(--ef-white);
	width: auto;
	position: relative;
}

.wpcf7 .ef-consent {
	font-size: 13px;
	line-height: 20px;
	color: var(--ef-body);
	display: block;
}
.wpcf7 .ef-consent a { text-decoration: underline; color: var(--ef-body); }

/* ==================================================================== FOOTER */

/* HFE sabloni ne naslede kit-ov "razmak izmedju widgeta = 0" — postavi ga ovde */
.ef-header, .ef-footer { --widgets-spacing: 0px; --widgets-spacing-row: 0px; }
.ef-header .elementor-widget:not(:last-child),
.ef-footer .elementor-widget:not(:last-child) { margin-block-end: 0; margin-bottom: 0; }

.ef-footer,
.ef-footer .elementor-widget-container,
.ef-footer .elementor-widget-text-editor,
.ef-footer p,
.ef-footer .ef-section-title__descr {
	color: var(--ef-footer-text);
}
.ef-footer h1, .ef-footer h2, .ef-footer h3,
.ef-footer h4, .ef-footer h5, .ef-footer h6 { color: var(--ef-white); }
.ef-footer a { color: var(--ef-footer-text); }
.ef-footer a:hover { color: var(--ef-green); }

/* ==================================================================== HEADER */

.ef-header a { color: var(--ef-white); }

.ef-header__menu a { color: var(--ef-white); }
.ef-header__menu .sub-menu a { color: var(--ef-dark); }

/* meni (HFE navigation) */
.ef-header .hfe-nav-menu__layout-horizontal .menu-item a.hfe-menu-item,
.ef-header .hfe-nav-menu a.hfe-menu-item {
	font-family: var(--ef-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--ef-white);
	padding: 14.4px;
	text-transform: uppercase;
}
.ef-header .hfe-nav-menu a.hfe-menu-item:hover,
.ef-header .hfe-nav-menu .current-menu-item > a.hfe-menu-item { color: var(--ef-green); }

/* podmeni */
.ef-header .hfe-nav-menu .sub-menu a.hfe-sub-menu-item {
	font-size: 15px;
	font-weight: 400;
	text-transform: none;
	color: var(--ef-dark);
	background: var(--ef-white);
	padding: 11px 22px;
}
.ef-header .hfe-nav-menu .sub-menu a.hfe-sub-menu-item:hover { color: var(--ef-green); }

/* header je preko heroja (position: over) */
.ef-header-over {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: transparent !important;
}
body { --ef-header-h: 156px; }

/* meni u jednom redu; visak stavki ide u "⋮" (isto ponasanje kao original) */
.ef-header__menu .hfe-nav-menu,
.ef-header__menu .hfe-nav-menu__layout-horizontal ul.hfe-nav-menu {
	flex-wrap: nowrap;
	white-space: nowrap;
}
.ef-header__menu .hfe-nav-menu > li.ef-hidden { display: none !important; }

.ef-more-item { position: relative; list-style: none; }
.ef-more-btn {
	background: none; border: 0; cursor: pointer;
	color: var(--ef-white);
	font-size: 20px; line-height: 24px; font-weight: 700;
	padding: 14.4px 10px;
	letter-spacing: 2px;
}
.ef-more-btn:hover { color: var(--ef-green); }

.ef-more-list {
	position: absolute; top: 100%; left: 0; min-width: 230px;
	background: var(--ef-white);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
	padding: 8px 0; margin: 0; list-style: none;
	display: none; z-index: 200;
}
.ef-more-item.is-open .ef-more-list { display: block; }
.ef-more-list a {
	display: block; padding: 10px 22px;
	font-size: 15px; font-weight: 400; color: var(--ef-dark);
	text-transform: none; white-space: nowrap;
}
.ef-more-list a:hover { color: var(--ef-green); }
.ef-more-list .ef-more-sub a { padding-left: 38px; font-size: 14px; color: var(--ef-body); }

/* ikone desno u header-u (globus + resetka) */
.ef-header__tools > .elementor-widget-wrap { justify-content: flex-end; }

.ef-header__icons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
	padding-right: 15px;   /* original: ikone se zavrsavaju na 1370, ne na 1385 */
}
.ef-icon-btn {
	background: none; border: 0; padding: 0; cursor: pointer;
	color: var(--ef-white);
	display: inline-flex; align-items: center; justify-content: center;
	transition: color .25s ease;
}
.ef-icon-btn:hover { color: var(--ef-green); }
.ef-icon-btn svg { display: block; width: 40px; height: 40px; }   /* original: globus 40x40 */
.ef-icon-btn.ef-panel-toggle svg { width: 26px; height: 26px; }   /* original: resetka 26 */

/* logo u header-u */
.ef-header__logo img { width: 260px; max-width: 100%; height: auto; }

/* footer: kancelarije */
.ef-office p { margin: 0; line-height: 2.5em; }
.ef-office strong { color: var(--ef-white); font-weight: 700; }
.ef-footer__logo img { width: 229px; max-width: 100%; height: auto; }

/* ================================================================ RESPONSIVE */

@media (max-width: 1024px) {
	h1, .ef-section-title__title { font-size: 44px; line-height: 1.08; }
	h2 { font-size: 38px; }
	.ef-carousel { --ef-gap: 24px; --ef-pv: var(--ef-pv-t, 2); }
	.ef-carousel--products .ef-carousel__slide:nth-child(odd)  { flex-basis: 46%; }
	.ef-carousel--products .ef-carousel__slide:nth-child(even) { flex-basis: 54%; }
}

@media (max-width: 767px) {
	/* veca specificnost od Elementor kit-a (.elementor-kit-N body) */
	body, body.elementor-page, .elementor-kit-4 body { font-size: 16px; line-height: 26.4px; }
	h1, .ef-section-title__title { font-size: 34px; line-height: 1.12; letter-spacing: -0.34px; }
	h2 { font-size: 30px; }
	h5, .ef-product__title, .ef-product__num, .ef-news__title { font-size: 20px; line-height: 26px; }
	.ef-section-title__subtitle { margin-bottom: 20px; }
	.ef-hero { --ef-hero-pad-y: 100px; }
	.ef-carousel { --ef-gap: 18px; --ef-pv: var(--ef-pv-m, 1.1); }
	.ef-carousel--products .ef-carousel__slide:nth-child(odd),
	.ef-carousel--products .ef-carousel__slide:nth-child(even) { flex-basis: 88%; }
	.wpcf7 .ef-form__col { flex: 1 1 100%; }
}

/* ==================================================== HEADER ZA PODSTRANICE */

.ef-header--inner .ef-header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 18px;
}
.ef-header--inner .ef-header__toprow {
	display: flex;
	align-items: center;
	gap: 22px;
}
.ef-header__mail {
	font-size: 18.99px;
	line-height: 18.99px;
	font-weight: 700;
	color: var(--ef-white);
	white-space: nowrap;
	margin: 0;
}
.ef-header__mail a { color: inherit; }
.ef-header__mail a:hover { color: var(--ef-green); }

.ef-header__cta {
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
	padding: 13px 40px;   /* original: dugme je 142px siroko */
	background: var(--ef-green);
	color: var(--ef-white);
	display: inline-block;
}
.ef-header__cta:hover { background: var(--ef-dark); color: var(--ef-white); }

.ef-header--inner .ef-header__logo img { width: 171px; }

/* podvlacenje aktivne stavke (original ima liniju ispod tekuce stranice) */
.ef-header--inner .hfe-nav-menu .current-menu-item > a,
.ef-header--inner .hfe-nav-menu .current-menu-ancestor > a { text-decoration: underline; }

/* ================================================= HERO TRAKA SA NASLOVOM */

.ef-page-hero { position: relative; }
.ef-page-hero::before {
	content: "";
	position: absolute; inset: 0;
	background: rgba(0, 0, 0, .28);
	pointer-events: none;
}
.ef-page-hero > .elementor-container { position: relative; z-index: 1; }

.ef-page-hero__title { text-align: center; }
.ef-page-hero__title .elementor-heading-title {
	color: var(--ef-white);
	display: inline-block;
}

.ef-page-hero__chevron {
	display: flex;
	justify-content: center;
	margin-top: 16px;
	color: var(--ef-white);
}
.ef-page-hero__chevron svg { width: 30px; height: 30px; }

/* ============================================================== OSOBE / TIM */

.ef-person img { width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto; }

.ef-person__name .ef-section-title__title {
	font-size: 47px;
	line-height: 48px;
	letter-spacing: -0.47px;
	margin-top: -21px;   /* original: ime pocinje 1px pre kraja slike */
	padding-top: 7px;
}

.ef-person__role p {
	font-size: 16px;
	line-height: 28px;
	color: var(--ef-body);
	margin: 6px 0 0;
}

.ef-person__contact p {
	margin: 0;
	font-size: 15px;
	line-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.ef-person__contact a { color: var(--ef-body); }
.ef-person__contact a:hover { color: var(--ef-green); }
.ef-ic { display: inline-flex; color: var(--ef-green); }
.ef-ic svg { width: 16px; height: 16px; }

/* ==================================================================== CTA */

/* CTA: zeleni blok preko teksture, beli tekst, belo dugme (original 226px visok) */
.ef-cta .ef-section-title__title,
.ef-cta__title .ef-section-title__title {
	font-size: 35px;
	line-height: 38px;
	letter-spacing: 0;
	color: var(--ef-white);
}
.ef-cta__descr, .ef-cta__descr p { color: var(--ef-footer-text); }

.ef-cta__btn > .elementor-widget-wrap { justify-content: flex-end; align-content: center; }
.ef-btn--white .elementor-button {
	background-color: var(--ef-white);
	color: #16292D;
	line-height: 21px;
	padding: 18px 54px;
}
.ef-btn--white .elementor-button:hover { background-color: #16292D; color: var(--ef-white); }

@media (max-width: 767px) {
	.ef-cta__btn > .elementor-widget-wrap { justify-content: flex-start; margin-top: 20px; }
}

/* ============================================================== DRUSTVENE */

.ef-socials { display: flex; gap: 16px; align-items: center; }
.ef-socials a {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--ef-border);
	color: var(--ef-dark);
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.ef-socials a:hover { background: var(--ef-green); border-color: var(--ef-green); color: #fff; }
.ef-socials svg { width: 18px; height: 18px; }

/* ============================================ DUGACAK TEKST (proizvod, pravno) */

.ef-longform h1, .ef-longform h2 { margin: 40px 0 18px; }
.ef-longform h3, .ef-longform h4 { margin: 32px 0 14px; }
.ef-longform ul, .ef-longform ol { margin: 0 0 21px 22px; }
.ef-longform li { margin-bottom: 8px; }
.ef-longform img { height: auto; margin: 20px 0; }
.ef-longform table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.ef-longform td, .ef-longform th { border: 1px solid var(--ef-border); padding: 10px 14px; }
.ef-longform figure { margin: 20px 0; }

/* naslov + opis centriran (stranice Proizvodi, Tim, Group members) */
.ef-title-center-descr .ef-section-title__descr {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

/* logotipi clanova grupe */
.ef-members img { max-height: 90px; width: auto; object-fit: contain; }
.ef-company img { max-height: 110px; width: auto; }

/* ================================================= WP BLOKOVI U SADRZAJU
   Hello Elementor ne ucitava pun core stil galerije, pa je ovde eksplicitno.
   Bez ovoga se slike iz .wp-block-gallery slazu jedna ispod druge preko cele
   sirine (stranice proizvoda su bile i po 10.000px duze od originala).
   ==================================================================== */

/* Sadrzaj stranice proizvoda je na originalu u koloni sirine 813px,
   pomerenoj udesno (x=552 unutar kontejnera od 1290). Sve mere galerije
   (265px u tri kolone, 402px u dve) proizlaze iz te sirine. */
.ef-longform .wp-block-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}
/* flex-grow ostavljen namerno: poslednji red se rasteze, isto kao na originalu
   (6 slika u dve trojke pa dve od 402px) */
.ef-longform .wp-block-gallery > figure,
.ef-longform .wp-block-gallery .wp-block-image {
	flex: 1 1 calc((100% - 18px) / 3);
	margin: 0;
	max-width: 100%;
	min-width: 0;      /* bez ovoga sopstvena sirina slike gura stavku u svoj red */
	position: relative;
}
.ef-longform .wp-block-gallery.columns-2 > figure,
.ef-longform .wp-block-gallery.columns-2 .wp-block-image {
	flex-basis: calc((100% - 9px) / 2);
}
/* Vise slika -> kvadratni isecak u mrezi (kao original).
   Jedna slika -> puna sirina i prirodni odnos. */
.ef-longform .wp-block-gallery .wp-block-image:not(:only-child) img {
	width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1;
}
/* jedna slika u galeriji: puna sirina kolone */
.ef-longform .wp-block-gallery > figure:only-child,
.ef-longform .wp-block-gallery .wp-block-image:only-child {
	flex-basis: 100%; max-width: 100%;
}
.ef-longform .wp-block-gallery .wp-block-image:only-child img {
	width: 100%; height: auto; aspect-ratio: auto;
}
.ef-longform .wp-block-gallery figcaption,
.ef-longform figcaption {
	font-size: 13px;
	line-height: 20px;
	color: #A5ABAB;
	margin-top: 8px;
	font-style: italic;
}
.ef-longform .wp-block-image { margin: 20px 0; }
.ef-longform .wp-block-image img { max-width: 100%; height: auto; display: block; }
.ef-longform > *:first-child { margin-top: 0; }

@media (max-width: 767px) {
	.ef-longform .wp-block-gallery > figure,
	.ef-longform .wp-block-gallery .wp-block-image,
	.ef-longform .wp-block-gallery.columns-2 > figure,
	.ef-longform .wp-block-gallery.columns-2 .wp-block-image {
		flex-basis: calc(50% - 5px);
		max-width: calc(50% - 5px);
	}
	/* na mobilnom original prikazuje jednu sliku preko cele sirine, kvadratno */
	.ef-longform .wp-block-gallery .wp-block-image:only-child {
		flex-basis: 100%; max-width: 100%;
	}
	/* mobilni: original NE isece galeriju u kvadrat — zadrzava prirodni odnos,
	   a poslednja neparna stavka ide preko cele sirine */
	.ef-longform .wp-block-gallery .wp-block-image:not(:only-child) img {
		aspect-ratio: auto !important;
		height: auto !important;
		object-fit: fill;
	}
	.ef-longform .wp-block-gallery .wp-block-image:last-child:nth-child(odd) {
		flex-basis: 100%;
		max-width: 100%;
	}
}

/* ==================================================== NAVIGACIJA PREV/NEXT */

.ef-postnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--ef-border);
	padding-top: 24px;
	margin-top: 24px;
}
.ef-postnav a {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: 14px; font-weight: 700; letter-spacing: .5px;
	color: var(--ef-dark);
	text-transform: none;
}
.ef-postnav a:hover { color: var(--ef-green); }
.ef-postnav svg { width: 22px; height: 12px; }
.ef-postnav__spacer { flex: 1; }

/* kontaktni podaci poravnati levo (stranica clana tima) */
.ef-person__contact--left p { justify-content: flex-start; }

/* ------------------------------------------------ arhiva vesti (lista) */

.ef-carousel--list .ef-carousel__track {
	display: block;
	overflow: visible;
	scroll-snap-type: none;
}
.ef-carousel--list .ef-carousel__slide {
	flex: none; width: auto; max-width: none;
	margin-bottom: 60px;
}
.ef-carousel--list .ef-news__media { aspect-ratio: 848 / 478; }
.ef-carousel--list .ef-news__title { font-size: 34px; line-height: 40px; margin-bottom: 16px; }
.ef-news__excerpt { margin-top: 16px; }
.ef-news__more {
	display: inline-block;
	margin-top: 18px;
	font-size: 13px; font-weight: 700; letter-spacing: 1.8px;
	text-transform: uppercase; color: var(--ef-dark);
}
.ef-news__more:hover { color: var(--ef-green); }

/* sidebar arhive */
.ef-sidebar h5, .ef-sidebar .ef-section-title__title {
	font-size: 19px; line-height: 24.7px; font-weight: 700; color: var(--ef-dark);
}
.ef-sidebar .ef-widget { margin-bottom: 46px; }
.ef-sidebar form { display: flex; margin-top: 16px; }
.ef-sidebar input[type="search"] {
	flex: 1; padding: 12px 16px; border: 1px solid var(--ef-border);
	font-family: var(--ef-font); font-size: 15px; background: #fff;
}
.ef-sidebar button {
	border: 0; background: var(--ef-green); color: #fff;
	padding: 0 18px; cursor: pointer; font-weight: 700;
}
.ef-sidebar ul { list-style: none; margin: 16px 0 0; padding: 0; }
.ef-sidebar li { margin-bottom: 14px; line-height: 1.4; }
.ef-sidebar li a { color: var(--ef-dark); font-weight: 700; font-size: 15px; }
.ef-sidebar li a:hover { color: var(--ef-green); }
.ef-sidebar li span { display: block; font-size: 13px; color: #A5ABAB; font-weight: 400; }

/* ------------------------------------------------------- mobilne korekcije */
@media (max-width: 767px) {
	/* slika proizvoda na mobilnom prati sirinu, ne fiksnih 493px */
	.ef-product__media { height: auto; aspect-ratio: 650 / 572; }
	.ef-carousel--grid .ef-product__media { aspect-ratio: 1 / 1; }

	.ef-carousel--list .ef-news__title { font-size: 24px; line-height: 30px; }

	.ef-person__name .ef-section-title__title {
		font-size: 30px; line-height: 34px; margin-top: 0; padding-top: 10px;
	}

	.ef-cta .ef-section-title__title,
	.ef-cta__title .ef-section-title__title { font-size: 26px; line-height: 30px; }

	.ef-page-hero__title .elementor-heading-title { font-size: 34px; }
	.ef-page-hero__chevron svg { width: 22px; height: 22px; }

	.ef-header__right { align-items: flex-start; }
	.ef-header__mail { font-size: 15px; line-height: 18px; }

	.ef-postnav { flex-direction: row; gap: 12px; }
	.ef-postnav a { font-size: 12px; }
}

/* ==================================================== BOCNI PANEL ("⋮")
   Original: 318px sirok, klizi zdesna preko sadrzaja.
   Sekcija je deo footer sablona -> ostaje editabilna u Elementoru.
   ==================================================================== */

.ef-panel {
	position: fixed;
	top: 0; right: 0;
	width: 318px;
	max-width: 88vw;
	height: 100vh;
	overflow-y: auto;
	z-index: 9999;
	transform: translateX(100%);
	visibility: hidden;
	transition: transform .45s cubic-bezier(.2, .7, .2, 1), visibility .45s;
	box-shadow: -20px 0 60px rgba(0, 0, 0, .25);
}
.ef-panel.is-open { transform: translateX(0); visibility: visible; }
.ef-panel > .elementor-container { max-width: 100%; }

.ef-panel__text p { color: var(--ef-footer-text); font-size: 16px; line-height: 26px; }
.ef-panel__text strong { color: var(--ef-white); }
.ef-panel__contact .elementor-heading-title,
.ef-panel__contact .elementor-heading-title a {
	color: var(--ef-white);
	font-size: 24px;
	line-height: 24px;
	font-weight: 700;
}
.ef-panel__contact .elementor-heading-title a:hover { color: var(--ef-green); }

.ef-socials--panel { margin-top: 26px; }
.ef-socials--panel a { border-color: rgba(255, 255, 255, .25); color: var(--ef-white); }

.ef-panel__close {
	position: absolute; top: 18px; right: 18px;
	width: 34px; height: 34px;
	background: none; border: 0; cursor: pointer;
	color: var(--ef-white); font-size: 26px; line-height: 1;
}
.ef-panel__close:hover { color: var(--ef-green); }

.ef-panel-overlay {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0; visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
	z-index: 9998;
}
.ef-panel-overlay.is-open { opacity: 1; visibility: visible; }

/* GTranslate globus u header-u */
.ef-lang .gtranslate_wrapper { display: inline-flex; align-items: center; }
.ef-lang .gt_switcher_wrapper, .ef-lang .gsatelites { display: inline-flex; gap: 8px; }
.ef-lang img { width: 24px; height: 24px; }

/* ============================================== HEADER ZA STRANICE TIMA (beo) */

.ef-header--single { position: relative; }
.ef-header--single a,
.ef-header--single .hfe-nav-menu a.hfe-menu-item { color: var(--ef-dark); }
.ef-header--single .hfe-nav-menu a.hfe-menu-item:hover { color: var(--ef-green); }
.ef-header--single .ef-more-btn { color: var(--ef-dark); }
.ef-header--single .ef-header__logo img { width: 100px; }

.ef-header__right--single {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
}
.ef-header__right--single .ef-header__cta { padding: 13px 40px; color: var(--ef-white); }
.ef-header--single .ef-lang img { filter: none; }

/* ================================================= STRANICA ČLANA TIMA */

/* fotografija je visa od svog reda i prelazi preko sledecih sekcija
   (original: 634x950 dok je red visok 253) */
.ef-team-photo { position: relative; }
.ef-team-photo > .elementor-widget-wrap { position: static; }
.ef-team-photo .elementor-widget-image {
	position: absolute;
	top: 0; left: 0;
	width: 634px;
	max-width: 100%;
	z-index: 1;
}
.ef-team-photo img {
	width: 634px;
	max-width: 100%;
	height: 950px;
	object-fit: cover;
	display: block;
}
.ef-team-row { min-height: 253px; }

/* progress barovi */
.ef-team-skills .elementor-widget-progress { margin-bottom: 26px; }
.ef-team-skills .elementor-title {
	font-size: 16px; font-weight: 700; color: var(--ef-dark);
	display: block; margin-bottom: 8px;
}
.ef-team-skills .elementor-progress-wrapper {
	height: 4px; background: #E3E6E5; border-radius: 0; overflow: visible;
}
.ef-team-skills .elementor-progress-bar {
	height: 4px; background: var(--ef-green); position: relative;
}
.ef-team-skills .elementor-progress-percentage {
	position: absolute; right: 0; top: -30px;
	font-size: 16px; font-weight: 700; color: var(--ef-dark);
}

/* sivi citat blok preklapa fotografiju zdesna */
.ef-team-quote { position: relative; z-index: 2; }
.ef-team-quote > .elementor-container { margin-left: 537px; max-width: 759px; }

.ef-dropcap {
	float: left;
	font-size: 46px;
	line-height: 40px;
	font-weight: 700;
	color: var(--ef-dark);
	margin: 2px 6px 0 0;
}

@media (max-width: 1024px) {
	.ef-team-photo .elementor-widget-image { position: static; width: 100%; }
	.ef-team-photo img { width: 100%; height: auto; }
	.ef-team-quote > .elementor-container { margin-left: 0; max-width: 100%; }
	.ef-team-row { min-height: 0; }
}

/* ime člana tima: original 57px / 62.7px */
.ef-team-name .ef-section-title__title {
	font-size: 57px;
	line-height: 62.7px;
	letter-spacing: -0.57px;
}

/* html widget u koloni sa alatkama mora da zauzme punu sirinu da bi
   poravnanje udesno radilo */
.ef-header__tools .elementor-widget-html,
.ef-header__tools .elementor-widget { width: 100%; }

/* naslov "Contact Form" — original 47px / 51px */
.ef-team-contact .ef-section-title__title,
.ef-section-title__title.ef-contact-form-title { line-height: 51px; }

/* Beli header: tekst menija mora da bude taman. Ista specificnost kao pravilo
   za tamni header, pa je ovde pojacana duplim klasama. */
.ef-header.ef-header--single a,
.ef-header.ef-header--single .hfe-nav-menu a.hfe-menu-item,
.ef-header.ef-header--single .ef-header__menu a,
.ef-header.ef-header--single .ef-more-btn { color: var(--ef-dark); }

.ef-header.ef-header--single .hfe-nav-menu a.hfe-menu-item:hover,
.ef-header.ef-header--single .ef-more-btn:hover { color: var(--ef-green); }

.ef-header.ef-header--single .ef-header__cta,
.ef-header.ef-header--single .ef-header__cta:hover { color: var(--ef-white); }

/* ------------------------------------------------------------- paginacija */
.ef-pagination {
	display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
	margin-top: 20px;
}
.ef-pagination a, .ef-pagination span {
	min-width: 46px; height: 46px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--ef-border);
	font-size: 15px; font-weight: 700; color: var(--ef-dark);
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.ef-pagination a:hover,
.ef-pagination .current {
	background: var(--ef-green); border-color: var(--ef-green); color: var(--ef-white);
}

/* --------------------------------------------- mobilne korekcije, 2. prolaz */
@media (max-width: 767px) {
	/* naslovi sekcija: original je na mobilnom 26px/30px */
	h1, h2, h1.elementor-heading-title, h2.elementor-heading-title,
	.ef-section-title__title,
	h2.ef-section-title__title { font-size: 26px; line-height: 30px; letter-spacing: -0.26px; }
	.ef-team-name .ef-section-title__title { font-size: 26px; line-height: 30px; }
	.ef-page-hero__title .elementor-heading-title { font-size: 30px; line-height: 34px; }

	/* proizvodi: sirina slajda i visina slike moraju da nadjacaju
	   inline selektore widgeta (oni nisu responsive) */
	.ef-carousel--products .ef-carousel__slide:nth-child(odd),
	.ef-carousel--products .ef-carousel__slide:nth-child(even) {
		flex: 0 0 88% !important;
	}
	.ef-carousel--products .ef-product__media,
	.ef-carousel--grid .ef-product__media {
		height: auto !important;
		aspect-ratio: 650 / 572 !important;
	}
	/* mreza proizvoda: original na mobilnom daje kvadratne slike i uzi razmak */
	.ef-carousel--grid .ef-carousel__track { gap: 15px; }
	.ef-carousel--grid .ef-carousel__slide .ef-product__media {
		aspect-ratio: 350 / 339 !important;
	}

	/* kontakt kartica */
	.wpcf7 .ef-form { gap: 22px 0; }
	.wpcf7 textarea { height: 80px; }
	.wpcf7 .ef-form__submit { margin-top: 8px; }

	/* footer: manji razmaci izmedju kolona */
	.ef-office p { line-height: 2.2em; }
	.ef-footer__about { margin-right: 0 !important; }

	/* bocni panel preko celog ekrana */
	.ef-panel { width: 100%; max-width: 100%; }
}

/* Mobilni header: kolone moraju da ostanu u jednom redu (Elementor ih
   podrazumevano slaze jednu ispod druge) — original je red od 76px. */
@media (max-width: 767px) {
	.ef-header > .elementor-container {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
	}
	.ef-header > .elementor-container > .elementor-column { width: auto; }
	.ef-header__menu { flex: 0 0 auto; }
	.ef-header__tools { flex: 1 1 auto; }
	.ef-header .elementor-column > .elementor-widget-wrap { padding: 0; }

	.ef-header__logo img { width: 130px; }
	.ef-header--single .ef-header__logo img { width: 110px; }

	.ef-header__icons { gap: 14px; padding-right: 0; }
	.ef-icon-btn svg { width: 26px; height: 26px; }
	.ef-icon-btn.ef-panel-toggle svg { width: 20px; height: 20px; }

	.ef-header--inner .ef-header__right { flex-direction: row; align-items: center; gap: 12px; }
	.ef-header--inner .ef-header__toprow .ef-header__mail { display: none; }
	.ef-header__cta { padding: 10px 18px; font-size: 12px; }
}

/* ------------------------------------ mobilni: podstranice, 3. prolaz */
@media (max-width: 767px) {
	/* kartice osoba: nizi razmaci */
	.ef-person { margin-bottom: 26px; }
	.ef-person__name .ef-section-title__title { margin-top: 0; padding-top: 8px; }
	.ef-person__role p { margin-top: 2px; }
	.ef-person__contact p { line-height: 26px; }

	/* logotipi clanova grupe: dva u redu umesto pet ispod */
	.ef-members > .elementor-container { flex-wrap: wrap; }
	.ef-members > .elementor-container > .elementor-column { width: 50%; }
	.ef-members img { max-height: 64px; }
	.ef-company img { max-height: 80px; }

	/* CTA blok */
	.ef-cta .elementor-button { padding: 14px 28px; }

	/* arhiva vesti */
	.ef-carousel--list .ef-carousel__slide { margin-bottom: 22px; }
	.ef-carousel--list .ef-news__title { font-size: 22px; line-height: 27px; margin-bottom: 8px; }
	.ef-news__cat { margin: 14px 0 8px; }
	.ef-news__more { margin-top: 10px; }
	.ef-news__excerpt { margin-top: 10px; }
	.ef-sidebar .ef-widget { margin-bottom: 30px; }

	/* sertifikati / dugacak tekst — original na mobilnom koristi
	   razmak izmedju pasusa 16px i obostrano poravnanje */
	p { margin-bottom: 16px; }
	.ef-longform ul, .ef-longform ol { margin-left: 18px; }
	.ef-longform li { margin-bottom: 5px; }
	.elementor-widget-text-editor, .ef-longform, .ef-section-title__descr { text-align: justify; }
	.ef-section-title--center .ef-section-title__descr,
	.ef-title-center-descr .ef-section-title__descr { text-align: center; }
}

/* Mobilni gutter: original drzi sadrzaj na 350px unutar 390px viewporta
   (20px sa svake strane). Bez ovoga slike idu od ivice do ivice i sekcije
   su vise nego na originalu. */
@media (max-width: 767px) {
	/* samo sekcije koje same nemaju mobilni padding (naslovna ga vec ima) */
	.ef-gutter > .elementor-container { padding-left: 20px; padding-right: 20px; }
	.ef-person { margin-bottom: 10px; }
}

/* --------------------------------------- mobilni: podstranice, 4. prolaz */
@media (max-width: 767px) {
	/* logotipi firmi: original ih na mobilnom slaze 2 u redu, visina 54px */
	.ef-companies > .elementor-container { flex-wrap: wrap; }
	.ef-companies > .elementor-container > .elementor-column { width: 50%; }
	.ef-company img { max-height: 54px; width: auto; }
	.ef-company .elementor-widget-text-editor p { font-size: 14px; line-height: 22px; }

	.ef-person { margin-bottom: 0; }
}

/* --------------------------------------- mobilni: podstranice, 5. prolaz */
@media (max-width: 767px) {
	/* kartica osobe: original je na mobilnom oko 30px niza po osobi */
	.ef-person__name .ef-section-title__title { padding-top: 0; margin-top: -14px; }
	.ef-person__role p { margin-top: 0; font-size: 15px; line-height: 24px; }
	.ef-person__contact { margin-top: 6px !important; }
	.ef-person__contact p { line-height: 24px; font-size: 14px; }
}

/* stranice proizvoda: navigacija Prev/Next je na originalu tesnija */
.ef-pf-body .ef-postnav { margin-top: 8px; padding-top: 16px; }


/* ============================== TEHNICKE SPECIFIKACIJE (stranica proizvoda)
   Original: leva kolona sirine 447px, naslov 33px/35.6px, labela 134px siroka,
   red visok 28px sa razmakom 11px.
   ==================================================================== */

.ef-specs__title {
	font-size: 33px;
	line-height: 35.6px;
	font-weight: 700;
	color: var(--ef-dark);
	margin: 0 0 25px;
}

.ef-specs__list { margin: 0; }

.ef-specs__row {
	display: flex;
	align-items: baseline;
	gap: 0;
	margin-bottom: 11px;
}

.ef-specs__row dt {
	flex: 0 0 134px;
	max-width: 134px;
	font-size: 17.85px;
	line-height: 28.05px;
	font-weight: 700;
	color: var(--ef-dark);
	margin: 0;
}

.ef-specs__row dd {
	flex: 1 1 auto;
	font-size: 17px;
	line-height: 28.05px;
	color: var(--ef-body);
	margin: 0;
}

@media (max-width: 767px) {
	.ef-specs__title { font-size: 24px; line-height: 28px; margin-bottom: 16px; }
	.ef-specs { margin-bottom: 30px; }
	.ef-specs__row dt { flex-basis: 120px; max-width: 120px; font-size: 16px; }
	.ef-specs__row dd { font-size: 16px; }
}

/* deljenje ispod specifikacija (original ima X, Facebook, LinkedIn, link) */
.ef-share { display: flex; gap: 18px; align-items: center; margin-top: 26px; }
.ef-share a { color: var(--ef-dark); display: inline-flex; }
.ef-share a:hover { color: var(--ef-green); }
.ef-share svg { width: 17px; height: 17px; }

/* --------------------------------------- mobilni: podstranice, 6. prolaz */
@media (max-width: 767px) {
	.ef-specs__row { margin-bottom: 6px; }
	.ef-specs { margin-bottom: 18px; }
	.ef-share { margin-top: 14px; }
	.ef-pf-body .ef-postnav { margin-top: 4px; padding-top: 12px; }

	/* stranica clana tima */
	.ef-team-quote > .elementor-container { margin-left: 0; }
	.ef-team-skills .elementor-widget-progress { margin-bottom: 18px; }
	.ef-team-photo img { margin-bottom: 14px; }
}

/* --------------------------------------- mobilni: dugacak tekst, 7. prolaz */
@media (max-width: 767px) {
	.ef-longform h1, .ef-longform h2 { margin: 24px 0 12px; }
	.ef-longform h3, .ef-longform h4 { margin: 20px 0 10px; }
	.ef-longform .wp-block-image { margin: 12px 0; }
	.ef-longform .wp-block-gallery { margin: 14px 0; gap: 6px; }
	.ef-longform figcaption { margin-top: 4px; font-size: 12px; line-height: 17px; }
}
