*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

button {
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

/*-------------------------------------FONTS-------------------------------------*/
.pismo  { font-family: 'Inter', sans-serif; }
.pismo2 { font-family: 'JetBrains Mono', monospace; }

/*-------------------------------------COLORS-------------------------------------*/
.silno-modra {
	color: #1C2430;
}
.silno-modra-pozadie {
	background-color: #1C2430;
}
.cervena {
	color: #E32D2D;
}
.cervena-pozadie {
	background-color: #E32D2D;
}
.cervena-pozadie2 {
	background-color: rgba(227, 45, 45, 0.1);
}
.biela {
	color: #FFFFFF;
}
.biela-pozadie {
	background-color: #FFFFFF;
}	
.cierna	{
	color: #000000;
}	
.cierna-pozadie {
	background-color: #000000;
}
.seda {
	color: #a8a5a5;
}
.seda-pozadie {
	background-color: #a8a5a5;
}
.pozadie {
	background-color: #f4f6f8;
}
/*-------------------------------------UTILITIES-------------------------------------*/
.line-height1-6  { line-height: 1.6; }
.line-height1-65 { line-height: 1.65; }
.opacity-50  { opacity: 0.5; }
.opacity-55  { opacity: 0.55; }
.opacity-65  { opacity: 0.65; }
.opacity-68  { opacity: 0.68; }
.opacity-80  { opacity: 0.8; }
.flex-noshrink { flex-shrink: 0; }
.let-space-1-2 { letter-spacing: 1.2px; }
.box-shadow {
	box-shadow: 0px 4px 20px 0px rgba(28, 36, 48, 0.30);
}
/*----------------------------------------HEADER----------------------------------------*/
.logo {
	max-width: 110px;
	width: 100%;
	height: auto;
}

.site-header {
	position: relative;
	z-index: 1000;
}

/* Header bar layout */
.header-bar-inner {
	padding: 18px 40px;
	gap: 24px;
}

.header-logo {
	display: block;
	flex-shrink: 0;
}

.header-right {
	gap: 14px;
	margin-left: auto;
}

.header-cta {
	display: inline-block;
	padding: 11px 22px;
	font-size: 14px;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.header-cta:hover {
	opacity: 0.88;
}

/* ---- Hamburger ---- */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
	transition: background 0.2s ease;
}

.hamburger:hover {
	background: rgba(255, 255, 255, 0.13);
}

.hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Nav links: hover color + animated underline ---- */
.main-nav {
	gap: 34px;
}

.nav-link {
	position: relative;
	padding-bottom: 3px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	transition: color 0.25s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #E32D2D;
	transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.is-active {
	color: #E32D2D;
}

.nav-link:hover::after,
.nav-link.is-active::after {
	width: 100%;
}

.nav-chevron {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.nav-link.is-active .nav-chevron {
	transform: rotate(180deg);
}

/* ---- Desktop Megamenu ---- */
.megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #0c1520;
	border-top: 3px solid #E32D2D;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 999;
}

.megamenu.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.megamenu-inner {
	padding: 38px 40px 42px;
}

.megamenu-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 0.8fr 0.8fr 0.9fr;
	gap: 0 36px;
}

.megamenu-col {
	padding-right: 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.megamenu-col:last-child {
	border-right: none;
	padding-right: 0;
}

.megamenu-cat-link {
	letter-spacing: 0.7px;
	margin-bottom: 18px;
	transition: color 0.2s ease;
}

.megamenu-cat-dot {
	width: 7px;
	height: 7px;
	background-color: #E32D2D;
	border-radius: 50%;
	flex-shrink: 0;
}

.megamenu-cat-link:hover {
	color: #E32D2D;
}

.megamenu-sub-list {
	gap: 12px;
}

.megamenu-sub-list li a {
	font-size: 13.5px;
	color: #5f8aa8;
	line-height: 1.4;
	display: block;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.megamenu-sub-list li a:hover {
	color: #ffffff;
	padding-left: 6px;
}

.megamenu-standalone-heading {
	display: block;
	letter-spacing: 1.4px;
	margin-bottom: 14px;
}

.megamenu-standalone-links {
	gap: 7px;
}

.megamenu-standalone-item {
	font-size: 13.5px;
	color: #b8d0e4;
	padding: 10px 13px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.megamenu-standalone-item svg {
	opacity: 0.45;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.megamenu-standalone-item:hover {
	background: rgba(227, 45, 45, 0.1);
	color: #ffffff;
	border-color: rgba(227, 45, 45, 0.28);
}

.megamenu-standalone-item:hover svg {
	opacity: 1;
	transform: translateX(3px);
}

/* ---- Mobile breakpoint ---- */
@media (max-width: 1000px) {
	.header-bar-inner {
		padding: 14px 20px;
	}
	.main-nav {
		display: none;
	}
	.header-cta {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.megamenu {
		display: none !important;
	}
}

/* ============================================================
   MOBILE NAV
   ============================================================ */

/* Backdrop */
.mobile-nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	z-index: 1999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.is-open {
	opacity: 1;
	pointer-events: all;
}

/* Drawer */
.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: min(360px, 92vw);
	height: 100%;
	background: #141c28;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.mobile-nav.is-open {
	transform: translateX(0);
}

/* Drawer header */
.mobile-nav-head {
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
}

.mobile-nav-close {
	width: 36px;
	height: 36px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	transition: background 0.2s ease;
}

.mobile-nav-close:hover {
	background: #E32D2D;
}

/* Scrollable body */
.mobile-nav-body {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
}

/* Top-level nav link (button or a) */
.mobile-nav-link {
	width: 100%;
	padding: 17px 20px;
	font-size: 13.5px;
	letter-spacing: 0.4px;
	color: #ffffff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-align: left;
	transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-link:hover {
	color: #E32D2D;
	background: rgba(255, 255, 255, 0.02);
}

.mobile-nav-link--emergency {
	color: #E32D2D;
}

.mobile-nav-link--emergency:hover {
	background: rgba(227, 45, 45, 0.07);
}

/* Services accordion panel */
.mobile-services-panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.42s ease;
	background: rgba(0, 0, 0, 0.22);
}

.mobile-services-panel.is-open {
	max-height: 1400px;
}

/* Category group */
.mobile-cat-group {
	border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.mobile-cat-header {
	padding-left: 28px;
	padding-right: 12px;
}

/* Category name = link */
.mobile-cat-link {
	padding: 14px 0;
	font-size: 10.5px;
	letter-spacing: 0.7px;
	color: #a8c4d8;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.mobile-cat-link:hover {
	color: #ffffff;
}

/* Chevron toggle button */
.mobile-cat-toggle {
	width: 34px;
	height: 34px;
	color: #5f8aa8;
	border-radius: 6px;
	transition: color 0.2s ease, background 0.2s ease;
}

.mobile-cat-toggle:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
}

/* Sub-links list */
.mobile-cat-links {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
	list-style: none;
}

.mobile-cat-links.is-open {
	max-height: 500px;
}

.mobile-cat-links li a {
	display: block;
	padding: 10px 20px 10px 52px;
	font-size: 13px;
	color: #4d7a96;
	line-height: 1.45;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-cat-links li a:hover {
	color: #ffffff;
	padding-left: 58px;
}

/* Standalone section */
.mobile-standalone-section {
	padding: 18px 20px 12px 28px;
}

.mobile-standalone-label {
	display: block;
	letter-spacing: 1.4px;
	margin-bottom: 12px;
}

.mobile-standalone-link {
	padding: 11px 4px;
	font-size: 14px;
	color: #8fb8d0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: color 0.2s ease;
}

.mobile-standalone-link:last-child {
	border-bottom: none;
}

.mobile-standalone-link:hover {
	color: #E32D2D;
}

.mobile-standalone-link svg {
	opacity: 0.35;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-standalone-link:hover svg {
	opacity: 1;
	transform: translateX(3px);
}

/* Footer CTA */
.mobile-nav-footer {
	padding: 16px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
	display: block;
	text-align: center;
	padding: 14px 20px;
	font-size: 14.5px;
	letter-spacing: 0.2px;
	transition: opacity 0.2s ease;
}

.mobile-cta:hover {
	opacity: 0.88;
}
/*-------------------------------HOMEPAGE;-------------------------------*/
@media (max-width: 1130px) {
    .f8 {
        margin-left: -18px;
    }
}
.l1 {
    background-color: #115679;
    padding: 10px;
    fill: white;
    color: white;
    border-radius: 11px;
    transition: all 0.5s ease;
}
.l1:hover {
    transform: scale(1.1);
}
@media (max-width: 400px) {
    .l1 {
        padding: 6px;
    }
}


.btn-cervena {
	display: inline-flex;
	align-items: center;
	padding: 14px 26px;
	background-color: #E32D2D;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}
.btn-cervena:hover { opacity: 0.85; }
.btn-biela {
	display: inline-flex;
	align-items: center;
	padding: 14px 26px;
	border: 1px solid #E32D2D;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}
.btn-biela:hover { opacity: 0.85; }

.btn-tmava {
	display: inline-flex;
	align-items: center;
	padding: 14px 26px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	transition: background 0.2s ease;
}
.btn-tmava:hover { background: rgba(255, 255, 255, 0.14); }

/* .pozadie-blur uses column-middle column-center in HTML */

.urgentny-karta {
	background: rgba(10, 18, 30, 0.75);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	padding: 36px 34px;
	max-width: 430px;
	width: 100%;
}

.hero-phone-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hero-divider {
	width: 1px;
	align-self: stretch;
	background: rgba(255, 255, 255, 0.15);
}

.pozadie1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url(/wp-content/uploads/2026/06/dodavka-pracovnik-DgJtURnf.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.pozadie2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/6b0b38b1-2519-471d-8e43-7d0106e676d4.jpeg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}
.pozadie3 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/0a12933c-d5c1-41f9-8600-332b1489b8c6.jpeg');
	background-size: cover;
	background-position: bottom;
	width: 100%;
	height: 100%;
}
.pozadie4 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/48b78cbf-ce0b-4118-9edc-69c38b9d40af-scaled.jpeg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}
.pozadie5 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/novostavba-rd-10.jpg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}
.pozadie6 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/1769624752236-oj82n432of.png');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}

.pozadie7 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/1769183194971-djkw054pdyq.jpeg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}
.pozadie8 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/rekonstrukcia-bytu-trebisov2-06.jpg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}
.pozadie9 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/novostavba-rd-03.jpg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}

.pozadie20 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('/wp-content/uploads/2026/07/rekonstrukcia-bytu-trebisov-07-scaled.jpg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}






.ikona {
	    width: 17px;
    height: 17px;
    fill: #E32D2D;
}

/* --- Sekcia: spoločné --- */
.sekcia-linka {
	width: 95px;
	height: 3px;
	border-radius: 2px;
}

/* --- Sekcia: Naše Služby --- */
.sekcia-sluzby {
	padding: 80px 40px;
	background-color: #f4f5f7;
}

/* Desktop: Swiper vyzerá ako grid */
@media (min-width: 1001px) {
	.sluzby-swiper {
		overflow: visible;
	}
	.sluzby-swiper .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		transform: none !important;
		transition: none !important;
		width: 100% !important;
	}
	.sluzby-swiper .swiper-slide {
		width: auto !important;
		margin-right: 0 !important;
	}
	.sluzby-swiper .swiper-pagination {
		display: none;
	}
}

/* Mobil: Swiper slider */
@media (max-width: 1000px) {
	.sekcia-sluzby { padding: 60px 20px; }
	.sluzby-swiper { padding-bottom: 44px !important; }
	.sluzby-swiper .swiper-pagination-bullet {
		background: #1C2430;
		opacity: 0.3;
	}
	.sluzby-swiper .swiper-pagination-bullet-active {
		background: #E32D2D;
		opacity: 1;
	}
}

.sluzby-karta {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sluzby-karta:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.sluzby-img {
	position: relative;
	overflow: hidden;
}

.sluzby-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.sluzby-ikona-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 38px;
	height: 38px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.sluzby-obsah {
	padding: 24px;
	flex: 1;
}

.sluzby-link {
	display: inline-flex;
	margin-top: auto;
	transition: gap 0.2s ease;
}

.sluzby-link:hover { gap: 8px; }

.sluzby-karta--tmava {
	background: #1C2430;
}

.sluzby-img-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 30, 0.5);
}


.sekcia-preco {
	padding: 80px 40px;
	background-color: #ffffff;
}

.preco-obrazky {
	position: relative;
	height: 420px;
	flex-shrink: 0;
}

.preco-img-zadny,
.preco-img-predny {
	position: absolute;
	border-radius: 12px;
	object-fit: cover;
}

.preco-img-zadny {
	left: 0;
	bottom: 0;
	width: 50%;
	height: 340px;
	z-index: 1;
}

.preco-img-predny {
	right: 0;
	top: 0;
	width: 58%;
	height: 380px;
	z-index: 2;
}

.preco-badge {
	position: absolute;
	bottom: 0;
	left: 46%;
	transform: translateX(-50%);
	z-index: 3;
	background: #1C2430;
	border-radius: 10px;
	padding: 16px 22px;
}

.preco-ikona {
	width: 36px;
	height: 36px;
	align-items: flex-start;
	padding-top: 2px;
}

.btn-navy {
	display: inline-flex;
	align-items: center;
	padding: 16px 32px;
	background-color: #1C2430;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}

.btn-navy:hover { opacity: 0.85; }

@media (max-width: 1000px) {
	.sekcia-preco { padding: 60px 20px; }
	.preco-obrazky { height: 320px; }
	.preco-img-zadny { height: 260px; }
	.preco-img-predny { height: 290px; }
}

@media (max-width: 767px) {
	.preco-obrazky { height: 260px; width: 100%; }
}

.sekcia-recenzie {
	padding: 80px 40px;
	background-color: #f4f5f7;
}

.recenzie-hviezdy {
	color: #F5A623;
	font-size: 22px;
	letter-spacing: 3px;
}

.recenzie-karta {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 28px;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.recenzie-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.recenzie-avatar--tmava { background-color: #1C2430; }
.recenzie-avatar--cervena { background-color: #E32D2D; }

.recenzie-swiper {
	padding-bottom: 44px !important;
}

.recenzie-swiper .swiper-wrapper {
	align-items: stretch;
}

.recenzie-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.recenzie-swiper .swiper-pagination-bullet {
	background: #1C2430;
	opacity: 0.3;
}

.recenzie-swiper .swiper-pagination-bullet-active {
	background: #E32D2D;
	opacity: 1;
}

@media (max-width: 1000px) {
	.sekcia-recenzie { padding: 60px 20px; }
}

/*-------------------------------SEKCIA CTA-------------------------------*/
.sekcia-cta {
    padding: 80px 20px;
    background-color: #0e1620;
}

.cta-karta {
    padding: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-buttony {
    min-width: 180px;
}

.btn-outline-biela {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline-biela:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
    .sekcia-cta { padding: 60px 20px; }
    .cta-karta { padding: 32px 24px; }
    .cta-buttony { width: 100%; }
    .btn-outline-biela { width: 100%; }
}

/*-------------------------------PAGE: ELEKTROINSTALACIE-------------------------------*/

.elektro-hero-text {
    max-width: 580px;
}

.sluzby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.sluzby-foto-wrap {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    min-height: 370px;
}

.sluzby-foto-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.karta-rodinne {
    background: #eef2f6;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.karta-rekonstrukcie {
    padding: 40px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.odstup-elektro {
	padding: 40px 36px;
}

.karta-projekty {
    grid-column: 2 / 4;
    padding: 40px 32px;
    background-image: linear-gradient(rgba(10,18,30,0.86), rgba(10,18,30,0.86)), url('/wp-content/uploads/2026/06/projekt1.png');
    background-size: cover;
    background-position: center;
}

.karta-ikona-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(227,45,45,0.08);
}

/* .karta-check-list uses column-pc directly in HTML */

.karta-check-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.karta-bullet-list {
    gap: 5px;
}

.karta-bullet-list li {
    padding-left: 13px;
    position: relative;
    color: #5a6878;
    line-height: 1.45;
}

.karta-bullet-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #E32D2D;
    font-size: 18px;
    line-height: 1;
}

.btn-outline-biely {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 7px;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline-biely:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* NAŠE SLUŽBY */

.nase-sluzby-sekcia {
    background: #f4f6f8;
}

.sekcia-cara {
    width: 42px;
    height: 3px;
    border-radius: 2px;
}

.nase-sluzby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Swiper variant – desktop: grid layout override */
@media (min-width: 768px) {
    .nase-sluzby-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        transform: none !important;
    }
    .nase-sluzby-swiper .swiper-slide {
        width: auto !important;
        height: auto !important;
    }
    .nase-sluzby-pagination {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .nase-sluzby-swiper .swiper-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .nase-sluzby-swiper--2col .swiper-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .nase-sluzby-swiper {
        padding-bottom: 36px !important;
    }
    .nase-sluzby-swiper .sluzba-karta {
        height: 100%;
    }
}

.sluzba-karta {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sluzba-karta:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}

.sluzba-karta-ikona {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(227,45,45,0.07);
}

.sluzba-karta--zvyraznena {
    border-color: #E32D2D;
}

@media (max-width: 900px) {
    .nase-sluzby-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .nase-sluzby-grid {
        grid-template-columns: 1fr;
    }
    .sluzba-karta {
        padding: 24px 20px;
    }
}

@media (max-width: 900px) {
    .sluzby-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sluzby-foto-wrap {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 280px;
    }
    .karta-rodinne { grid-column: 1; grid-row: 2; }
    .karta-rekonstrukcie { grid-column: 2; grid-row: 2; }
    .karta-priemysel { grid-column: 1; grid-row: 3; }
    .karta-projekty { grid-column: 2; grid-row: 3; }
}

@media (max-width: 575px) {
    .sluzby-grid {
        grid-template-columns: 1fr;
    }
    .sluzby-foto-wrap {
        grid-column: 1;
        height: 240px;
    }
    .karta-rodinne,
    .karta-rekonstrukcie,
    .karta-priemysel,
    .karta-projekty {
        grid-column: 1;
        grid-row: auto;
        padding: 28px 24px;
    }
}

/*-------------------------------UTILITY-------------------------------*/

.text-szeda   { color: #5a6878; }
.biela-opacity { color: rgba(255,255,255,0.72); }
.line-height1-55 { line-height: 1.55; }
.max-w-460    { max-width: 460px; }
.max-w-560    { max-width: 560px; }
.max-w-820    { max-width: 820px; }

/*-------------------------------PAGE: BLESKOZVODY-------------------------------*/

.nase-sluzby-grid--2col {
    grid-template-columns: 1fr 1fr;
}

.typy-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.typy-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.sluzba-karta--tmava {
    background: #1C2430;
    border-color: rgba(255,255,255,0.08);
}

.sluzba-karta--tmava:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.sluzba-karta-ikona--navy    { background: #1C2430; }
.sluzba-karta-ikona--amber   { background: #F59E0B; }
.sluzba-karta-ikona--green   { background: #22C55E; }
.sluzba-karta-ikona--cervena { background: #E32D2D; }

.sekcia-realizujeme {
    background-color: #1C2430;
    padding: 80px 40px;
}

.realizujeme-objekty {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.realizujeme-ikona {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
}

.realizujeme-cta {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 40px;
}

.btn-outline-tmava {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    border: 1px solid rgba(28,36,48,0.25);
    border-radius: 8px;
    color: #1C2430;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline-tmava:hover {
    background: rgba(28,36,48,0.05);
    border-color: rgba(28,36,48,0.45);
}

@media (max-width: 1000px) {
    .sekcia-realizujeme { padding: 60px 20px; }
}

@media (max-width: 900px) {
    .typy-grid-top    { grid-template-columns: 1fr; }
    .typy-grid-bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .typy-grid-bottom    { grid-template-columns: 1fr; }
    .realizujeme-objekty { grid-template-columns: repeat(2, 1fr); }
    .realizujeme-cta     { padding: 28px 24px; }
}



.preco-my-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
}


.preco-my-feature-ikona {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(227,45,45,0.08);
    margin-top: 2px;
}

.preco-my-foto-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d1420;
}

.preco-my-foto-wrap img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.preco-my-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13,20,32,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 16px 22px;
}

/*-------------------------------CTA DARK-------------------------------*/

.cta-dark-sekcia {
    background: #0d1420;
    position: relative;
    overflow: hidden;
}

.cta-dark-inner {
    position: relative;
    z-index: 2;
}

.cta-lightning {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: auto;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

/*-------------------------------GALÉRIA PRÁC-------------------------------*/

.galeria-sekcia {
    background: #0d1420;
}

.galeria-header {
    flex-wrap: wrap;
}

.galeria-swiper {
    padding-bottom: 44px !important;
}

.galeria-swiper .swiper-wrapper {
    align-items: stretch;
}

.galeria-swiper .swiper-slide {
    height: auto;
}

.galeria-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.3;
}

.galeria-swiper .swiper-pagination-bullet-active {
    background: #E32D2D;
    opacity: 1;
}

.galeria-karta {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    height: 100%;
    min-height: 380px;

}

.galeria-karta img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    aspect-ratio: 2 / 1;
}

.galeria-karta:hover img {
    transform: scale(1.04);
}

.galeria-karta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,15,26,0.88) 100%);
    padding: 28px;
    pointer-events: none;
}

.galeria-karta-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #1a2535;
}

/*-------------------------------BLOG LISTING-------------------------------*/

.blog-hero {
    background: #0d1420;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-karta {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    background: #ffffff;
}

.blog-karta:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.blog-karta-obr {
    height: 210px;
    overflow: hidden;
}

.blog-karta-obr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-karta:hover .blog-karta-obr img {
    transform: scale(1.05);
}

.blog-karta-obsah {
    padding: 24px;
}

.blog-karta-datum {
    color: #9ba8b4;
    letter-spacing: 0.5px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1C2430;
    background: #f4f6f8;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #E32D2D;
    color: #ffffff;
}

.blog-pagination .page-numbers.dots {
    background: transparent;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .galeria-karta,
    .galeria-karta img,
    .galeria-karta-placeholder {
        min-height: 280px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-filter {
    flex-wrap: wrap;
}

.blog-filter-pill {
    padding: 10px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    color: #1C2430;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-filter-pill:hover {
    border-color: rgba(227, 45, 45, 0.35);
}

.blog-filter-pill.is-active {
    background: #E32D2D;
    border-color: #E32D2D;
    color: #ffffff;
}

/*------------------------------------REvizie elektroinstalacii------------------------------------*/
.krok-cislo {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
}

.revizie-nadpis {
	border-bottom: #E32D2D 5px solid;
	width: 100%;
	max-width: 80px;
	height: 20px;
}
.pozadie10 {
	background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.85)), url('/wp-content/uploads/2026/06/precizne-meranmie.png');
	width: 100%;
	height: 100%;
	min-height: 370px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.pozadie11 {
	background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.85)), url('/wp-content/uploads/2026/06/revizia.png');
	width: 100%;
	height: 100%;
	min-height: 370px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.nase-sluzby-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.obrazok30 {
	width: 100%;
	height: 100%;
	max-width: 500px;
}
@media (max-width: 767px) {
	.obrazok30 {
		align-self: center;
	}
}

/*------------------------------------Havarijná služba------------------------------------*/
.poruchy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.poruchy-karta--velka {
    grid-row: 1 / 3;
}

.poruchy-ikona {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(227, 45, 45, 0.08);
}

@media (max-width: 900px) {
    .poruchy-grid {
        grid-template-columns: 1fr 1fr;
    }
    .poruchy-karta--velka {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .poruchy-grid {
        grid-template-columns: 1fr;
    }
    .poruchy-karta--velka {
        grid-column: 1;
    }
}

/*------------------------------------Jadrové vŕtanie------------------------------------*/
.prednosti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .prednosti-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .prednosti-grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------Havarijná – výhody + CTA kontakt------------------------------------*/
.vyhody-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.v1 {
        background-color: rgba(34, 197, 94, 0.1);
}
.v2 {
        background-color: rgba(59, 130, 246, 0.1);
}
.v3 {
        background-color: rgba(249, 115, 22, 0.1);
        
}
.v4 {
        background-color: rgba(168, 85, 247, 0.1);
}
.s1 {
    background: linear-gradient(to right, rgb(17, 86, 121), rgba(17, 86, 121, 0.8));
}
.s2 {
background-color: rgba(255, 255, 255, 0.2);
}
.s10 {
    font-size: 16px!important;
    font-weight: 800!important;
    padding: 10px 30px !important;
}
.fluentform .ff-el-input--label {
    margin-bottom: 15px!important;
}
.vyhoda-ikona {
    width: 52px;
    height: 52px;
    border-radius: 20%;
   
}

.havarijna-cta-karta {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 36px;
    max-width: 560px;
}

.zelena { color: #22c55e; }

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-green 1.6s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 767px) {
    .vyhody-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .havarijna-cta-karta {
        padding: 24px 20px;
    }
}

/*------------------------------------Výroba rozvádzačov – proces + CTA------------------------------------*/
.krok-cislo--tmava {
	background-color: #1C2430;
}

.proces-kroky {
	position: relative;
}

.proces-kroky::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 42px;
	bottom: 42px;
	width: 2px;
	background: rgba(28, 36, 48, 0.12);
}

.krok-item {
	position: relative;
	z-index: 1;
}

.dostupnost-box {
	border-left: 3px solid #E32D2D;
	padding: 14px 18px;
	background: rgba(227, 45, 45, 0.04);
	border-radius: 0 8px 8px 0;
}

.cta-rozvadze {
	padding: 64px 20px;
	text-align: center;
}

.cta-rozvadze .btn-cervena,
.cta-rozvadze .btn-tmava {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/*------------------------------------Jadrové vŕtanie – proces + cenník + kontakt------------------------------------*/
.btn-biely {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: 8px;
    background: #fff;
    transition: background 0.2s ease;
}

.btn-biely:hover {
    background: #f0f2f4;
}

.proces-2col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.cena-karta {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.cena-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cena-polozka {
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.cena-polozka:last-child {
    border-right: none;
}

.kontakt-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    max-width: 860px;
    margin: 0 auto;
}

.kontakt-split-forma {
    background: #fff;
    padding: 48px 40px;
}

.kontakt-split-info {
    background: #1C2430;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.forma-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #7a8a99;
    margin-bottom: 5px;
}

.forma-input,
.forma-textarea {
    width: 100%;
    border: 1px solid #dce2e9;
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 14px;
    color: #1C2430;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.forma-input:focus,
.forma-textarea:focus {
    border-color: #E32D2D;
}

.forma-textarea {
    resize: vertical;
    min-height: 96px;
}

.forma-riadok {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.forma-sprava {
    border-radius: 8px;
    padding: 0;
    display: none;
}

.forma-sprava:not(:empty) {
    display: block;
    padding: 10px 14px;
}

.forma-sprava--ok {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.forma-sprava--chyba {
    background: rgba(227, 45, 45, 0.08);
    color: #E32D2D;
}

@media (max-width: 900px) {
    .proces-2col {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 767px) {
    .cena-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cena-polozka:nth-child(2) {
        border-right: none;
    }
    .cena-polozka:nth-child(1),
    .cena-polozka:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .kontakt-split {
        grid-template-columns: 1fr;
    }
    .kontakt-split-forma {
        padding: 36px 24px;
    }
    .kontakt-split-info {
        padding: 36px 24px;
    }
    .forma-riadok {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------Page: Kontakt------------------------------------*/
.kontakt-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kontakt-lokality-list {
    flex-wrap: wrap;
    gap: 12px;
}

.kontakt-lokalita-chip {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 9px 20px;
}

@media (max-width: 900px) {
    .kontakt-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .kontakt-info-grid {
        grid-template-columns: 1fr;
    }
}

/*-----------------------------FOOTER-----------------------------*/
.logo-footer {
	width: 100%;
	height: auto;
	max-width: 100px;
}
.ikona-footer {
	width: 30px;
	height: 30px;
	fill: white;
}
.ikona-footer2 {
	width: 26px;
	height: 30px;
	fill: white;
}
.ikona-footer3 {
	width: 26px;
	height: 26px;
	fill: red;
}
.oddelovac-footer {
	border: 1px solid #434343;
}

/*-------------------------------------BLOG ČLÁNOK (SINGLE)-------------------------------------*/

.clanok-breadcrumb a:hover {
    color: #ffffff;
}

.clanok-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.clanok-obr {
    border-radius: 14px;
    overflow: hidden;
    max-height: 520px;
}

.clanok-obr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clanok-nav-link {
    flex: 1;
    padding: 20px 24px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.clanok-nav-link:hover {
    border-color: rgba(227, 45, 45, 0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.clanok-nav-link--dalsi {
    text-align: right;
    align-items: flex-end;
}

/* ---- Obsah článku (Gutenberg bloky) ---- */

.entry-content {
    font-size: 16px;
    line-height: 1.75;
    color: #3f4a58;
}

.entry-content > * + * {
    margin-top: 22px;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content h2 {
    font-size: 27px;
    font-weight: 800;
    color: #1C2430;
    line-height: 1.35;
    margin-top: 52px;
}

.entry-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1C2430;
    line-height: 1.4;
    margin-top: 40px;
}

.entry-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1C2430;
    margin-top: 32px;
}

.entry-content p {
    font-size: 16px;
    line-height: 1.75;
}

.entry-content a {
    color: #E32D2D;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    opacity: 0.8;
}

.entry-content strong,
.entry-content b {
    font-weight: 700;
    color: #1C2430;
}

.entry-content ul {
    list-style: disc;
    padding-left: 22px;
}

.entry-content ol {
    list-style: decimal;
    padding-left: 22px;
}

.entry-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.entry-content li > ul,
.entry-content li > ol {
    margin-top: 8px;
}

.entry-content blockquote {
    border-left: 4px solid #E32D2D;
    padding: 6px 0 6px 22px;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: #1C2430;
}

.entry-content img {
    border-radius: 12px;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.entry-content img:hover {
    opacity: 0.92;
}

.falco-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 26, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.falco-lightbox.is-open {
    display: flex;
}

.falco-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    cursor: default;
}

.falco-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}

.entry-content figure {
    margin: 0;
}

.entry-content .wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
}

.entry-content .wp-block-gallery figure.wp-block-image {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 640px) {
    .entry-content .wp-block-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.entry-content figcaption {
    font-size: 13px;
    color: #8a95a3;
    text-align: center;
    margin-top: 8px;
}

.entry-content hr {
    border: 0;
    border-top: 1px solid #e5e9ee;
    height: 0;
    margin: 44px 0;
}

.entry-content code {
    background: #f4f6f8;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    color: #E32D2D;
}

.entry-content pre {
    background: #1C2430;
    color: #f4f6f8;
    padding: 22px;
    border-radius: 10px;
    overflow-x: auto;
}

.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.entry-content th,
.entry-content td {
    padding: 12px 14px;
    border: 1px solid #e5e9ee;
    text-align: left;
}

.entry-content th {
    background: #f4f6f8;
    font-weight: 700;
    color: #1C2430;
}

.entry-content iframe,
.entry-content video {
    max-width: 100%;
    border-radius: 10px;
}

.entry-content .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    background: #E32D2D;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.entry-content .wp-block-button__link:hover {
    opacity: 0.85;
}

@media (max-width: 575px) {
    .entry-content h2 { font-size: 22px; }
    .entry-content h3 { font-size: 19px; }
    .clanok-nav-link--dalsi {
        text-align: left;
        align-items: flex-start;
    }
}
.wp-block-heading {
    margin-bottom: 20px;
}
.wp-block-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
