/*
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.2.25.1749455298
Updated: 2025-06-09 09:48:18
*/

/* ──────────────────────────────────────
   GLOBAL RESET
   ────────────────────────────────────── */
*{margin:0;padding:0;}

/* ──────────────────────────────────────
   Slider – zaokrąglenie ramek
   ────────────────────────────────────── */
div#n2-ss-3 .n2-ss-slider-2{border-radius:10px!important;}

/* ──────────────────────────────────────
   Menu - kursor dla pustych linków
   ────────────────────────────────────── */
.menu-item.menu-item-has-children > a:not([href]){cursor:pointer;}

/* ──────────────────────────────────────
   Akordeon mobilny – pełny link
   ────────────────────────────────────── */
@media(max-width:768px){
  .mobile-full-link .eael-image-accordion-hover{position:relative;}
  .mobile-full-link .eael-image-accordion-hover .overlay-inner>a{
    position:absolute;inset:0;z-index:10;width:100%;height:100%;
    text-indent:-9999px;background:rgba(0,0,0,0);
  }
}

/* ──────────────────────────────────────
   Ustawienia mega menu - sticky top
   ────────────────────────────────────── */
.sticky-mega-menu {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    transition: height 0.3s ease-in-out !important;
}
#masthead {
    position: sticky !important;
    top: 0 !important;
    transition: all 0.3s ease-in-out !important;
}
#masthead.is-sticky .sticky-mega-menu {
    height: 80px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* ───────────────────────────────────────────────
   Zmiana pozycji ikony cookies - tylko na mobile (<768px)
   ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cky-btn-revisit-wrapper.cky-revisit-bottom-left {
    left: auto !important;
    right: 24px !important;
    bottom: 74px !important;
    top: auto !important;
  }
}

/* ───────────────────────────────────────────────
   Reset podkreślenia w submenu
   ─────────────────────────────────────────────── */
.header-navigation .header-menu-container ul ul li.menu-item, .header-menu-container ul.menu > li.kadence-menu-mega-enabled > ul > li.menu-item > a{
	border-bottom:none;
}

/* ──────────────────────────────────────
   Hover-preview "przyklejone zdjęcie" - data-position warunkuje położenie zdjęcia
   ────────────────────────────────────── */
.sticky-preview {
	position: fixed;
	width: 250px;
	pointer-events: none;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 9999;
}

.sticky-preview--visible {
	opacity: 1;
}

/* ─────────────────────────────────────────
   ANIMACJE – hero + mini-karty (Aktualności page)
   ───────────────────────────────────────── */
.glassy {animation:heroIn .8s ease-out both;}

.blog-cards .wpr-grid-item.hidden{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .4s ease-out, transform .4s ease-out;
  will-change:opacity,transform;
}

.blog-cards .wpr-grid-item.reveal{
  animation:cardIn .4s ease-out forwards;
  animation-delay:calc(var(--i)*.15s);
}
/* mobile */
@media(max-width:767px){
  .blog-cards .wpr-grid-item.reveal{
	  animation:cardIn .3s ease-out forwards;
  	  animation-delay:calc(var(--i)*.03s);
	}
}
@media (prefers-reduced-motion: reduce){
  .glassy,
  .blog-cards .wpr-grid-item{ animation: none !important; transition: none !important; }
}

@keyframes cardIn{
  from{opacity:0;transform:translateY(32px);}
  to  {opacity:1;transform:translateY(0);}
}

@keyframes heroIn{from{opacity:0;transform:translateY(40px)}
                  to  {opacity:1;transform:translateY(0)}}

/* ─────────────────────────────────────────
   FIXED PARALLAX EFFECT FOR BACKGROUND IMG GLOBAL
   ───────────────────────────────────────── */
.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  position: relative;
}

/* ─────────────────────────────────────────
   CUSTOM BREADCRUMBS SHORTCODE STYLES CSS
   ───────────────────────────────────────── */
.custom-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.6em;
    font-size: 15px;
    color: #888;
}

.custom-breadcrumb-item {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-text,
.breadcrumb-link {
    white-space: nowrap;
    color: #757575;
    text-decoration: none;
}

/* Link */
.breadcrumb-link {
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: #666;
}

/* Bieżąca strona */
.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Separator */
.breadcrumb-separator {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    color: #bbb;
    font-weight: normal;
}

/* Mobile */
@media (max-width: 600px) {
    .custom-breadcrumbs {
        font-size: 14px;
        gap: 0.4em;
    }
}

/* ──────────────────────────────────────
   Three.js diagram > struktura kapitału page
   ────────────────────────────────────── */
.diagram-container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	background: #fff;
	border-radius: 6px;
	opacity: 0;
	animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.diagram-container canvas {
	width: 100% !important;
	height: auto !important;
	display: block;
}

.diagram-legend {
	margin-top: 20px;
}

@media (max-width: 768px) {
	.diagram-container {
		padding: 30px 15px;
	}
}

/* ──────────────────────────────────────
   Shortcode ogłoszeń - strona akcjonariat > ogłoszenia (lista)
   ────────────────────────────────────── */
@keyframes wpr-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in-out {
	0%, 10% {
		opacity: 0;
	}
	20%, 80% {
		opacity: 1;
	}
	90%, 100% {
		opacity: 0;
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.custom-posts-list,
.custom-posts-list ul,
.custom-posts-list ol {
	margin: 0 !important;
	padding: 0 !important;
	padding-left: 0 !important;
}

.custom-posts-container .custom-posts-list,
.custom-posts-container .custom-posts-list ul,
.custom-posts-container .custom-posts-list ol {
	margin: 0 !important;
	padding: 0 !important;
	padding-left: 0 !important;
}

.custom-posts-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.custom-posts-container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.custom-posts-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.custom-posts-item {
	opacity: 0;
	transform: translateY(10px);
	animation: wpr-fade-up 0.35s ease-out forwards;
	animation-play-state: paused;
}

.custom-posts-item.is-in {
	animation-play-state: running;
	animation-delay: calc(var(--i, 0) * 100ms);
}

.custom-posts-item.no-motion {
	opacity: 0;
	transform: translateY(0);
	transition: opacity 0.35s ease-out;
	transition-delay: calc(var(--i, 0) * 100ms);
}

.custom-posts-item.no-motion.visible {
	opacity: 1;
}

.custom-posts-item-link {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background: #f0f8fc;
	border: none;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: background-color 0.2s ease;
	min-height: 160px;
}

.custom-posts-item-link:hover {
	background: #e8f3f9;
}

.custom-posts-title {
	margin: 0 0 6px 0;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
}

.custom-posts-date {
	margin: 0 0 10px 0;
	font-size: 13px;
	color: #999;
	font-weight: 400;
}

.custom-posts-excerpt {
	margin: 0 0 12px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	flex-grow: 1;
}

.custom-posts-read-more {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	font-size: 14px;
	color: #007dc3;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
	cursor: pointer;
}

.custom-posts-item-link:hover .custom-posts-read-more {
	color: #005a99;
}

.custom-posts-pagination {
	text-align: center;
	margin-top: 30px;
	padding: 10px 20px;
	box-sizing: border-box;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-posts-load-more {
	padding: 10px 20px;
	background: transparent;
	color: #666;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.custom-posts-load-more:hover {
	background: #f9f9f9;
	border-color: #bbb;
	color: #333;
}

.custom-posts-load-more:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.custom-posts-load-more.loading {
	display: none;
}

.custom-posts-loader {
	width: 40px;
	height: 40px;
	border: 3px solid #f0f8fc;
	border-top-color: #007dc3;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: none;
	margin: 0 auto;
}

.custom-posts-loader.show {
	display: block;
}

.custom-posts-message {
	text-align: center;
	padding: 20px;
	color: #999;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.custom-posts-message.show {
	opacity: 1;
	animation: fade-in-out 5.8s ease-in-out forwards;
}

.custom-posts-message.no-animation {
	opacity: 1 !important;
	animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.custom-posts-item {
		animation: none !important;
		opacity: 0;
		transform: translateY(0);
		transition: opacity 0.35s ease-out;
		transition-delay: calc(var(--i, 0) * 100ms);
	}

	.custom-posts-item.no-motion {
		animation: none !important;
		opacity: 0;
		transform: translateY(0);
		transition: opacity 0.35s ease-out;
		transition-delay: calc(var(--i, 0) * 100ms);
	}

	.custom-posts-loader {
		animation: none !important;
		border-top-color: #999;
		opacity: 0.6;
	}

	.custom-posts-message.show {
		animation: none !important;
		opacity: 1 !important;
	}
}

@media (max-width: 1024px) {
	.custom-posts-container {
		padding: 0 16px;
	}

	.custom-posts-pagination {
		padding: 10px 16px;
	}
}

@media (max-width: 768px) {
	.custom-posts-container {
		padding: 0 12px;
	}

	.custom-posts-item-link {
		min-height: 140px;
		padding: 16px;
	}

	.custom-posts-title {
		font-size: 16px;
	}

	.custom-posts-date {
		font-size: 12px;
	}

	.custom-posts-excerpt {
		font-size: 13px;
	}

	.custom-posts-read-more {
		font-size: 13px;
	}

	.custom-posts-pagination {
		padding: 10px 12px;
	}

	.custom-posts-message {
		padding: 20px 12px;
	}
}

/* ──────────────────────────────────────
   Single.php styles
   ────────────────────────────────────── */
/* === FEATURED HERO === */
.artykul-featured-hero {
	position: relative;
	height: 350px;
	overflow: hidden;
	background: #e5e7eb;
	width: 100%;
}

.artykul-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.artykul-hero-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	pointer-events: none;
}

.artykul-kontener {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: -40px auto 0 auto;
	background: #fff;
	padding: 40px;
}

/* === ARTICLE === */
.artykul-single {
	background: transparent;
	border: none;
	box-shadow: none;
	margin-bottom: 0;
	padding: 0;
}

/* === HEADER === */
.artykul-header {
	padding: 20px 0 20px 0;
	border-bottom: 2px solid #f3f4f6;
	margin-bottom: 30px;
}

.artykul-meta-gora {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.artykul-data {
	font-size: 0.95rem;
	color: #6b7280;
	font-weight: 500;
}

.artykul-kategorie {
	font-size: 0.9rem;
	color: #007dc3;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.artykul-kategorie a {
	color: #007dc3;
	text-decoration: none;
}

.artykul-kategorie a:hover {
	color: #0056a0;
}

.artykul-tytul {
	font-size: 1.9rem;
	font-weight: 500;
	color: #1f2937;
	line-height: 1.3;
	margin: 0;
}

/* === CONTENT === */
.artykul-zawartosc {
	padding: 0;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #374151;
	margin-bottom: 30px;
}

.artykul-zawartosc p {
	margin-bottom: 15px;
}

.artykul-zawartosc h2,
.artykul-zawartosc h3,
.artykul-zawartosc h4 {
	color: #1f2937;
	font-weight: 700;
	margin-top: 25px;
	margin-bottom: 12px;
}

.artykul-zawartosc h2 {
	font-size: 1.75rem;
	padding-bottom: 10px;
	border-bottom: 2px solid #007dc3;
}

.artykul-zawartosc h3 {
	font-size: 1.35rem;
}

.artykul-zawartosc strong {
	color: #007dc3;
	font-weight: 700;
}

.artykul-zawartosc a {
	color: #007dc3;
	text-decoration: none;
}

.artykul-zawartosc a:hover {
	text-decoration: underline;
}

.artykul-zawartosc ul,
.artykul-zawartosc ol {
	margin: 15px 0;
	padding-left: 25px;
}

.artykul-zawartosc li {
	margin-bottom: 8px;
}

.artykul-zawartosc blockquote {
	border-left: 4px solid #007dc3;
	padding-left: 15px;
	margin: 20px 0;
	color: #6b7280;
	font-style: italic;
}

.artykul-zawartosc img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.artykul-paginacja {
	padding: 15px;
	text-align: center;
	border-top: 1px solid #e5e7eb;
	font-weight: 600;
	background: #f9fafb;
	margin: 20px 0;
}

/* === FOOTER === */
.artykul-footer {
	padding: 20px 0 10px;
	margin: 30px 0 0;
	border-top: 1px solid #e5e7eb;
}

.artykul-tagi {
	margin-bottom: 15px;
}

.artykul-tagi strong {
	color: #1f2937;
	margin-right: 10px;
	display: block;
	margin-bottom: 10px;
}

.tag-badge {
	display: inline-block;
	background: #e8f0f7;
	color: #007dc3;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	margin-right: 8px;
	margin-bottom: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.tag-badge:hover {
	background: #fff;
	border: 1px solid #007dc3;
	box-shadow: 0 2px 8px rgba(0, 125, 195, 0.15);
}

/* === AUTOR === */
.artykul-autor {
	display: flex;
	gap: 15px;
	padding: 15px;
	background: #f9fafb;
	border-radius: 8px;
	margin-top: 15px;
}

.artykul-autor-avatar {
	flex-shrink: 0;
}

.artykul-autor-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.artykul-autor-info h4 {
	margin: 0 0 5px 0;
	color: #1f2937;
	font-size: 1.1rem;
}

.artykul-autor-info p {
	margin: 0;
	color: #6b7280;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* === NAWIGACJA === */
.artykul-nawigacja {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 0;
	padding: 15px 0 0;
}

.artykul-nav-link {
	padding: 15px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 120px;
	justify-content: space-between;
}

.artykul-nav-link:hover {
	background: #fff;
	border-color: #007dc3;
	box-shadow: 0 4px 12px rgba(0, 125, 195, 0.15);
}

.artykul-nav-label {
	font-size: 0.85rem;
	color: #6b7280;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
}

.artykul-nav-tytul {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.3;
}

.artykul-nav-link:hover .artykul-nav-tytul {
	color: #007dc3;
}

/* === POWIĄZANE WPISY === */
.artykul-powiazane {
	background: #f8fafc;
	padding: 50px 0;
	margin: 50px 0 0 0;
	position: relative;
	z-index: 2;
	width: 100vw;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.artykul-powiazane-tytul {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 30px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #007dc3;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}

/* === SIATKA POWIĄZANYCH === */
.artykul-powiazane-siatka {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.artykul-powiazany-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.artykul-powiazany-item:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.artykul-powiazany-image {
	height: 200px;
	overflow: hidden;
	background: #e5e7eb;
}

.artykul-powiazany-image a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.artykul-powiazany-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.artykul-powiazany-item:hover .artykul-powiazany-image img {
	transform: scale(1.05);
}

.artykul-powiazany-content {
	padding: 16px;
}

.artykul-powiazany-title {
	margin: 0 0 10px 0;
	font-size: 1rem;
	font-weight: 600;
	color: #1f2937;
	line-height: 1.4;
}

.artykul-powiazany-title a {
	color: #1f2937;
	text-decoration: none;
}

.artykul-powiazany-title a:hover {
	color: #007dc3;
}

.artykul-powiazany-date {
	font-size: 0.85rem;
	color: #6b7280;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.artykul-kontener {
		padding: 25px;
		margin-top: -30px;
	}

	.artykul-tytul {
		font-size: 1.5rem;
	}

	.artykul-zawartosc {
		font-size: 1rem;
	}

	.artykul-nawigacja {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.artykul-powiazane-tytul {
		font-size: 1.1rem;
		padding-left: 20px;
		padding-right: 20px;
	}

	.artykul-powiazane-siatka {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.artykul-kontener {
		padding: 16px;
		margin-top: -25px;
	}

	.artykul-tytul {
		font-size: 1.35rem;
	}

	.artykul-zawartosc {
		font-size: 0.95rem;
	}

	.artykul-powiazane {
		padding: 30px 0;
	}

	.artykul-powiazane-tytul {
		font-size: 1rem;
		padding-left: 16px;
		padding-right: 16px;
	}

	.artykul-powiazane-siatka {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0 16px;
	}

	.artykul-powiazany-image {
		height: 150px;
	}
}

/* cookie compianz - ikona */
#cmplz-manage-consent .cmplz-manage-consent{
	min-width:50px !important;
	padding: 10px !important;
}
.cmplz-show::before {
	content: "";
    display: inline-block;
	width: 34px;
    height: 34px;
    background-image: url('/wp-content/uploads/2025/12/cookies-icon-e1765192633674.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cmplz-show{
	display:flex;
	align-items: center;
	justify-content:center;
	font-size: 0;
}
@media(max-width:767px){
	#cmplz-manage-consent .cmplz-manage-consent {
  		right: 25px !important;
  		left: initial !important;
	}
	.cmplz-show::before{
		width: 30px;
    	height: 30px;
	}
}