/* =============================================================== */
/*                                                                 */
/*   PROJECT:     CTM WEBSITE                                      */
/*   VERSION:     3.0 (release date: 30.11.2025)                   */
/*                                                                 */
/*   CLIENT:      OBR CTM S.A. (ctm.gdynia.pl)                     */
/*   AUTHOR:      Szymon Rzepnikowski                              */
/*                                                                 */
/* =============================================================== */


/* ====================== TABLE OF CONTENTS ====================== */
/*



*/
/* =============================================================== */

/* ====================== SECTION 1: BREADCRUMBS ====================== */
.img-radius {
	border-radius: .5rem !important;
	object-fit: cover;
	overflow: hidden;
}

.breadcrumbs {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: calc(var(--ctm-sticky-header-offset, 90px) + 3.5rem);
	background-image: url("../images/bg-banner.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #00263d;
	padding-top: var(--ctm-sticky-header-offset, 90px);
	padding-bottom: 0;
	z-index: 2;
}

.breadcrumbs::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #00263d;
	opacity: 0.7;
	z-index: 1;
}

.breadcrumbs-nav-wrapper {
	position: static;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding: 1rem 0 0.65rem;
	background: rgb(248 250 252 / 94%);
	border-top: 1px solid rgb(255 255 255 / 16%);
	box-shadow: 0 -8px 24px rgb(0 0 0 / 12%);
	z-index: 2;
}

.breadcrumbs-page-head {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.breadcrumbs-page-head :is(h1, h2).page-title {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0 0 0.65rem;
	background: none;
	border-radius: 0;
	color: rgb(0 38 61 / 92%);
	font-size: clamp(1.35rem, 2.8vw, 1.75rem) !important;
	font-weight: 700 !important;
	line-height: 1.25;
	letter-spacing: 0.01em;
	text-transform: none;
	border-bottom: 2px solid #29abe2;
}

.breadcrumbs-page-head .breadcrumb-nav {
	padding-top: 0.15rem;
}

.breadcrumbs .breadcrumb-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.breadcrumbs .breadcrumb-nav::-webkit-scrollbar {
	display: none;
}

.breadcrumbs .breadcrumb-nav li {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	color: rgb(0 38 61 / 52%);
	font-size: 0.75rem;
	line-height: 1.35;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.breadcrumbs .breadcrumb-nav li:last-child {
	color: rgb(0 38 61 / 84%);
	font-weight: 600;
}

.breadcrumbs .breadcrumb-nav li:not(:last-child)::after {
	content: "›";
	margin: 0 0.45rem;
	color: rgb(0 38 61 / 28%);
	font-size: 0.85em;
	font-weight: 400;
}

.breadcrumbs .breadcrumb-nav li a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.breadcrumbs .breadcrumb-nav li a:hover,
.breadcrumbs .breadcrumb-nav li a:focus-visible {
	color: #1e96c4;
	text-decoration: underline;
	text-decoration-color: rgb(41 171 226 / 55%);
	text-underline-offset: 2px;
}

.breadcrumbs .breadcrumb-nav li a.breadcrumb-nav__home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.1rem;
	min-height: 1.1rem;
	color: rgb(0 38 61 / 58%);
}

.breadcrumbs .breadcrumb-nav li a.breadcrumb-nav__home:hover,
.breadcrumbs .breadcrumb-nav li a.breadcrumb-nav__home:focus-visible {
	color: #29abe2;
	text-decoration: none;
}

.breadcrumbs .breadcrumb-nav li a.breadcrumb-nav__home i {
	font-size: 0.7rem;
	line-height: 1;
}

@media (max-width: 991px) {
	.breadcrumbs {
		min-height: calc(var(--ctm-sticky-header-offset, 76px) + 2.75rem);
		padding-top: var(--ctm-sticky-header-offset, 76px);
	}

	.breadcrumbs-nav-wrapper {
		padding-top: 0.85rem;
	}

	.breadcrumbs-page-head :is(h1, h2).page-title {
		font-size: 1.2rem !important;
		padding-bottom: 0.55rem;
	}
}

@media (max-width: 767px) {
	.breadcrumbs {
		background-position: left !important;
		min-height: calc(var(--ctm-sticky-header-offset, 76px) + 2.25rem);
	}

	.breadcrumbs-nav-wrapper {
		padding-top: 0.75rem;
		padding-bottom: 0.5rem;
	}

	.breadcrumbs-page-head :is(h1, h2).page-title {
		font-size: 1.125rem !important;
		padding-bottom: 0.5rem;
	}

	.breadcrumbs .breadcrumb-nav li {
		font-size: 0.6875rem;
	}

	/* Mobile: tylko rodzic + bieżąca strona (mniej miejsca, bez zawijania) */
	.breadcrumbs .breadcrumb-nav > li:not(:nth-last-child(2)):not(:last-child) {
		display: none;
	}

	.breadcrumbs .breadcrumb-nav > li:nth-last-child(2) a::before {
		content: none;
	}

	.breadcrumbs .breadcrumb-nav:has(> li:nth-child(3)) > li:nth-last-child(2) a::before {
		content: "‹ ";
		opacity: 0.75;
	}
}

/* ====================== SECTION 1b: HEADER / NAV (nowoczesna nawigacja) ====================== */
:root {
	--ctm-nav-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ctm-nav-scroll-ease: cubic-bezier(0.33, 1, 0.68, 1);
	--ctm-nav-scroll-duration: 0.48s;
	--ctm-nav-transition: var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
	--ctm-nav-interact-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ctm-nav-interact-speed: 0.22s;
	--ctm-nav-accent: #29abe2;
	--ctm-nav-sub-size: 0.6875rem;
	--ctm-nav-mobile-collapse: 0.4s var(--ctm-nav-ease);
	--ctm-nav-mobile-dd-arrow-inset: 0.7rem;
}

.header.navbar-area {
	background: #00263d;
	border-bottom: none;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	transition:
		background-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		box-shadow var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		border-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
}

.header.navbar-area.sticky {
	background: rgb(248 250 252 / 98%);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgb(0 38 61 / 8%);
	box-shadow: 0 4px 24px rgb(0 0 0 / 10%);
}

.header.navbar-area .navbar {
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}

.header .navbar-brand {
	display: inline-flex;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
	flex-shrink: 0;
}

.header .navbar-brand img {
	width: 96px;
	max-height: 2.125rem;
	object-fit: contain;
	opacity: 1;
	transition: opacity calc(var(--ctm-nav-scroll-duration) * 0.65) var(--ctm-nav-scroll-ease);
}

@media (max-width: 767px) {
	.header .navbar-brand img {
		width: 82px;
		max-height: 1.875rem;
	}
}

@media (min-width: 992px) {
	.navbar .navbar-collapse {
		flex-grow: 1;
		min-width: 0;
	}

	.navbar-expand-lg .navbar-nav {
		margin-left: auto !important;
		margin-right: 0 !important;
		flex-wrap: nowrap;
		gap: 0.15rem 0.35rem;
		max-width: 100%;
	}

	.nav-item-main {
		margin-left: 0 !important;
		margin-right: 0 !important;
		flex-shrink: 0;
	}

	.navbar-nav .nav-item-main > a:not(.lang-switch-desktop) {
		color: #fff;
		font-weight: 600;
		padding: 0.55rem 0.8rem;
		letter-spacing: 0.025em;
		border-radius: 0.25rem;
		transition:
			color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
			background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}

	.header .navbar .navbar-nav .nav-item a.active,
	.navbar-nav .nav-item-main > a:not(.lang-switch-desktop).active {
		color: #fff;
	}

	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):focus,
	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):focus-visible {
		outline: none !important;
		box-shadow: none !important;
		text-decoration: none !important;
		background-image: none !important;
	}

	.navbar-nav .nav-item-main > a:not(.lang-switch-desktop):is(:hover, :focus-visible),
	.navbar-nav .nav-item-main > a.dd-menu[aria-expanded="true"] {
		color: var(--ctm-nav-accent);
		background: rgb(255 255 255 / 9%);
	}

	.header.navbar-area.sticky .navbar-nav .nav-item-main > a:not(.lang-switch-desktop) {
		color: #00263d;
	}

	.header.navbar-area.sticky .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):is(:hover, :focus-visible),
	.header.navbar-area.sticky .navbar-nav .nav-item-main > a.dd-menu[aria-expanded="true"] {
		color: var(--ctm-nav-accent);
		background: rgb(41 171 226 / 9%);
	}

	.navbar-nav .nav-item .sub-menu {
		padding: 1rem 1.15rem;
		min-width: 15rem;
		border: 1px solid rgb(0 38 61 / 8%);
		border-radius: 0.5rem;
		box-shadow: 0 12px 32px rgb(0 38 61 / 12%);
	}

	.navbar-nav .nav-item .sub-menu .nav-item {
		margin-bottom: 0.35rem;
	}

	.navbar-nav .nav-item .sub-menu .nav-item a {
		font-size: var(--ctm-nav-sub-size);
		color: rgb(0 38 61 / 72%);
		padding: 0.4rem 0.55rem 0.4rem 0.6rem;
		border-left: 2px solid transparent;
		border-radius: 0.25rem;
		transition:
			color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			border-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}

	.header .navbar-nav .nav-item .sub-menu .nav-item > a:focus,
	.header .navbar-nav .nav-item .sub-menu .nav-item > a:focus-visible {
		outline: none !important;
		box-shadow: none !important;
		text-decoration: none !important;
		background-image: none !important;
	}

	.navbar-nav .nav-item .sub-menu .nav-item a:is(:hover, :focus-visible) {
		color: var(--ctm-nav-accent);
		border-left-color: var(--ctm-nav-accent);
		background: rgb(41 171 226 / 9%);
	}
}

.navbar-nav .nav-item-main > a.lang-switch-desktop {
	color: #fff !important;
	background: rgb(255 255 255 / 10%) !important;
	border: 1px solid rgb(255 255 255 / 38%) !important;
	border-radius: 999px !important;
	padding: 0.35rem 0.8rem !important;
	margin-left: 0.35rem;
	display: inline-flex !important;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
	visibility: visible !important;
	opacity: 1 !important;
	transition:
		color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		background-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		border-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
}

.navbar-nav .nav-item-main > a.lang-switch-desktop i,
.navbar-nav .nav-item-main > a.lang-switch-desktop span {
	transition: color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
}

.navbar-nav .nav-item-main > a.lang-switch-desktop i {
	color: #29abe2 !important;
}

.navbar-nav .nav-item-main > a.lang-switch-desktop span {
	color: #fff !important;
}

.navbar-nav .nav-item-main > a.lang-switch-desktop:hover,
.navbar-nav .nav-item-main > a.lang-switch-desktop:focus-visible {
	color: #fff !important;
	background: rgb(255 255 255 / 18%) !important;
	border-color: rgb(41 171 226 / 65%) !important;
}

.header.navbar-area.sticky .navbar-nav .nav-item-main > a.lang-switch-desktop {
	color: #00263d !important;
	background: rgb(255 255 255 / 72%) !important;
	border: 1px solid rgb(0 38 61 / 22%) !important;
}

.header.navbar-area.sticky .navbar-nav .nav-item-main > a.lang-switch-desktop span {
	color: #00263d !important;
}

.header.navbar-area .lang-switch {
	color: #fff !important;
	background: rgb(255 255 255 / 10%) !important;
	border: 1px solid rgb(255 255 255 / 38%) !important;
	border-radius: 999px !important;
	padding: 0.35rem 0.8rem !important;
	transition:
		color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		background-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
		border-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
}

.header.navbar-area .lang-switch i,
.header.navbar-area .lang-switch span {
	transition: color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
}

.header.navbar-area .lang-switch i {
	color: #29abe2 !important;
}

.header.navbar-area .lang-switch span {
	color: #fff !important;
}

.header.navbar-area.sticky .lang-switch,
.header.navbar-area.sticky .lang-switch-desktop {
	color: #00263d !important;
	background: rgb(255 255 255 / 72%) !important;
	border-color: rgb(0 38 61 / 22%) !important;
}

.header.navbar-area.sticky .lang-switch span {
	color: #00263d !important;
}

/* Jasna belka (sticky) — wyraźniejszy hover przełącznika języka */
.header.navbar-area.sticky .navbar-nav .nav-item-main > a.lang-switch-desktop:is(:hover, :focus-visible),
.header.navbar-area.sticky .nav-controls .lang-switch:is(:hover, :focus-visible) {
	color: #00263d !important;
	background: rgb(41 171 226 / 20%) !important;
	border: 2px solid #29abe2 !important;
	box-shadow: 0 0 0 3px rgb(41 171 226 / 24%) !important;
	transition:
		color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		border-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		box-shadow var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.header.navbar-area.sticky .navbar-nav .nav-item-main > a.lang-switch-desktop:is(:hover, :focus-visible) span,
.header.navbar-area.sticky .nav-controls .lang-switch:is(:hover, :focus-visible) span {
	color: #00263d !important;
}

.header.navbar-area.sticky .navbar-nav .nav-item-main > a.lang-switch-desktop:is(:hover, :focus-visible) i,
.header.navbar-area.sticky .nav-controls .lang-switch:is(:hover, :focus-visible) i {
	color: #1a8fbf !important;
}

@media (max-width: 991.98px) {
	.header .mobile-menu-btn .toggler-icon {
		background-color: #fff;
		transition:
			transform var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			opacity var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			top var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			background-color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease);
	}

	.header.navbar-area.sticky .mobile-menu-btn .toggler-icon {
		background-color: rgb(0 38 61 / 85%);
	}

	.header .mobile-menu-btn.active .toggler-icon:nth-of-type(1),
	.header .mobile-menu-btn[aria-expanded="true"] .toggler-icon:nth-of-type(1) {
		transform: rotate(45deg);
		top: 7px;
	}

	.header .mobile-menu-btn.active .toggler-icon:nth-of-type(2),
	.header .mobile-menu-btn[aria-expanded="true"] .toggler-icon:nth-of-type(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.header .mobile-menu-btn.active .toggler-icon:nth-of-type(3),
	.header .mobile-menu-btn[aria-expanded="true"] .toggler-icon:nth-of-type(3) {
		transform: rotate(-45deg);
		top: -7px;
	}

	.header .navbar-collapse {
		background: rgb(248 250 252 / 98%);
		border: 1px solid rgb(0 38 61 / 10%);
		border-top: 1px solid rgb(0 38 61 / 8%);
		border-radius: 0.5rem;
		box-shadow: 0 16px 40px rgb(0 38 61 / 14%);
		scroll-behavior: smooth;
	}

	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop) {
		color: #00263d;
		font-weight: 600;
		padding: 0.65rem 0.55rem;
		border-bottom: 1px solid rgb(0 38 61 / 6%);
		border-radius: 0.25rem;
		transition:
			color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
			background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}

	.header .navbar-nav .nav-item-main > a.dd-menu:not(.lang-switch-desktop) {
		padding-right: calc(0.55rem + 1.35rem + var(--ctm-nav-mobile-dd-arrow-inset));
	}

	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):focus,
	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):focus-visible {
		outline: none !important;
		text-decoration: none !important;
		box-shadow: none !important;
	}

	.header .navbar-nav .nav-item-main > a:not(.lang-switch-desktop):is(:hover, :focus-visible),
	.header .navbar-nav .nav-item-main > a.dd-menu[aria-expanded="true"]:not(.lang-switch-desktop) {
		color: var(--ctm-nav-accent);
		background: rgb(41 171 226 / 9%);
	}

	.header .navbar-nav .nav-item .sub-menu .nav-item a {
		font-size: var(--ctm-nav-sub-size);
		border-left: 2px solid transparent;
		transition:
			color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			border-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}

	.header .navbar-nav .nav-item .sub-menu .nav-item a:is(:hover, :focus-visible) {
		color: var(--ctm-nav-accent);
		background: rgb(41 171 226 / 9%);
		border-left-color: var(--ctm-nav-accent);
	}

	.header .navbar-nav .nav-item a.lang-switch-desktop {
		border-bottom: none;
		margin-top: 0.5rem;
		width: auto;
		align-self: flex-start;
	}

	/* Płynne rozwijanie panelu i podmenu (Bootstrap collapse) */
	.header .navbar-collapse.collapsing {
		transition: height var(--ctm-nav-mobile-collapse) !important;
	}

	.header .navbar-nav .nav-item .sub-menu {
		position: static !important;
		top: auto !important;
		left: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
		min-width: 0;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 0.1rem 0 0.35rem 0.65rem;
		border: none;
		box-shadow: none;
		overflow: hidden;
		transition: none;
	}

	.header .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
		display: none;
	}

	.header .navbar-nav .nav-item .sub-menu.collapse.collapsing,
	.header .navbar-nav .nav-item .sub-menu.collapse.show {
		display: block;
	}

	.header .navbar-nav .nav-item .sub-menu.collapsing {
		transition: height var(--ctm-nav-mobile-collapse) !important;
	}

	.navbar-nav .nav-item a.dd-menu::after {
		right: var(--ctm-nav-mobile-dd-arrow-inset);
		transition:
			transform var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
			opacity var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}

	.header .navbar-nav .nav-item-main > a.dd-menu:not(.lang-switch-desktop) {
		transition:
			color var(--ctm-nav-scroll-duration) var(--ctm-nav-scroll-ease),
			background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-nav .nav-item-main > a:not(.lang-switch-desktop) {
		padding-left: 0.6rem;
		padding-right: 0.6rem;
		font-size: 0.9375rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	:root {
		--ctm-nav-scroll-duration: 0.01ms;
		--ctm-nav-transition: 0.01ms;
		--ctm-nav-interact-speed: 0.01ms;
		--ctm-nav-mobile-collapse: 0.01ms;
	}

	.header .navbar-brand img {
		transition: none;
	}

	.header .mobile-menu-btn .toggler-icon {
		transition: none !important;
	}
}

/* ====================== SECTION 1c: FOOTER ====================== */
.footer {
	position: relative;
	background-color: #00263d;
	padding-bottom: 0 !important;
	box-shadow: inset 0 1px 0 rgb(41 171 226 / 22%);
}

.footer .f-about .brand-row {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin-bottom: 0;
	max-width: none;
}

.footer .social-ctm {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.footer .social-ctm a {
	display: grid;
	place-items: center;
	text-decoration: none;
}

.footer .f-link ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer .f-link li {
	display: block;
}

.footer .f-contact .contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
}

.footer .f-contact .contact-list li {
	display: grid;
	align-items: start;
}

.footer .f-contact .contact-list li.no-icon {
	grid-template-columns: 1fr;
}

.footer .f-contact .contact-list li.no-icon > * {
	grid-column: 1 / -1;
}

.footer .footer-link-text--compact {
	display: none;
}

.footer .copyright-text {
	margin: 0;
}

.footer .copyright-legal-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	max-width: 100%;
	gap: 0;
}

.footer .copyright-legal-nav__list li {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.footer.section {
	padding-top: 2rem !important;
	padding-bottom: 0 !important;
}

.footer .footer-top {
	padding-top: 1.5rem;
	padding-bottom: 1.25rem;
}

.footer .footer-top .row.g-4 {
	--bs-gutter-x: 0.85rem;
	--bs-gutter-y: 0.75rem;
}

@media (min-width: 992px) {
	.footer .footer-top .row.g-4 {
		display: grid;
		grid-template-columns:
			minmax(17rem, 1.2fr)
			minmax(14.75rem, 0.88fr)
			minmax(16.75rem, 1.05fr)
			minmax(13.5rem, 1.05fr);
		width: 100%;
		align-items: start;
		column-gap: clamp(2.25rem, 4.5vw, 5rem);
		row-gap: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.footer .footer-top .row.g-4 > [class*="col-"] {
		width: 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		flex: none;
	}

	.footer .f-link li a {
		white-space: nowrap;
	}
}

.footer .single-footer.f-about {
	padding-right: 0;
	max-width: none;
}

.footer .social-ctm {
	gap: 0.4rem;
}

.footer .single-footer h3 {
	display: inline-block;
	width: auto;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgb(255 255 255 / 46%);
	margin-bottom: 0.35rem;
	padding-bottom: 0.25rem;
	border-bottom: 2px solid rgb(41 171 226 / 28%);
}

.footer .single-footer.f-about p {
	color: #6b7687;
	font-size: 0.8125rem;
	line-height: 1.45 !important;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.footer .f-link li {
	margin-bottom: 0.05rem;
}

.footer .f-link li:last-child {
	margin-bottom: 0;
}

.footer .f-about .brand-row .logo img {
	width: 96px;
	height: auto;
	max-height: 2.125rem;
}

.footer .social-ctm a {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid rgb(255 255 255 / 32%);
	background: rgb(255 255 255 / 8%);
	transition:
		border-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		transform var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.footer .social-ctm i {
	color: #fff;
	font-size: 0.9rem;
	transition: color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.footer .social-ctm a:hover,
.footer .social-ctm a:focus-visible {
	border-color: rgb(41 171 226 / 65%);
	background: rgb(41 171 226 / 14%);
	transform: translateY(-1px);
}

.footer .social-ctm a:hover i,
.footer .social-ctm a:focus-visible i {
	color: #29abe2;
}

.footer .f-link li a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: #6b7687;
	padding: 0.12rem 0.35rem 0.12rem 0.3rem;
	border-left: 2px solid transparent;
	border-radius: 0.25rem;
	line-height: 1.35;
	text-decoration: none;
	position: relative;
	transition:
		color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		border-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.footer .f-link li a:hover,
.footer .f-link li a:focus-visible {
	color: var(--ctm-nav-accent);
	background: rgb(41 171 226 / 10%);
	border-left-color: var(--ctm-nav-accent);
	text-decoration: none !important;
}

.footer .f-link li a .chevron {
	position: static;
	transform: none;
	flex-shrink: 0;
	color: rgb(41 171 226 / 52%);
	font-size: 0.5rem;
	left: auto;
	top: auto;
	line-height: 1;
}

.footer .f-contact {
	color: #6b7687;
	font-size: 0.8125rem;
	line-height: 1.35;
}

.footer .f-contact .org-name {
	color: #6b7687;
	font-size: inherit;
	font-weight: 400;
	line-height: inherit;
}

.footer .f-contact .contact-list {
	gap: 0.12rem;
}

.footer .f-contact .contact-list li {
	column-gap: 0.5rem;
	font-size: inherit;
	line-height: inherit;
	grid-template-columns: 0.75rem 1fr;
}

.footer .f-contact .contact-list li > div {
	font-size: inherit;
	line-height: inherit;
}

.footer .f-contact .contact-list i {
	color: rgb(41 171 226 / 52%);
	font-size: 0.625rem;
	margin-top: 0.2rem;
}

.footer .f-contact .muted-link {
	color: #6b7687;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	transition: color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.footer .f-contact .muted-link:hover,
.footer .f-contact .muted-link:focus-visible {
	color: var(--ctm-nav-accent);
	text-decoration: underline !important;
	text-decoration-color: rgb(41 171 226 / 55%) !important;
	text-underline-offset: 2px;
}

.footer .affil-logo img {
	opacity: 0.55;
}

.footer .affil-logo:hover img,
.footer .affil-logo:focus-visible img {
	opacity: 0.92;
}

/* Dolny pasek — stonowany, w tonacji stopki (bez jasnego kontrastu) */
.footer .copyright-area {
	background: rgb(0 22 36 / 30%);
	border-top: 1px solid rgb(255 255 255 / 7%);
	box-shadow: none;
}

.footer .copyright-area .inner-content {
	border-top: none;
	margin-top: 0;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.footer .copyright-legal-nav__list li:not(:last-child)::after {
	content: "|";
	color: rgb(255 255 255 / 16%);
	margin-left: 0.3rem;
	margin-right: 0.3rem;
}

.footer .copyright-area p,
.footer .copyright-area p a {
	color: #6b7687;
	font-size: 0.625rem;
	transition: color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
}

.footer .copyright-area p a:hover,
.footer .copyright-area p a:focus-visible {
	color: var(--ctm-nav-accent);
}

.footer .copyright-legal-nav__list a {
	color: #6b7687;
	font-size: 0.625rem;
	line-height: 1.25;
	white-space: nowrap;
	transition:
		color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease),
		background-color var(--ctm-nav-interact-speed) var(--ctm-nav-interact-ease);
	border-radius: 0.2rem;
	padding: 0.08rem 0.12rem;
}

@media (min-width: 992px) {
	.footer .copyright-area .row.align-items-center {
		flex-wrap: nowrap;
		gap: 1rem;
	}

	.footer .copyright-area .row.align-items-center > .col-lg-6 {
		flex: 0 1 auto;
		width: auto;
		max-width: none;
	}

	.footer .copyright-area .row.align-items-center > .col-lg-6.text-lg-end {
		flex: 1 1 auto;
		min-width: 0;
	}

	.footer .copyright-legal-nav__list {
		flex-wrap: nowrap;
		justify-content: flex-end;
	}

	.footer .copyright-legal-nav__list li:not(:last-child)::after {
		margin-left: 0.22rem;
		margin-right: 0.22rem;
	}
}

.footer .copyright-legal-nav__list a:hover,
.footer .copyright-legal-nav__list a:focus-visible {
	color: var(--ctm-nav-accent);
	background: rgb(41 171 226 / 9%);
	text-decoration: none !important;
}

@media (max-width: 991px) {
	.footer .copyright-legal-nav__list {
		justify-content: center;
	}

	.footer .copyright-area .text-lg-end {
		text-align: center !important;
	}
}

@media (max-width: 767px) {
	.footer.section {
		padding-top: 1.5rem !important;
	}

	.footer .footer-top {
		padding-top: 1.25rem;
		padding-bottom: 1rem;
	}

	.footer .footer-top .row.g-4 {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 0.5rem;
		row-gap: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.footer .footer-top .row.g-4 > [class*="col-"] {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.footer .footer-top .row.g-4 > .col-12 {
		grid-column: 1 / -1;
	}

	.footer .single-footer {
		margin-top: 1.15rem;
		text-align: center;
	}

	.footer .single-footer.f-about {
		padding: 0;
	}

	.footer .f-about .brand-row {
		justify-content: center;
		margin-bottom: 0.65rem;
	}

	.footer .single-footer.f-about p {
		font-size: clamp(0.5625rem, 2.35vw, 0.6875rem);
		line-height: 1.35 !important;
		margin-bottom: 1rem;
	}

	.footer .single-footer.f-about p .affil-logo img {
		height: 13px !important;
		width: auto;
	}

	.footer .social-ctm a {
		width: 1.625rem;
		height: 1.625rem;
	}

	.footer .social-ctm i {
		font-size: 0.65rem;
	}

	.footer .single-footer.f-link {
		margin-top: 1rem;
		text-align: left;
		height: 100%;
	}

	.footer .single-footer.f-link h3 {
		text-align: left;
	}

	.footer .single-footer.f-link li a {
		align-items: flex-start;
		font-size: clamp(0.5625rem, 2.35vw, 0.6875rem);
		white-space: normal;
	}

	.footer a:has(.footer-link-text--compact) > .footer-link-text:not(.footer-link-text--compact) {
		display: none;
	}

	.footer .footer-link-text--compact {
		display: inline;
	}

	.footer .single-footer.f-link .chevron {
		margin-top: 0.12em;
	}

	.footer .single-footer.f-contact {
		text-align: center;
		font-size: clamp(0.5625rem, 2.35vw, 0.6875rem);
	}

	.footer .single-footer.f-contact h3 {
		text-align: center;
	}

	.footer .f-contact .contact-list {
		gap: 0.45rem;
		justify-items: center;
	}

	.footer .f-contact .contact-list li {
		grid-template-columns: 1.1rem max-content;
		justify-content: center;
	}

	.footer .f-contact .contact-list li.no-icon {
		justify-content: center;
	}

	.footer .f-contact .contact-list i {
		font-size: 0.75rem;
		margin-top: 0.1em;
	}

	.footer .copyright-area .inner-content {
		text-align: center;
	}

	.footer .copyright-area p,
	.footer .copyright-legal-nav__list a,
	.footer .copyright-legal-nav__list li:not(:last-child)::after {
		font-size: clamp(0.5625rem, 2.35vw, 0.6875rem);
	}

	.footer .copyright-legal-nav__list a {
		white-space: normal;
		line-height: 1.25;
	}
}

@media (max-width: 575.98px) {
	.footer .single-footer.f-about p {
		font-size: clamp(0.53125rem, 2.2vw, 0.625rem);
	}

	.footer .single-footer.f-about p .affil-logo img {
		height: 12px !important;
	}

	.footer .social-ctm a {
		width: 1.5rem;
		height: 1.5rem;
	}

	.footer .social-ctm i {
		font-size: 0.6rem;
	}

	.footer .single-footer.f-link li a {
		font-size: clamp(0.53125rem, 2.2vw, 0.625rem);
	}

	.footer .single-footer.f-contact,
	.footer .f-contact .org-name,
	.footer .f-contact .muted-link {
		font-size: clamp(0.53125rem, 2.2vw, 0.625rem);
	}

	.footer .copyright-area p,
	.footer .copyright-legal-nav__list a,
	.footer .copyright-legal-nav__list li:not(:last-child)::after {
		font-size: clamp(0.53125rem, 2.2vw, 0.625rem);
	}

	.footer .f-about .brand-row {
		flex-wrap: wrap;
	}
}

.sitemap-list ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.sitemap-list li {
	position: relative;
	padding-left: 18px;
	margin: 6px 0;
}

.sitemap-list li::before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: rgb(0 38 61 / 65%);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
}

.sitemap-list ul ul {
	margin-top: 4px;
	margin-bottom: 4px;
	margin-left: 18px;
}

.sitemap-list ul ul li::before {
	background-color: rgb(0 38 61 / 65%);
}

.sitemap-list a {
	color: #29abe2;
	text-decoration: none;
	font-size: 15px;
}

.sitemap-list a:hover {
	color: #1a6f90;
}

.sitemap-section-label {
	display: block;
	font-weight: 700;
	color: #081828;
	font-size: 15px;
	margin-bottom: 2px;
}

.firma-section .row {
	min-height: 450px;
}

.gradient-img {
	transform: scale(1.10);

	width: 100%;
	height: auto;
	border-radius: 10px;

	-webkit-mask-image: linear-gradient(to right,
			transparent 0%,
			black 25%,
			black 76%,
			transparent 100%),
		linear-gradient(to bottom,
			black 0%,
			black 70%,
			transparent 100%);

	-webkit-mask-composite: intersect;
	mask-composite: intersect;
}

.update-info {
	opacity: 0.6;
}

/* Zmiany na stronie — wpisy datowane (jak strony prawne #zasady) */
#zasady .site-changelog-table {
	width: 100%;
	margin-top: 0.5rem;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.site-changelog-table thead th {
	padding: 0.85rem 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.55);
	background: rgba(15, 23, 42, 0.03);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-changelog-table tbody td {
	padding: 0.85rem 1rem;
	vertical-align: top;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(15, 23, 42, 0.78);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-changelog-table tbody tr:last-child td {
	border-bottom: none;
}

.site-changelog-table__date {
	width: 9.5rem;
	white-space: nowrap;
	font-weight: 600;
	font-size: 0.82rem;
	color: rgba(15, 23, 42, 0.62);
}

.site-changelog-table__date time {
	font-weight: inherit;
}

#zasady .site-changelog-table__list {
	margin: 0;
	padding-left: 1.35rem;
	list-style: disc;
}

#zasady .site-changelog-table__list li {
	margin-bottom: 0.5rem;
	padding-left: 0.15rem;
}

#zasady .site-changelog-table__list li::marker {
	color: #29abe2;
}

#zasady .site-changelog-table__list li:last-child {
	margin-bottom: 0;
}

.site-changelog-table__row--audit td {
	background: rgba(41, 171, 226, 0.04);
	border-bottom-color: rgba(41, 171, 226, 0.1);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	text-align: center;
}

.site-changelog-table__row--audit .site-changelog-table__audit-main {
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.4;
	font-weight: 400;
	color: rgba(15, 23, 42, 0.65);
}

.site-changelog-table__row--audit .site-changelog-table__audit-tool {
	margin: 0.2rem 0 0;
	font-size: 0.62rem;
	line-height: 1.35;
	font-weight: 400;
	color: rgba(15, 23, 42, 0.48);
}

.site-changelog-table__row--audit .site-changelog-table__audit-tool a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(41, 171, 226, 0.45);
	text-underline-offset: 0.12em;
}

.site-changelog-table-wrap:not(.is-expanded) .site-changelog-table tbody tr:nth-child(n+6) {
	display: none;
}

.site-changelog-table-wrap:not(.is-expanded) .site-changelog-table tbody tr:nth-child(5) td {
	border-bottom: none;
}

.site-changelog-table__toggle {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
	padding: 0.7rem 1rem;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.4;
	color: #29abe2;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(41, 171, 226, 0.35);
	border-radius: 0.5rem;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-changelog-table__toggle:hover {
	background: rgba(41, 171, 226, 0.06);
	border-color: rgba(41, 171, 226, 0.55);
	color: #1f8fbf;
}

.site-changelog-table__toggle:focus-visible {
	outline: 2px solid #29abe2;
	outline-offset: 2px;
}

@media (max-width: 575px) {
	.site-changelog-table thead {
		display: none;
	}

	.site-changelog-table,
	.site-changelog-table tbody,
	.site-changelog-table tr,
	.site-changelog-table td {
		display: block;
		width: 100%;
	}

	.site-changelog-table tbody tr {
		padding: 0.85rem 1rem;
		border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	}

	.site-changelog-table tbody tr:last-child {
		border-bottom: none;
	}

	.site-changelog-table-wrap:not(.is-expanded) .site-changelog-table tbody tr:nth-child(5) {
		border-bottom: none;
	}

	.site-changelog-table tbody td {
		padding: 0;
		border: none;
	}

	.site-changelog-table__date {
		width: auto;
		margin-bottom: 0.35rem;
		font-size: 0.75rem;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		color: rgba(15, 23, 42, 0.45);
	}

	.site-changelog-table__date::before {
		content: attr(data-label) ": ";
		font-weight: 700;
	}
}

/* Deklaracja / strony prawne — h4 pod h3 (semantyka), mniejszy wizualnie niż globalne 25px */
#zasady h4,
#zglaszanie h4 {
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.4;
}

/* main.css: span, a { display: inline-block } — w akapitach wymusza łamanie całego bloku zamiast tekstu */
#zasady p span,
#zasady p a,
#zasady .site-changelog-table a,
#zasady .accordion-body span,
#zasady .accordion-body a,
#zglaszanie p span,
#zglaszanie p a {
	display: inline;
}

/* Deklaracja — dwa bloki kontaktowe jak na stronie Kontakt (karty obok siebie od 992px) */
#zasady .a11y-kontakt-duo {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

@media (min-width: 992px) {
	#zasady .a11y-kontakt-duo {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}

#zasady .a11y-kontakt-duo .contact-card {
	height: 100%;
}

/* Deklaracja — pozostałe informacje: akordeon jak na stronach kariery (FAQ) */
#zasady .a11y-info-accordions {
	margin-top: 0.25rem;
}

@media (max-width: 767px) {
	#zasady .a11y-info-accordions .xs-margin {
		margin-top: 20px !important;
	}
}

#zasady .accordion-header {
	margin-bottom: 0;
}

.col-xl-20 {
	flex: 0 0 20% !important;
	max-width: 20% !important;
}

p.mb-2.small.text-secondary {
	line-height: 1.1rem;
}

/* ====================== SECTION 2: NOTICE-BOXY ====================== */
.notice {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
	color: var(--ink);
	text-decoration: none !important;
	border-radius: 0.5rem;
	padding: 16px;
	min-height: 180px;
	transition: transform .3s ease, box-shadow .3s ease, background-color .25s ease, border-color .25s ease;
	transform: translateY(0);
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

/* Hover: wyraźniejszy niż wcześniej, bez „krzyku”; main.css zeruje obramowanie/cień na a:focus — focus ma !important niżej */
.notice:hover {
	background: rgba(229, 233, 238, 0.92);
	border-color: rgba(0, 38, 61, 0.13) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1) !important;
}

/* Klawiatura: jak hover + bardzo subtelna obwódka w kolorze marki (nadpisuje globalny reset na linkach) */
a.notice:focus-visible {
	outline: none !important;
	text-decoration: none !important;
	background: rgba(229, 233, 238, 0.92);
	border-color: rgba(0, 38, 61, 0.15) !important;
	transform: translateY(-3px);
	box-shadow:
		0 8px 18px rgba(15, 23, 42, 0.1),
		0 0 0 2px rgba(41, 171, 226, 0.45) !important;
}

.notice-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: .6rem;
}

.notice-header time {
	font-size: .85rem;
	color: rgba(40, 60, 80, .4);
}

.notice-actions {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.notice .latest-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .8rem;
	border-radius: .35rem;
	padding: .35rem .6rem;
	line-height: 1;
	white-space: nowrap;
	background: #d63c3c;
	color: #fdfef8;
}

.notice .pdf-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .8rem;
	background: #0d3750;
	border-radius: .35rem;
	padding: .35rem .6rem;
	line-height: 1;
	white-space: nowrap;
	color: #fdfef8;
}

.notice h3 {
	font-weight: 200;
	margin: .4rem 0 0;
	line-height: 1.25;
	color: rgba(40, 60, 80, 0.9);
	font-size: 1.1em;
}

.notice.latest {
	background: rgb(229 233 238);
}

.notice.latest:hover {
	background: rgba(205, 214, 225, 0.88);
	border-color: rgba(0, 38, 61, 0.15) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1) !important;
}

a.notice.latest:focus-visible {
	background: rgba(205, 214, 225, 0.88);
	border-color: rgba(0, 38, 61, 0.17) !important;
	transform: translateY(-3px);
	box-shadow:
		0 8px 18px rgba(15, 23, 42, 0.1),
		0 0 0 2px rgba(41, 171, 226, 0.5) !important;
}

.notice.latest .notice-header time {
	color: rgba(0, 38, 61, .65);
}

.notice.latest h3 {
	color: rgb(0, 45, 70);
	font-weight: 600;
}

@media (prefers-reduced-motion:reduce) {
	.notice {
		transition: none;
	}
}

@media (max-width:420px) {
	.notice-actions {
		gap: .4rem;
	}
}

@media (max-width:480px) {
	.notice {
		min-height: 120px !important;
		padding: 12px;
	}

	.notice h3 {
		font-size: 1rem;
	}

	.notice-header time {
		font-size: .8rem;
	}
}

.reveal {
	transform: translateY(6px);
	transition: opacity .5s ease, transform .5s ease;
}

.reveal.show {
	transform: translateY(0);
}


/* ====================== SECTION 3: BOARD-BOXY + PREZES ====================== */
#czlonkowie .card {
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	background-color: #ffffff !important;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09) !important;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

#czlonkowie .card:hover,
#czlonkowie .card:focus-visible {
	transform: translateY(-2px);
}

#czlonkowie .card:focus {
	outline: none;
}

#czlonkowie .highlight {
	background-color: #E5E9EE !important;
	color: #00324d;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09) !important;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

#czlonkowie .row.g-3 {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 1rem;
}

#czlonkowie .card-body h3 {
	font-size: 1.2em;
	font-weight: 600;
}

#czlonkowie .highlight p {
	opacity: 0.5;
}

#czlonkowie .card-body p {
	opacity: 0.7;
}

.prezes-photo-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.prezes-photo-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg,
			transparent 0%,
			rgba(255, 255, 255, 0.45) 50%,
			transparent 100%);
	transform: skewX(-25deg);
	transition: left 0.8s ease;
	pointer-events: none;
}

.prezes-photo-wrapper:hover::after {
	left: 130%;
}

.prezes-photo-wrapper::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 28%;
	background: linear-gradient(to bottom,
			transparent 0%,
			#f8f9fa 95%);
	pointer-events: none;
	z-index: 2;
}

@media (min-width: 768px) and (max-width: 1024px) {

	.prezes-photo-wrapper {
		max-width: 100%;
	}

	.prezes-photo {
		max-width: 100%;
	}

	.prezes-photo-wrapper::after {
		transition: left 0.6s ease;
	}
}

@media (max-width: 1023px) {

	.prezes-photo-wrapper,
	.prezes-photo-inner,
	.prezes-photo,
	.prezes-accent-circle {
		display: none !important;
	}

	/* On mobile/tablet, reduce the visual gap between consecutive board sections. */
	#prezes {
		padding-bottom: 1.25rem !important;
	}

	#czlonek-zarzadu-jacek,
	#czlonek-zarzadu-anna,
	#board-member-jacek,
	#board-member-anna {
		padding-top: 1rem !important;
	}
}

@media (min-width: 1024px) {
	#prezes {
		padding-bottom: 2rem !important;
	}

	#czlonek-zarzadu-jacek,
	#czlonek-zarzadu-anna,
	#board-member-jacek,
	#board-member-anna {
		padding-top: 1.5rem !important;
	}
}


/* ====================== SECTION 4: OFFER-BOXY ====================== */
.offer-link {
	display: flex;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.offer-box {
	background: #ffffff;
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: stretch;
	cursor: pointer;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.offer-box:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, .35);
}

.offer-content {
	display: flex;
	flex-direction: column;
}

.offer-content h5 {
	font-size: 1rem;
}


.offer-content p:last-child {
	margin-top: auto;
}

.status-strip {
	width: 10px;
	height: 100%;
	margin-left: 1rem;
	flex-shrink: 0;
	border-radius: 0;
}

.status-active {
	background: #28a745;
}

.status-updated {
	background: #ffc107;
}

.status-inactive {
	background: #dc3545;
}

.hover-hint {
	position: absolute;
	bottom: 30px;
	right: 0px;
	transform: translateY(100%);
	font-family: "PT Sans Narrow", sans-serif !important;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 6px 10px;
	font-size: .75rem;
	border-radius: 4px;

	opacity: 0;
	white-space: nowrap;
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 10;
}

.offer-box:hover .hover-hint {
	opacity: 1;
}

@media (max-width: 767.98px) {
	.hover-hint {
		display: none !important;
	}
}

.status-legend {
	font-size: 0.85rem;
	gap: 1rem;
}

.status-legend-item {
	display: inline-flex;
	align-items: center;
	margin: 0 0.5rem 0.25rem;
}

.status-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 6px;
}


.removal-info {
	font-size: 0.75rem;
	opacity: 0.6;
}

@media (max-width: 575.98px) {
	.status-legend {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.35rem;
	}

	.status-legend-item {
		display: flex;
		margin: 0;
	}

	.removal-info {
		padding: 0 1.25rem;
		line-height: 1em;
		margin-top: 1em;
	}
}


/* ====================== SECTION 5: DOWNLOAD-BOXY ====================== */

.downloads-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 10px;
}

.download-item {
	position: relative;
	flex: 0 0 calc(50% - 1.5rem);
	max-width: 260px;
	aspect-ratio: 1 / 1;
	background: #E5E9EE;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem;
	text-decoration: none;
	color: #00263E;
	font-weight: 500;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.download-item:hover {
	transform: translateY(-2px);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.12),
		0 4px 0 0 #29abe2;
}

@media (min-width: 768px) {
	.download-item {
		flex: 0 0 calc(25% - 1.5rem);
	}
}

@media (min-width: 1200px) {
	.download-item {
		flex: 0 0 calc(16.666% - 1.5rem);
	}
}

.file-name {
	display: block;
	padding: 0 0.25rem;
	transition: opacity 0.2s ease;
}

.file-badge {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;

	background: #002F4C;
	color: #ffffff;

	padding: 0.35rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;

	border-radius: 5px;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.download-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0, 47, 76, 0.90);
	color: #ffffff;
	font-size: 2.2rem;

	opacity: 0;
	transition: opacity 0.2s ease;
	border-radius: 0.5rem;
}

.download-item:hover .download-icon {
	opacity: 1;
}

.download-item:hover .file-name,
.download-item:hover .file-badge {
	opacity: 0;
}


/* ====================== SECTION 6: CERT-BOXY ====================== */
.cert-box {
	background-color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.cert-box:hover,
.cert-box:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
	border-color: rgba(15, 23, 42, 0.12);
}

.cert-box-logo {
	display: block;
	flex: 0 0 140px;
	max-width: 140px;
}

.cert-box-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cert-box-content {
	padding: 18px 22px 20px;
}

.cert-box-issuer {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.cert-box-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.cert-box-meta {
	font-size: 0.85rem;
	line-height: 1.3;
	margin-bottom: 12px;
}

.cert-box-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cert-box-buttons .cert-btn {
	border-radius: 0.2rem;
	flex: 0 0 160px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	background-color: #E5E9EE;
	text-decoration: none;
	font-size: 0.85rem;
	color: rgba(0, 0, 0, 0.6);
	white-space: nowrap;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cert-btn:hover {
	transform: translateY(-2px);
}

.cert-btn-label i {
	margin-right: 6px;
}

.cert-btn-separator {
	width: 1px;
	height: 18px;
	background-color: #d0d0d0;
	margin: 0 8px;
}

.cert-btn-icon-right i {
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.cert-box-logo {
		display: none !important;
	}

	.cert-box {
		flex-direction: column;
	}

	.cert-box-content {
		padding: 16px 18px;
	}

	.cert-box-buttons .cert-btn {
		flex-basis: 150px;
	}
}

@media (max-width: 575px) {
	.cert-box-content {
		padding: 14px 16px;
	}

	.cert-box-buttons .cert-btn {
		flex-basis: 140px;
	}
}

.cert-box-buttons .cert-btn:hover {
	background-color: #e9ecef;
}

/* Polityki / certyfikaty (#dokumenty): Tab na kartę, potem na linki PDF — main.css zeruje outline/cień przy a:focus */
#dokumenty .cert-box:focus {
	outline: none !important;
}

#dokumenty .cert-box:focus-visible {
	transform: translateY(-2px);
	box-shadow:
		0 10px 26px rgba(15, 23, 42, 0.1),
		0 0 0 2px rgba(41, 171, 226, 0.45) !important;
	border-color: rgba(41, 171, 226, 0.35);
}

#dokumenty .cert-box-buttons .cert-btn:focus-visible {
	outline: none !important;
	text-decoration: none !important;
	transform: translateY(-2px);
	background-color: #e9ecef !important;
	color: rgba(0, 0, 0, 0.75) !important;
	box-shadow:
		0 2px 8px rgba(15, 23, 42, 0.1),
		0 0 0 2px rgba(41, 171, 226, 0.5) !important;
}


/* ====================== SECTION 7: QUOTE-BOXY ====================== */
.quote-subtitle {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	font-weight: 500;
	color: #6c757d;
}

.quote-title {
	font-size: 1.9rem !important;
	line-height: 1.3;
	color: #1a1d20;
}

@media (max-width: 576px) {
	.quote-title {
		font-size: 1.4rem;
		line-height: 1;
	}
}


/* ====================== SECTION 8: COMPANY TIMELINE ====================== */
#kamieniemilowe .timeline {
	position: relative;
	padding: 2rem 0;
}

#kamienie .timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #E5E9EE;
	left: 12px;
	z-index: 0;
}

#kamienie .timeline-item {
	position: relative;
	margin-bottom: 3rem;
}

#kamienie .timeline-item::before {
	content: "";
	position: absolute;
	top: 0.9rem;
	left: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #29abe2;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #0d6efd22;
	z-index: 3;
}

#kamienie .timeline-card {
	position: relative;
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin-left: 2.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

#kamienie .timeline-card:hover,
#kamienie .timeline-card:focus-visible {
	box-shadow: 0 0.8rem 1.4rem rgba(0, 0, 0, .09);
	transform: translateY(-2px);
}

#kamienie .timeline-card:focus {
	outline: none;
}

#kamienie .timeline-card::after {
	content: "";
	position: absolute;
	top: 1.15rem;
	left: -10px;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 10px solid #fff;
	z-index: 1;
}

#kamienie .timeline-date {
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 0.35rem;
}

#kamienie .timeline-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
	#kamienie .timeline {
		padding: 3rem 0;
	}

	#kamienie .timeline::before {
		left: 50%;
		transform: translateX(-50%);
	}

	#kamienie .timeline-item::before {
		left: 50%;
		transform: translateX(-50%);
	}

	#kamienie .timeline-item {
		display: flex;
	}

	#kamienie .timeline-card {
		width: calc(50% - 2.5rem);
		margin-left: 0;
	}

	#kamienie .timeline-item:nth-child(odd) .timeline-card {
		margin-right: auto;
		text-align: right;
	}

	#kamienie .timeline-item:nth-child(even) .timeline-card {
		margin-left: auto;
		text-align: left;
	}

	#kamienie .timeline-item:nth-child(odd) .timeline-card::after {
		right: -10px;
		left: auto;
		border-right: none;
		border-left: 10px solid #fff;
	}

	#kamienie .timeline-item:nth-child(even) .timeline-card::after {
		left: -10px;
		right: auto;
		border-left: none;
		border-right: 10px solid #fff;
	}
}


/* ====================== SECTION 9: ERROR 404 ====================== */
.error404-area {
	height: 100vh;
	text-align: center;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	background-color: #00263d;
	position: relative;
	overflow: hidden;
}

.error404-area .error404-content {
	display: inline-block;
	padding: 60px 60px;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.error404-area .error404-content {
		padding: 60px 60px;
	}
}

@media (max-width: 767px) {
	.error404-area .error404-content {
		padding: 50px 50px;
	}
}

.error404-table {
	width: 100%;
	height: 100%;
	display: table !important;
}

.error404-cell {
	display: table-cell !important;
	vertical-align: middle;
}

.error404-area .error404-content h2 {
	font-size: 30px !important;
	margin-bottom: 10px;
	color: #081828;
	font-weight: 600;
	line-height: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.error404-area .error404-content h2 {
		font-size: 20px !important;
	}
}

@media (max-width: 767px) {
	.error404-area .error404-content h2 {
		font-size: 18px !important;
	}

	.error404-area .error404-content p {
		font-size: 11px;
		line-height: 1.4em;
	}
}

.error404-area .error404-content p {
	font-weight: 400;
	margin-bottom: 25px;
	color: #888;
	font-size: 13px;
}


/* Klawiatura: bez globalnego podkreślenia linku w #linki */
#linki a:focus-visible {
	outline: none;
	text-decoration: none;
	text-decoration-color: transparent;
}


/* ====================== SECTION 11: CONTACT + MAP ====================== */
.contact-card {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	transform: translateY(0);
}

.contact-card:hover,
.contact-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
	border-color: rgba(15, 23, 42, 0.12);
}

/* Kontakt PL/EN: Tab na kartę — sekcje #daneteleadresowe i #dzialy */
#daneteleadresowe .contact-card:focus,
#dzialy .contact-card:focus {
	outline: none !important;
}

#daneteleadresowe .contact-card:focus-visible,
#dzialy .contact-card:focus-visible {
	transform: translateY(-2px);
	box-shadow:
		0 10px 26px rgba(15, 23, 42, 0.1),
		0 0 0 2px rgba(41, 171, 226, 0.45) !important;
	border-color: rgba(41, 171, 226, 0.35);
}

.contact-box-title {
	font-size: 0.75rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	opacity: 0.6;
}

.contact-item {
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px dashed #e1e1e1;
	transition: background-color 0.15s ease;
}

.contact-item:last-child {
	border-bottom: none;
}

.contact-item:hover {
	background-color: rgba(224, 224, 224, 0.3);
}

.contact-item i {
	min-width: 18px;
	font-size: 0.95rem;
	color: #29abe2;
	opacity: 0.7
}

.contact-card.icon-bg {
	position: relative;
	overflow: hidden;
}

.contact-card.icon-bg::after {
	content: attr(data-icon);
	position: absolute;
	bottom: -10px;
	right: -20px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 8rem;
	color: rgba(41, 171, 226, 0.07);
	pointer-events: none;
	line-height: 1;
}

.map-section .mapouter {
	padding: 10px;
	background-color: #fff;
	border-radius: 0.5rem;
	border: 1px solid #e1e1e1;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.map-section .gmap_canvas--cookie-gated {
	position: relative;
}

.map-section .gmap_canvas--cookie-gated:not(.gmap_canvas--cookie-loaded) .cookie-functional-embed {
	visibility: hidden;
	pointer-events: none;
}

.map-section .cookie-embed-placeholder {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 1rem;
	text-align: center;
	background: #f8fafc;
	border-radius: 0.35rem;
	border: 1px dashed rgba(15, 23, 42, 0.14);
}

.map-section .gmap_canvas--cookie-loaded .cookie-embed-placeholder {
	display: none;
}

.map-section .cookie-embed-placeholder__text {
	margin: 0;
	max-width: 26rem;
	font-size: 0.85rem;
	line-height: 1.45;
	color: #475569;
}

.map-section .cookie-embed-placeholder__btn {
	border: 1px solid rgba(15, 23, 42, 0.16);
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	background: #fff;
	color: #0f2840;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.map-section .cookie-embed-placeholder__btn:hover {
	transform: translateY(-1px);
	background: #f8fafc;
	border-color: rgba(15, 23, 42, 0.28);
}

.map-section .cookie-embed-placeholder__btn:focus-visible {
	outline: none !important;
	box-shadow: 0 0 0 2px rgba(41, 171, 226, 0.5) !important;
}

.map-section .cookie-msg--en {
	display: none;
}

html[lang^="en"] .map-section .cookie-msg--pl {
	display: none !important;
}

html[lang^="en"] .map-section .cookie-msg--en {
	display: inline !important;
}

.map-section .gmap_canvas,
.map-section .gmap_canvas iframe {
	width: 100%;
	height: 100%;
}


/* ====================== SECTION 12: CARD-NEWS + NEWS NAVIGATION ====================== */
.news-years-bar {
	position: relative;
	overflow: visible;
	z-index: 10;
}

.news-years-track {
	display: flex;
	gap: .5rem;
	padding: .25rem .25rem .5rem;
	margin: 0 auto;
	max-width: 100%;
	justify-content: center;
	flex-wrap: wrap;
}

.news-year-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .4rem 1rem;
	border-radius: .3rem;
	font-size: .9rem;
	font-weight: 300;
	color: #111827;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
	background-color: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.news-year-link:hover {
	background: #E5E9EE;
	color: rgba(0, 0, 0, 0.7);
}

.news-year-link.active {
	background: #00263d;
	color: #fff;
	border-color: #00263d;
}

.news-year-link.inactive {
	background: #E5E9EE;
    color: rgba(0, 0, 0, 0.3);
}

.news-years-dropdown button {
	color: #111827;
	font-weight: 300;
	border: 1px solid #d1d5db;
	padding: .55rem 1rem;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-size: .95rem;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	background: rgba(0, 38, 61, 0.1);
}

.news-years-dropdown .btn.show {
	background: rgba(0, 38, 61, 0.2);
	color: #333;
}


.news-years-dropdown button:hover {
	background: rgba(0, 41, 61, 0.1);
	color: rgba(0, 0, 0, 0.7);
}

.news-years-dropdown .dropdown-menu {
	max-height: 32vh;
	overflow-y: auto;
	border-radius: .5rem;
	padding: .25rem;
	border: 1px solid #d1d5db;
	background: #f9fafb;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.news-years-dropdown .dropdown-item {
	padding: .6rem 1rem;
	margin-bottom: .25rem;
	font-weight: 600;
	font-size: .9rem;
	color: #111827;
	transition: background .2s ease, color .2s ease;
}

.news-years-dropdown .dropdown-item:hover {
	background: rgba(0, 41, 61, .1);
	color: rgba(0, 0, 0, 0.7);
}

.news-years-dropdown .dropdown-item.active {
	background: rgba(0, 38, 61, 0.8);
	color: #fff !important;
}


@media (max-width: 767.98px) {
	.news-years-track {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.news-years-dropdown {
		display: none !important;
	}
}


.news-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	color: #333;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.09);
	transition: transform .3s ease, box-shadow .3s ease;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.news-card:hover,
.news-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.news-card:focus-within,
.news-card:focus-visible {
	outline: none;
}

.news-media {
	position: relative;
	overflow: hidden;
}

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

.news-media::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 4px;
	background: #00263d;
}

.news-body {
	padding: 1.25rem 1.25rem .5rem;
}

.news-title {
	font-weight: 600;
	margin-bottom: .5rem;
}

.news-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color .25s ease;
}

.news-title a:hover {
	color: #29abe2;
}

.news-excerpt {
	color: #555;
	font-size: .95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .85rem 1.25rem 1.1rem;
	border-top: 1px solid #eef0f4;
}

.news-date {
	display: flex;
	align-items: center;
	gap: .45rem;
	color: #6b7280;
	font-size: .88rem;
}

.news-date i {
	font-size: .95em;
	color: #9ca3af;
}

.btn-news {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #00263d;
	color: #fff;
	font-weight: 600;
	padding: .45rem .9rem;
	border-radius: .4rem;
	text-decoration: none;
	font-size: .9rem;
	transition: background .25s ease;
	white-space: nowrap;
}

.btn-news:hover {
	background: #2563eb;
}

/* jak na stronie głównej — <a class="btn-news"> traci cień przy a:focus z main.css */
.btn-news:focus,
.btn-news:focus-visible {
	outline: none !important;
	text-decoration: none !important;
	background: #2563eb !important;
	color: #fff !important;
	box-shadow: 0 0 0 2px rgba(0, 38, 61, 0.8) !important;
}

.news-tiles>[class*="col-"] {
	opacity: 0;
	transform: translateY(14px);
	animation: tilesIn .45s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes tilesIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-tiles>[class*="col-"] {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}


/* ====================== SECTION 13: PROJECTS-BOX ====================== */
.project-box {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.16s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.26s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.26s ease, border-color 0.26s ease;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.project-box::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.project-box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 70%;
	max-height: 70%;
	object-fit: contain;
}

.project-box:hover,
.project-box:focus {
	transform: translateY(2px);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.18), 0 1px 2px rgba(0, 0, 0, 0.05);
	background-color: #E5E9EE;
}

.project-box:active {
	transform: translateY(3px);
	box-shadow:
		inset 0 2px 4px rgba(0, 0, 0, 0.22),
		0 0 0 rgba(0, 0, 0, 0);
}

#projekty [class*="col-"] {
	padding-left: 8px !important;
	padding-right: 8px !important;
}

#projekty .col-6 {
	flex: 0 0 50% !important;
	max-width: 50% !important;
}

@media (min-width: 768px) {
	#projekty .col-md-3 {
		flex: 0 0 25% !important;
		max-width: 25% !important;
	}
}

@media (min-width: 1200px) {
	#projekty .col-xl-20 {
		flex: 0 0 20% !important;
		max-width: 20% !important;
	}
}

/* Konsorcjum / partnerzy — zwarta, spójna siatka logotypów */
:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	text-align: center;
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 86px;
	flex-shrink: 0;
}

:is(#konsorcjum, #partnerzy_technologiczni) .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 0.2rem 0.15rem;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
	margin-left: 0;
	margin-right: 0;
}

:is(#konsorcjum, #partnerzy_technologiczni) .row > [class*="col-"] {
	flex: 0 0 calc((100% - 0.15rem) / 2);
	width: calc((100% - 0.15rem) / 2);
	max-width: calc((100% - 0.15rem) / 2);
	padding: 0;
	display: flex;
}

@media (min-width: 576px) {
	:is(#konsorcjum, #partnerzy_technologiczni) .row > [class*="col-"] {
		flex-basis: calc((100% - 2 * 0.15rem) / 3);
		width: calc((100% - 2 * 0.15rem) / 3);
		max-width: calc((100% - 2 * 0.15rem) / 3);
	}
}

@media (min-width: 768px) {
	:is(#konsorcjum, #partnerzy_technologiczni) .row > [class*="col-"] {
		flex-basis: calc((100% - 3 * 0.15rem) / 4);
		width: calc((100% - 3 * 0.15rem) / 4);
		max-width: calc((100% - 3 * 0.15rem) / 4);
	}
}

@media (min-width: 992px) {
	:is(#konsorcjum, #partnerzy_technologiczni) .row > [class*="col-"] {
		flex-basis: calc((100% - 5 * 0.15rem) / 6);
		width: calc((100% - 5 * 0.15rem) / 6);
		max-width: calc((100% - 5 * 0.15rem) / 6);
	}
}

@media (min-width: 1200px) {
	:is(#konsorcjum, #partnerzy_technologiczni) .row > [class*="col-"] {
		flex-basis: calc((100% - 7 * 0.15rem) / 8);
		width: calc((100% - 7 * 0.15rem) / 8);
		max-width: calc((100% - 7 * 0.15rem) / 8);
	}
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-height: 80px;
	max-width: min(100%, 120px);
	width: 100%;
	padding: 0.4rem 0.5rem;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 0.375rem;
	box-shadow: none;
	filter: grayscale(1) opacity(0.78);
	transition: filter 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box:hover .project-logo-img,
:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box:focus-within .project-logo-img {
	background-color: rgba(255, 255, 255, 0.82);
	border-color: rgba(15, 23, 42, 0.1);
	filter: grayscale(0) opacity(1);
	transform: translateY(-2px);
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-company-name {
	margin-top: 2px;
	min-height: calc(2 * 1.2 * 0.625rem);
	font-size: 0.625rem;
	font-weight: 400;
	color: rgba(15, 23, 42, 0.55);
	line-height: 1.2;
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-company-name:has(+ .project-company-lider) {
	min-height: 0;
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-company-lider {
	margin-top: 1px;
	min-height: 0;
	font-size: 0.5rem;
	font-weight: 400;
	color: rgba(15, 23, 42, 0.28);
	line-height: 1;
	letter-spacing: 0.02em;
}

:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box:not(:has(.project-company-lider))::after {
	content: "";
	display: block;
	min-height: calc(1 * 0.5rem + 1px);
	margin-top: 1px;
}

@media (prefers-reduced-motion: reduce) {
	:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-img,
	:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box:hover .project-logo-img,
	:is(#konsorcjum, #partnerzy_technologiczni) .project-logo-box:focus-within .project-logo-img {
		transition: none;
		transform: none;
	}
}


/* ====================== SECTION 14: BLOG-PAGES ====================== */
.blog-single {
	background: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
	.blog-single .main-content-head {
		padding-right: 30px;
	}
}

.blog-single .meta-info {
	margin-top: 5px;
	margin-bottom: 30px;
}

.blog-single .meta-info li {
	font-size: 13px !important;
	display: inline-block;
	margin-right: 15px;
	padding-right: 15px;
	position: relative;
}

@media (max-width: 767px) {
	.blog-single .meta-info li {
		margin-bottom: 8px;
	}
}

.blog-single .meta-info li::before {
	position: absolute;
	content: "";
	right: -5px;
	top: 50%;
	background-color: #d2d2d2;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.blog-single .meta-info li:last-child {
	margin: 0;
	padding: 0;
}

.blog-single .meta-info li:last-child::before {
	display: none;
}

.blog-single .post-title {
	line-height: 40px;
	font-size: 2.4em !important;
	font-weight: 700;
	display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-single .post-title {
		line-height: 40px;
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.blog-single .post-title {
		line-height: 32px;
		font-size: 2rem !important;
	}
}

.blog-single p {
	font-size: 15px;
	margin: 0 0 20px 0;
	line-height: 26px;
}

.blog-single p:first-child {
	margin-top: 0;
}

.blog-single p:last-child {
	margin-bottom: 0;
}

.blog-single h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
}

@media (max-width: 767px) {
	.blog-single h3 {
		font-size: 18px;
	}
}

.blog-single .image-block {
	margin: 30px 0;
}

.blog-single .image-block img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 0.5rem;
}

/* Galerie zdjęć — karuzela (4+ zdjęć) w notatkach prasowych i na stronach produktów */
:is(.blog-single, #galeria) .news-gallery {
	margin-top: 0.25rem;
}

:is(.blog-single, #galeria) .news-gallery__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	margin-bottom: 0.65rem;
}

:is(.blog-single, #galeria) .news-gallery__label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.72);
}

:is(.blog-single, #galeria) .news-gallery__label i {
	color: #29abe2;
	font-size: 0.95rem;
}

:is(.blog-single, #galeria) .news-gallery__count {
	font-size: 0.72rem;
	font-weight: 500;
	color: rgba(15, 23, 42, 0.45);
	text-transform: none;
	letter-spacing: 0;
}

:is(.blog-single, #galeria) .news-gallery__hint {
	flex: 1 1 100%;
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(15, 23, 42, 0.48);
}

@media (min-width: 768px) {
	:is(.blog-single, #galeria) .news-gallery__head {
		flex-wrap: nowrap;
		align-items: center;
	}

	:is(.blog-single, #galeria) .news-gallery__hint {
		flex: 1 1 auto;
		text-align: right;
	}
}

:is(.blog-single, #galeria) .news-gallery__viewport {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

:is(.blog-single, #galeria) .news-gallery-swiper {
	flex: 1 1 auto;
	min-width: 0;
	padding-bottom: 1.85rem;
	overflow: hidden;
}

:is(.blog-single, #galeria) .news-gallery-swiper .swiper-slide img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 0.5rem;
	margin: 0;
	cursor: zoom-in;
}

:is(.blog-single, #galeria) .news-gallery__nav {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: #fff;
	color: rgba(15, 23, 42, 0.65);
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

:is(.blog-single, #galeria) .news-gallery__nav:hover {
	color: #29abe2;
	border-color: rgba(41, 171, 226, 0.35);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

:is(.blog-single, #galeria) .news-gallery__nav:focus-visible {
	outline: 2px solid #29abe2;
	outline-offset: 2px;
}

:is(.blog-single, #galeria) .news-gallery__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
	box-shadow: none;
}

:is(.blog-single, #galeria) .news-gallery-swiper .swiper-pagination {
	bottom: 0 !important;
}

:is(.blog-single, #galeria) .news-gallery-swiper .swiper-pagination-bullet {
	background: rgba(15, 23, 42, 0.25);
	opacity: 1;
}

:is(.blog-single, #galeria) .news-gallery-swiper .swiper-pagination-bullet-active {
	background: #29abe2;
}

@media (min-width: 768px) {
	:is(.blog-single, #galeria) .news-gallery-swiper .swiper-slide img {
		height: 200px;
	}

	:is(.blog-single, #galeria) .news-gallery__nav {
		width: 2.25rem;
		height: 2.25rem;
	}
}

@media (min-width: 992px) {
	:is(.blog-single, #galeria) .news-gallery-swiper .swiper-slide img {
		height: 210px;
	}

	#galeria .news-gallery-swiper .swiper-slide img {
		height: 240px;
	}
}

@media (min-width: 1200px) {
	#galeria .news-gallery-swiper .swiper-slide img {
		height: 260px;
	}
}

/* Produkty — image-block jest jednocześnie .row; karuzela musi mieć pełną szerokość */
#galeria .image-block.image-block--carousel-active.row {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

#galeria .image-block.image-block--carousel-active .news-gallery {
	width: 100%;
	max-width: 100%;
}

@media (max-width: 767px) {
	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active) img {
		height: 140px;
		margin: 0;
	}

	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active) > .row,
	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active).row {
		display: flex;
		flex-wrap: wrap;
		gap: 0.35rem;
		margin-left: 0;
		margin-right: 0;
	}

	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active) > .row > [class*="col"],
	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active).row > [class*="col"] {
		flex: 0 0 calc(50% - 0.175rem);
		max-width: calc(50% - 0.175rem);
		padding: 0;
	}

	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active) > .row > [class*="col"]:only-child,
	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active).row > [class*="col"]:only-child {
		flex: 0 0 100%;
		max-width: 100%;
	}

	:is(.blog-single, #galeria) .image-block:not(.image-block--carousel-active) > img:only-child {
		height: 160px;
	}
}

blockquote {
	position: relative;
	font-weight: 400;
	clear: both;
	z-index: 1;
	margin: 40px 0;
	text-align: center;
	padding: 40px;
	background-color: #E5E9EE;
	border-radius: 0.5rem;
	overflow: hidden;
}

@media (max-width: 767px) {
	blockquote {
		padding: 20px;
	}
}

blockquote .icon i {
	font-size: 32px;
	color: #29abe2;
	display: block;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	blockquote .icon i {
		margin-bottom: 15px;
	}
}

blockquote h4 {
	font-weight: 600 !important;
	font-size: 16px;
	line-height: 24px;
	color: rgba(8, 24, 40, 0.7) !important;
}

@media (max-width: 767px) {
	blockquote h4 {
		font-size: 13px;
	}
}

blockquote span {
	font-size: 12px;
	display: block;
	margin-top: 20px;
	color: rgba(8, 24, 40, 0.5) !important;
}

.sidebar .widget {
	margin-bottom: 40px;
	overflow: hidden;
	padding: 40px;
	border-radius: 0.5rem;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
	border-bottom: 3px solid #29abe2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.sidebar .widget:first-child {
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.sidebar .widget {
		padding: 35px;
	}
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget .widget-title {
	font-size: 18px;
	margin-bottom: 25px;
	position: relative;
	font-weight: 600;
	line-height: 28px;
	z-index: 1;
	color: #081828;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.archive-grid li a {
	display: block;
	padding: 8px 12px;
	background: rgb(229 233 238 / 44%);
	border-radius: 0.3rem;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	color: rgba(8, 24, 40, 0.6);
	transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.archive-grid li a:hover {
	background-color: #29abe2;
	color: #fff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.sidebar .widget.social-share-widget .share-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar .widget.social-share-widget .share-links li a {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E5E9EE;
	font-size: 22px;
	color: #081828;
	transition: all 0.3s ease;
}

.sidebar .widget.social-share-widget .share-links li a:hover {
	background-color: #29abe2;
	color: #fff;
}

.sidebar .widget.info-widget .info-text {
	font-size: 15px;
	line-height: 22px;
	color: rgba(8, 24, 40, 0.7);
	margin: 0;
	padding: 0;
}


/* ====================== SECTION 15: CAREER-HERO-BOX ====================== */
.career-hero {
	position: relative;
	background: #00263d;
	overflow: hidden;
	color: #fff;
}

.career-hero-media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 55vw;
	overflow: hidden;
}

.career-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.career-hero-inner {
	display: flex;
	align-items: center;
	min-height: 520px;
	position: relative;
	z-index: 2;
}

.career-hero-content {
	max-width: 500px;
	padding: 80px 0;
}

.career-hero-content h1 {
	font-size: 44px;
	margin-bottom: 18px;
	color: #29abe2;
	text-transform: uppercase;
	font-weight: bold;
	font-family: "PT Sans Narrow" !important;
}

.career-hero-content p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.career-hero-media img {
	filter: brightness(0.5);
}

@media (max-width: 768px) {

	.career-hero {
		position: relative;
		background: #00263d;
		color: #fff;
		padding-top: 4.7rem;
		padding-bottom: 30px;
		overflow: hidden;
	}

	.career-hero-inner {
		display: block;
		min-height: auto;
	}

	.career-hero-media {
		position: relative;
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.career-hero-media img {
		width: 100%;
		height: auto;
		display: block;

		clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
	}

	.career-hero-content {
		padding: 24px 0 10px;
		text-align: left;
	}

	.career-hero-content h1 {
		font-size: 26px;
		margin: 0 0 12px;
	}

	.career-hero-content p {
		font-size: 16px;
		line-height: 1.5;
		margin: 0;
		max-width: 100%;
	}
}


@media (min-width: 769px) and (max-width: 1024px) {
	.career-hero {
		position: relative;
		background: #00263d;
		color: #fff;
		padding-top: 5.2rem;
		padding-bottom: 40px;
		overflow: hidden;
	}

	.career-hero-inner {
		display: block;
		min-height: auto;
	}

	.career-hero-media {
		position: relative;
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.career-hero-media img {
		width: 100%;
		height: auto;
		display: block;
		clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
	}

	.career-hero-content {
		padding: 32px 0 12px;
		text-align: left;
		max-width: 100%;
	}

	.career-hero-content h1 {
		font-size: 32px;
		margin: 0 0 14px;
	}

	.career-hero-content p {
		font-size: 16px;
		line-height: 1.6;
		margin: 0;
	}

}

.logo-shadow {
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}


/* ====================== SECTION 16: TABCARDS ====================== */
.tabcard-box {
	width: 100%;
	padding: 1.2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.tabcard-box i {
	font-size: 2rem;
	transition: color 0.25s ease, transform 0.25s ease;
}

.tabcard-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.tabcard-box.tabcard-box-active,
.tabcard-box.tabcard-box-active:focus,
.tabcard-box.tabcard-box-active:active {
	background-color: rgb(41, 171, 226);
	transform: translateY(-3px);
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.tabcard-box.tabcard-box span {
	text-transform: uppercase;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.7);
}

.tabcard-box.tabcard-box-active i {
	color: rgb(255, 255, 255);
	transform: scale(1.08);
}

.tabcard-box.tabcard-box-active span {
	color: rgba(255, 255, 255, 0.9);
}

.tabcard-box:focus {
	outline: none;
	box-shadow: none;
}

.tabcard-content p,
.tabcard-content h3 {
	text-align: right !important;
}

.tabcard-content-full p,
.tabcard-content-full h3 {
	text-align: left !important;
}

.img-tabcard {
	border-radius: 0.5rem;
	width: 80%;
	object-fit: cover;
	display: block;
	margin-left: auto;
}

@media (max-width: 767.98px) {
	.tabcard-box {
		font-size: 0.95rem;
		padding-inline: 0.75rem;
	}

	.img-tabcard {
		margin-left: auto;
		margin-right: auto;
	}

	.tabcard-content p,
	.tabcard-content h3 {
		text-align: left !important;
	}

	.tabcard-content-full p,
	.tabcard-content-full h3 {
		text-align: left !important;
	}
}

.tabcard-row-two {
	justify-content: center;
}

.tabcard-row-two .col-md-4 {
	flex: 0 0 50%;
	max-width: 50%;
}


/* ====================== SECTION 17: BENEFIT-LIST ====================== */
.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.benefit-tile {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: 100%;
	padding: 0.5rem 2rem;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, transform 0.1s ease;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.benefit-tile i {
	font-size: 1.4rem;
	flex-shrink: 0;
}

.benefit-title {
	font-size: 0.9rem;
	font-weight: 300;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.benefit-tile:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.benefit-tile.active {
	background-color: rgba(41, 171, 226, 0.55);
	box-shadow: 0 6px 18px rgba(43, 120, 255, 0.1) !important;
}

.benefit-tile.active>i {
	color: white !important;
	fill: white !important;
	stroke: white !important;
}

.benefit-tile.active span {
	color: white !important;
}

.benefit-detail-box {
	position: relative;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.benefit-detail-content {
	position: relative;
	z-index: 2;
	max-width: 580px;
}

.benefit-detail-content h3 {
	font-size: 1.3rem;
	font-weight: 900;
}

.benefit-detail-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 300;
}

.benefit-detail-icon-bg {
	position: absolute;
	right: 0.8rem;
	bottom: 0.8rem;
	z-index: 1;
	pointer-events: none;
	opacity: 0.05;
	transform: rotate(-15deg);
}

.benefit-detail-icon-bg i {
	font-size: 10rem;
	line-height: 1;
}

@media (max-width: 991.98px) {
	.benefit-detail-box {
		margin-top: 0.5rem;
	}
}

@media (max-width: 576px) {
	.benefit-detail-icon-bg i {
		font-size: 5rem !important;
		opacity: 0.8;
	}
}

.culture-checklist {
	display: grid;
	grid-template-columns: 1fr;
	gap: .65rem 1.25rem;
	margin: 0;
	padding: 0;
}

.culture-checklist li {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.5) !important;
}

.check-badge {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #d9e1ea;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.check-badge i {
	color: #29abe2;
	font-size: .95rem;
	line-height: 1;
}

.culture-checklist li:hover .check-badge,
.culture-checklist li:focus-within .check-badge {
	border-color: #bfd0ea;
	background: #f7f9fc;
}

.culture-checklist li:hover .check-badge,
.culture-checklist li:focus-within .check-badge {
	border-color: #bfd0ea;
	background: #f7f9fc;
}

.img-tabcard-full {
	margin-left: auto !important;
	margin-right: auto !important;
}

.object-fit-cover {
	object-fit: cover;
}


/* ====================== SECTION 18: WORKERS-QUOTES ====================== */
.testimonial-item {
	display: flex;
	align-items: stretch;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	background-color: #ffffff !important;
	border-radius: 0.5rem !important;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.testimonial-item:hover {
	transform: translateY(-2px);
}

.testimonial-img {
	flex: 0 0 40%;
	max-width: 30%;
}

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

.testimonial-content {
	flex: 1;
	padding: 2.5rem 2.5rem 2rem;
	display: flex;
	flex-direction: column;
}

.testimonial-quote-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #2f54eb;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1.75rem;
}

.testimonial-name {
	font-weight: 600;
	font-size: 1.05rem;
	margin-bottom: 0.25rem;
}

.testimonial-position {
	font-size: 0.85rem;
	color: #888;
}

.testimonial-content .text-secondary {
	color: rgba(108, 117, 125, 0.6) !important;
}

.testimonial-quote {
	font-size: 0.7rem;
	line-height: 1rem;
}

@media (max-width: 767.98px) {
	.testimonial-item {
		flex-direction: column;
		text-align: center;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	}

	.testimonial-img {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
		aspect-ratio: 4 / 4;
		overflow: hidden;
	}

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

	.testimonial-content {
		padding: 1.75rem 1.5rem 1.75rem;
	}

	.testimonial-quote-icon {
		margin-bottom: 0.75rem;
	}

	.testimonial-text {
		font-size: 0.95rem;
	}

	.employee-swiper .swiper-slide {
		height: auto !important;
		display: block !important;
	}

	.employee-swiper .testimonial-item {
		height: auto !important;
	}
}

@media (min-width: 992px) {
	.employee-swiper .swiper-wrapper {
		align-items: stretch;
	}

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

	.employee-swiper .testimonial-item {
		height: 100%;
	}
}

.employee-swiper .swiper-pagination {
	position: static;
	text-align: center;
}

.employee-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cfd8e3;
	opacity: 1;
	margin: 0 4px;
}

.employee-swiper .swiper-pagination-bullet-active {
	background: #29abe2;
}

.community-stats {
	margin-top: 1.5rem;
}

.community-stat {
	width: 160px;
	padding: 0.6rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.community-stat:hover {
	transform: translateY(-2px);
}

.community-stat__icon {
	font-size: 1.5rem;
	color: #29abe2;
	margin-bottom: 0.35rem;
}

.community-stat__value {
	font-weight: 400;
	font-size: 1.2rem;
	color: #2b2b2b;
}

.community-stat__label {
	font-size: 0.7rem;
	color: rgba(0, 0, 0, 0.4);
	font-weight: 300;
	margin-top: 2px;
}

@media (max-width: 575.98px) {
	.community-stat {
		width: 45%;
	}
}

.testimonial-text {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* ====================== SECTION 18: MINI NAV STRIP (kariera + firma) ====================== */
.career-nav-strip__heading {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.45);
	text-align: center;
}

.career-nav-strip .career-cta-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 7rem;
	max-height: 7.5rem;
	padding: 0.85rem 1rem;
	overflow: hidden;
	color: #ffffff;
	background-size: cover;
	background-position: center;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: none;
	filter: saturate(0.78) brightness(0.96) contrast(0.96);
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

.career-nav-strip .career-cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(8, 24, 40, 0.92) 0%,
		rgba(8, 24, 40, 0.72) 38%,
		rgba(8, 24, 40, 0.28) 68%,
		rgba(8, 24, 40, 0.08) 100%
	);
	z-index: 1;
	transition: opacity 0.3s ease;
}

.career-nav-strip .career-cta-inner {
	position: relative;
	z-index: 2;
	max-width: 100%;
}

.career-nav-strip .career-cta-label {
	margin: 0;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.03em;
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.65),
		0 0 10px rgba(0, 0, 0, 0.35);
}

.career-nav-strip a.career-cta-card:hover,
.career-nav-strip a.career-cta-card:focus-visible {
	transform: translateY(-2px);
	filter: saturate(0.86) brightness(1) contrast(1);
	border-color: rgba(15, 23, 42, 0.14) !important;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12) !important;
	text-decoration: none !important;
	color: #ffffff;
}

.career-nav-strip a.career-cta-card:hover::before,
.career-nav-strip a.career-cta-card:focus-visible::before {
	background: linear-gradient(
		90deg,
		rgba(8, 24, 40, 0.96) 0%,
		rgba(8, 24, 40, 0.78) 40%,
		rgba(8, 24, 40, 0.32) 70%,
		rgba(8, 24, 40, 0.1) 100%
	);
}

.career-nav-strip a.career-cta-card:focus-visible {
	outline: none !important;
	box-shadow:
		0 6px 16px rgba(15, 23, 42, 0.12),
		0 0 0 2px rgba(41, 171, 226, 0.65),
		0 0 0 5px rgba(41, 171, 226, 0.12) !important;
}

.career-cta-card--kariera {
	background-image: url("../../assets/images/CTM-Career-CTA-Kariera.png");
}

.career-cta-card--poznaj {
	background-image: url("../../assets/images/CTM-Career-CTA-Poznaj.png");
}

.career-cta-card--kandydaci {
	background-image: url("../../assets/images/CTM-Career-CTA-Kandydaci.png");
}

.career-cta-card--oferty {
	background-image: url("../../assets/images/CTM-Career-CTA-Oferty.png");
}

.career-cta-card--staze {
	background-image: url("../../assets/images/CTM-Career-CTA-Staze.png");
}

.company-cta-card--firma {
	background-image: url("../../assets/images/CTM-Company-CTA-Firma.png");
}

.company-cta-card--zarzad {
	background-image: url("../../assets/images/CTM-Company-CTA-Zarzad.png");
}

.company-cta-card--akcjonariusze {
	background-image: url("../../assets/images/CTM-Company-CTA-Akcjonariusze.png");
}

.company-cta-card--postepowania {
	background-image: url("../../assets/images/CTM-Company-CTA-Postepowania.png");
}

.company-cta-card--polityki {
	background-image: url("../../assets/images/CTM-Company-CTA-Polityki.png");
}

@media (prefers-reduced-motion: reduce) {
	.career-nav-strip .career-cta-card,
	.career-nav-strip .career-cta-card::before {
		transition: none;
	}

	.career-nav-strip a.career-cta-card:hover,
	.career-nav-strip a.career-cta-card:focus-visible {
		transform: none;
	}
}

@media (max-width: 575.98px) {
	.career-nav-strip .career-cta-card {
		min-height: 5.25rem;
		max-height: none;
		padding: 0.65rem 0.75rem;
	}

	.career-nav-strip .career-cta-label {
		font-size: 0.68rem;
	}
}


/* ====================== SECTION 19: CAREER-TIMELINE ====================== */
.recruit-timeline {
	position: relative;
}

.recruit-timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18px;
	width: 2px;
	background: #E5E9EE;
}

.recruit-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1.75rem;
	width: 100%;
	margin-bottom: 3rem;
}

.recruit-step-line {
	position: relative;
	width: 36px;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.recruit-step-marker {
	position: absolute;
	left: 18px;
	top: 0;
	transform: translateX(-50%);
	background: #29abe2;
	color: #fff;
	font-weight: 600;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.recruit-step-body {
	width: 100%;
	position: relative;
	transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
	transform: translateY(0);
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.recruit-step-body:hover,
.recruit-step-body:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
	border-color: rgba(0, 38, 61, 0.12);
}

/* Fokus klawiatury na samym boxie (przed linkami): subtelna obwódka markowa */
.recruit-step-body:focus {
	outline: none;
}

.recruit-step-body:focus-visible {
	box-shadow:
		0 8px 22px rgba(15, 23, 42, 0.09),
		0 0 0 2px rgba(41, 171, 226, 0.38) !important;
	border-color: rgba(0, 38, 61, 0.14);
}

.recruit-step-body::before {
	content: "";
	position: absolute;
	left: -1.75rem;
	top: 18px;
	width: 1.75rem;
	height: 0;
	border-bottom: 2px dotted #29abe2;
}

.recruit-step-header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.35rem;
}

.recruit-step-icon {
	font-size: 1.15rem;
	color: #29abe2;
}

.recruit-step-body h5 {
	font-weight: 600;
	margin: 0;
}

.recruit-step-body p {
	margin-top: 0.45rem;
	color: #6c757d;
	line-height: 1.65;
}

.recruit-step:last-child .recruit-step-line::before {
	bottom: 50%;
}

@media (max-width: 767.98px) {
	.recruit-timeline {
		padding-left: 0rem !important
	}

	.recruit-timeline::before {
		left: 12px;
	}

	.recruit-step-marker {
		left: 12px;
	}

	.recruit-step-body::before {
		left: -1.25rem;
		width: 1.25rem;
	}

	.recruit-step-body {
		padding: 1rem 1.2rem;
	}

	.recruit-step-line {
		width: 1rem !important;
	}
}

.recruit-list {
	list-style: none;
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

.recruit-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 0.65rem;
	line-height: 1.55;
	color: #555;
}

.recruit-list li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	position: absolute;
	left: 0;
	top: -1px;
	font-size: 1rem;
	color: #29abe2;
}

.recruit-step-marker-final {
	background: #1b9cd8;
	width: 38px;
	height: 38px;
	font-size: 1rem;
}


.career-mini {
	background: #e9edf2;
	color: #00263d;
	padding: 50px 0;
	text-align: center;
}

.career-mini-inner {
	display: flex;
	justify-content: center;
	text-align: center;
}

.career-mini-content {
	max-width: 680px;
	margin: 0 auto;
}

.career-mini-content h2 {
	font-size: 32px;
	margin-bottom: 14px;
	color: #0da0df;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	font-family: "PT Sans Narrow" !important;
}

.career-mini-content p {
	font-size: 15.5px;
	line-height: 1.6;
	color: #00263d;
	text-align: center;
}


/* ====================== SECTION 20: STAZ-BOX ====================== */
.info-staz {
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
}

.info-staz:hover {
	transform: translateY(-2px);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

.praktyki-stack {
	width: 100%;
	max-width: 500px;
	position: relative;
	margin: 0 auto;
	height: 420px;
}

.praktyki-stack img {
	position: absolute;
	width: 85%;
	border-radius: 0.8rem;
	box-shadow: 0 1.4rem 2.4rem rgba(0, 0, 0, 0.25);
	transition: transform .45s ease, box-shadow .45s ease;
}

.praktyki-photo-1 {
	top: 0;
	left: 25px;
	transform: rotate(-3deg);
	z-index: 3;
}

.praktyki-photo-2 {
	top: 100px;
	left: 10px;
	transform: rotate(1deg);
	z-index: 2;
}

.praktyki-photo-3 {
	top: 200px;
	left: 40px;
	transform: rotate(4deg);
	z-index: 1;
}

.praktyki-stack img:hover {
	transform: scale(1.03) translateY(-4px);
	box-shadow: 0 1.6rem 2.6rem rgba(0, 0, 0, 0.32);
}


@media (min-width: 768px) and (max-width: 991.98px) {

	.praktyki-stack {
		max-width: 420px;
		height: 360px;
	}

	.praktyki-stack img {
		width: 90%;
	}

	.praktyki-photo-1 {
		top: 0;
		left: 15px;
		transform: rotate(-2.5deg);
	}

	.praktyki-photo-2 {
		top: 85px;
		left: 5px;
		transform: rotate(0.8deg);
	}

	.praktyki-photo-3 {
		top: 170px;
		left: 20px;
		transform: rotate(3.2deg);
	}
}

@media (max-width: 767.98px) {

	.praktyki-stack {
		max-width: 320px;
		height: 260px;
	}

	.praktyki-stack img {
		width: 100%;
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
	}

	.praktyki-photo-1 {
		top: 0;
		left: 0;
		transform: rotate(-2deg);
	}

	.praktyki-photo-2 {
		top: 55px;
		left: -3px;
		transform: rotate(0.5deg);
	}

	.praktyki-photo-3 {
		top: 110px;
		left: 4px;
		transform: rotate(3deg);
	}
}


/* ====================== SECTION 21: KONKURS-PAGE ====================== */
.konkurs-images {
	max-width: 580px;
	width: 100%;
	min-height: 300px;
	position: relative;
}

.konkurs-images img {
	border-radius: 0.8rem;
	box-shadow: 0 1.4rem 2.4rem rgba(0, 0, 0, 0.25);
	transition: transform .45s ease, box-shadow .45s ease;
}

.konkurs-img-1 {
	position: relative;
	z-index: 2;
	width: 75%;
	transform: translate(-18px, -12px) rotate(-2.2deg);
}

.konkurs-img-2 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 75%;
	transform: translate(18px, 12px) rotate(2deg);
	z-index: 1;
}

.konkurs-images:hover .konkurs-img-1 {
	transform: translate(-12px, -8px) rotate(-1.5deg);
	box-shadow: 0 1.1rem 2rem rgba(0, 0, 0, 0.28);
}

.konkurs-images:hover .konkurs-img-2 {
	transform: translate(12px, 8px) rotate(1.5deg);
	box-shadow: 0 1.1rem 2rem rgba(0, 0, 0, 0.28);
}

@media (max-width: 767.98px) {
	.konkurs-images {
		max-width: 340px;
		min-height: 230px;
		margin-top: 1.5rem;
	}

	.konkurs-img-1,
	.konkurs-img-2 {
		width: 95%;
	}
}

.konkurs-organizator {
	margin-top: 3rem;
}

@media (max-width: 767.98px) {
	.konkurs-organizator {
		margin-top: 4rem;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.konkurs-organizator {
		margin-top: 5rem;
	}
}

@media (min-width: 992px) {
	.konkurs-organizator {
		margin-top: 4.3rem;
		opacity: 0.5;
		font-weight: 200;
		font-size: 16px !important;
	}
}


/* ====================== SECTION 22: JOB-BOX ====================== */
.job-card {
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	position: relative;
	overflow: visible;
}

/* Lista ofert (#lista jest tylko na stronie ofert — .job-card tylko tam): hover + Tab na karcie albo przycisku wewnątrz */
#lista .job-card:hover,
#lista .job-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12) !important;
}

#lista .job-card:focus,
#lista .job-card:focus-visible {
	outline: none;
}

/* Przyciski w kartach: main.css zeruje shadow na a:focus — odtworzenie efektu :hover przy :focus-visible */
#lista .button .btn-symbol:focus-visible,
#lista .button .btn-symbol-alt:focus-visible {
	outline: none !important;
	text-decoration: none !important;
	transform: translateY(-2px);
}

#lista .button .btn-symbol:focus-visible {
	box-shadow: 0 4px 2px rgba(0, 38, 61, 0.3) !important;
}

#lista .button .btn-symbol-alt:focus-visible {
	box-shadow: 0 4px 2px rgba(0, 38, 61, 0.2) !important;
	background-color: #f8f9fa !important;
}

#lista .button .btn-symbol:focus-visible::after {
	background: rgba(0, 0, 0, 0.3) !important;
}

#lista .button .btn-symbol-alt:focus-visible::after {
	background: rgba(0, 0, 0, 0.1) !important;
}

.job-meta {
	font-size: 0.875rem;
	font-weight: 500;
}

/* Lista ofert: lokalizacja stonowana, z akcentowaną ikoną */
#lista .job-location {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.82rem;
	font-weight: 500;
	color: #6b7687;
}

.job-location i {
	font-size: 0.95rem;
	vertical-align: -1px;
}

#lista .job-location i {
	color: #29abe2;
}

.job-desc {
	line-height: 1.35;
}

.job-cards>[class*="col-"]:last-child:nth-child(odd) {
	margin-left: auto;
	margin-right: auto;
}

.job-cards-policy {
	line-height: 0.9rem;
	font-size: 0.6rem;
	opacity: 0.5;
}

/* --- Lista ofert: kategoria (pigułka), akcent karty, pasek filtrów, karta aplikacji ogólnej --- */

/* Lista ofert: górny rząd karty — kategoria z lewej, status „Nowe” z prawej */
.job-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
}

.job-new {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	color: #ffffff;
	background: #00263d;
	border-radius: 999px;
	padding: 0.3rem 0.55rem;
	box-shadow: 0 1px 3px rgba(0, 38, 61, 0.25);
}

.job-new i {
	font-size: 0.7rem;
	color: #29abe2;
}

.job-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}

.job-pill i {
	font-size: 0.85rem;
}

.job-pill--it     { background: rgba(41, 171, 226, 0.14); color: #0b3b56; }
.job-pill--auto   { background: rgba(99, 102, 241, 0.14);  color: #3730a3; }
.job-pill--elek   { background: rgba(245, 158, 11, 0.16);  color: #92400e; }
.job-pill--jakosc { background: rgba(16, 185, 129, 0.16);  color: #065f46; }
.job-pill--tech   { background: rgba(100, 116, 139, 0.16); color: #334155; }
.job-pill--staz   { background: rgba(168, 85, 247, 0.14);  color: #6b21a8; }
.job-pill--admin { background: rgba(107, 114, 128, 0.16); color: #374151; }
.job-pill--ochrona { background: rgba(30, 58, 95, 0.14); color: #1e3a5f; }
.job-pill--biznes { background: rgba(14, 116, 144, 0.14); color: #155e75; }

/* Akcentowa kreska u góry karty */
.job-card--accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: #29abe2;
	border-radius: 0.5rem 0.5rem 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Na liście ofert akcentowa kreska jest widoczna stale */
#lista .job-card--accent::after {
	opacity: 1;
}

/* Pasek narzędzi + filtry */
.job-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem 1.25rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.job-count {
	font-weight: 700;
	color: #00263d;
	font-size: 1.05rem;
	margin: 0;
}

.job-count strong {
	color: #29abe2;
}

.job-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.job-chip {
	border: 1px solid rgba(15, 23, 42, 0.15);
	background: #ffffff;
	color: #0f2840;
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.job-chip:hover {
	border-color: #29abe2;
	color: #0b3b56;
}

.job-chip:focus-visible {
	outline: 2px solid #29abe2;
	outline-offset: 2px;
}

.job-chip.is-active {
	background: #00263d;
	color: #ffffff;
	border-color: #00263d;
}

.job-chip__n {
	display: inline-block;
	min-width: 1.25em;
	margin-left: 0.15rem;
	padding: 0 0.35em;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.45;
	background: rgba(15, 23, 42, 0.08);
	color: inherit;
}

.job-chip.is-active .job-chip__n {
	background: rgba(255, 255, 255, 0.22);
}

.job-item.is-hidden {
	display: none !important;
}

/* Filtrowanie (FLIP): odfiltrowane karty gasną, pozostałe płynnie przesuwają się na nowe miejsca */

/* znikające karty — delikatne wygaszenie */
.job-item.is-leaving {
	opacity: 0;
	transform: scale(0.97);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

/* pozostające karty — animacja przesunięcia (transform ustawia JS) */
.job-item.is-moving {
	transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

/* nowo pojawiające się karty — wejście z wygaszeniem */
@keyframes jobItemIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.job-item.is-entering {
	animation: jobItemIn 0.35s ease both;
}

@media (prefers-reduced-motion: reduce) {

	.job-item.is-leaving,
	.job-item.is-moving,
	.job-item.is-entering {
		transition: none !important;
		animation: none !important;
	}
}

.job-empty {
	display: none;
	text-align: center;
	color: #64748b;
	padding: 2rem;
	font-weight: 600;
}

.gen-card {
	background: linear-gradient(135deg, rgba(41, 171, 226, 0.10), rgba(0, 38, 61, 0.04));
	border: 1px solid rgba(41, 171, 226, 0.30);
	border-radius: 0.6rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gen-card__body {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.gen-card__icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #29abe2;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.gen-card h3 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: #0f2840;
}

.gen-card p {
	color: #475569;
}

@media (min-width: 768px) {
	.gen-card {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2rem;
	}
}

@media (max-width: 575px) {
	.job-toolbar {
		gap: 0.75rem;
	}

	.gen-card {
		padding: 1.35rem;
	}
}

/* ====================== SECTION 23: FAQ ====================== */

.faq {
	padding-bottom: 80px;
	background-color: #F4F7FA;
}

@media (max-width: 767px) {
	.faq .xs-margin {
		margin-top: 20px !important;
	}
}

.faq .section-title {
	margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.faq .section-title {
		margin-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.faq .section-title {
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.faq {
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.faq {
		padding-bottom: 30px;
	}
}

.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
	border-radius: 4px;
	font-size: 17px;
	font-weight: 500;
	width: 100%;
	display: block;
	overflow: hidden;
	border: none;
	padding: 15px 25px;
	padding-right: 40px;
	background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.accordion-item .accordion-button {
		padding: 18px 20px;
		padding-right: 40px;
	}
}

@media (max-width: 767px) {
	.accordion-item .accordion-button {
		padding: 15px 20px;
		padding-right: 40px;
	}
}

.accordion-item .accordion-button .title {
	font-size: 0.9rem;
	position: relative;
	font-weight: 600;
	float: left;
	line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.accordion-item .accordion-button .title {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.accordion-item .accordion-button .title {
		font-size: 14px;
	}
}

.accordion-item .accordion-button i {
	font-size: 15px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	top: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px;
}

.accordion-button i::before {
	font-family: 'lineicons';
	content: "\eb5c";
}

.accordion-button:not(.collapsed) i::before {
	content: "\eb30";
}

.accordion-button:not(.collapsed) {
	color: #fff;
	background-color: #29abe2;
	border-radius: 0.5rem 0.5rem 0 0;
}

.accordion-button:not(.collapsed) i::before {}

.accordion-button::after {
	display: none;
}

.accordion-collapse {
	border: none;
}

.accordion-body {
	border-radius: 0 0 0.5rem 0.5rem;
	padding: 25px;
	background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.accordion-body {
		padding: 30px;
	}
}

@media (max-width: 767px) {
	.accordion-body {
		padding: 20px;
	}
}

.accordion-body p {
	margin: 0;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	line-height: 1.1rem;
}

.accordion-body p:last-child {
	margin: 0;
}

.accordion-item {
	margin-bottom: 10px;
	-webkit-box-shadow: 0px 0px 20px #00000007;
	box-shadow: 0px 0px 20px #00000007;
	border-radius: 0.5rem;
}

.accordion-item:last-child {
	margin: 0;
}

/* Strona ofert: sekcja FAQ ma id="faq" (unikalne). Przyciski akordeonu mają overflow:hidden;
   main.css usuwa outline/shadow na button:focus (!important) — inset obwódka jest widoczna i nie wychodzi poza przycisk */
:is(#faq, #zasady) .accordion-button {
	transition: box-shadow 0.2s ease;
}

:is(#faq, #zasady) .accordion-button:focus-visible {
	outline: none !important;
	box-shadow: inset 0 0 0 2px rgba(41, 171, 226, 0.55) !important;
}

:is(#faq, #zasady) .accordion-button:not(.collapsed):focus-visible {
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.88) !important;
}


/* ====================== SECTION 24: CONTACT-OFFER-CARD ====================== */
.contact-offer-card {
	position: relative;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.contact-offer-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.contact-offer-card p {
	flex-grow: 0;
}

.contact-offer-card a.btn {
	margin-top: auto;
}

.contact-offer-card i {
	position: absolute !important;
	right: -10px;
	top: -15px;
	font-size: 120px;
	opacity: 0.06;
	pointer-events: none;
}

.archived-toggle {
	border: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.1rem;
	color: #111827;
	text-decoration: none;
}

.archived-toggle .icon-rotate {
	transition: transform .25s ease;
}

.archived-toggle.collapsed .icon-rotate {
	transform: rotate(0deg);
}

.archived-toggle:not(.collapsed) .icon-rotate {
	transform: rotate(180deg);
}

.duty-section-title {
	font-weight: 700;
}

/* Sekcje ofert pracy — kompaktowa lista pozioma (ikona-chip + treść).
   Siatka sterowana przez CSS Grid; nadpisuje kolumny Bootstrapa, więc
   układ jest spójny na wszystkich ofertach bez zmian w HTML. */
.row:has(> [class*="col-"] > .duty-card) {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 0 !important;
}

@media (min-width: 768px) {
	.row:has(> [class*="col-"] > .duty-card) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 1.75rem;
	}

	/* Samotna karta w ostatnim wierszu (nieparzysta liczba) — wyśrodkuj
	   ją w obu kolumnach, zachowując szerokość zwykłej karty. */
	.row:has(> [class*="col-"] > .duty-card) > [class*="col-"]:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
		width: 100%;
		max-width: calc(50% - 0.875rem);
	}
}

.row:has(> [class*="col-"] > .duty-card) > [class*="col-"] {
	width: auto !important;
	max-width: none !important;
	flex: initial !important;
	padding: 0 !important;
	margin: 0 !important;
}

.duty-card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"icon title"
		"icon text";
	column-gap: 1rem;
	align-items: start;
	align-content: start;
	height: 100%;
	background-color: #ffffff;
	border-radius: 0.85rem;
	padding: 1.1rem 1.15rem;
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: none !important;
	text-align: left !important;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	transform: translateY(0);
}

.duty-card:hover {
	transform: translateY(-2px);
	border-color: rgba(41, 171, 226, 0.45);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
}

.duty-icon {
	grid-area: icon;
	align-self: start;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	margin-bottom: 0;
	font-size: 1.35rem;
	color: #29abe2;
	background: rgba(41, 171, 226, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
}

.duty-title {
	grid-area: title;
	font-size: 1rem;
	font-weight: 800;
	margin: 0.1rem 0 0.35rem;
	text-align: left;
	text-transform: none;
	letter-spacing: 0;
	color: #1f2937;
	line-height: 1.25;
}

.duty-text {
	grid-area: text;
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.5;
}

.duty-list {
	grid-area: text;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.5;
}

.duty-list li {
	position: relative;
	padding-left: 0.85rem;
}

.duty-card > .duty-text {
	position: relative;
	padding-left: 0.85rem;
}

.duty-list li::before,
.duty-card > .duty-text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(41, 171, 226, 0.28);
}

.duty-list li + li {
	margin-top: 0.25rem;
}

/* Siatka kafelków technologii — jedna technologia / narzędzie na kafelek */
.tech-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	max-width: 920px;
	margin: 0 auto;
}

.tech-tile {
	display: grid;
	grid-template-rows: 42px auto;
	gap: 0.4rem;
	justify-items: center;
	align-content: start;
	flex: 0 0 108px;
	width: 108px;
	height: 108px;
	padding: 0.85rem 0.5rem;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 0.65rem;
	text-align: center;
	overflow: hidden;
	transition: height 0.28s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tech-tile--expandable {
	position: relative;
	padding-bottom: 0.95rem;
	cursor: pointer;
}

.tech-tile__cue {
	position: absolute;
	bottom: 0.3rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.55rem;
	line-height: 1;
	color: rgba(41, 171, 226, 0.38);
	opacity: 0.85;
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.28s ease;
}

.tech-tile--expandable:hover .tech-tile__cue,
.tech-tile--expandable:focus-visible .tech-tile__cue {
	opacity: 0;
	transform: translateX(-50%) translateY(3px);
}

.tech-tile--expandable:hover,
.tech-tile--expandable:focus-visible {
	height: auto;
	min-height: 108px;
	outline: none;
}

.tech-tile:hover,
.tech-tile:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(41, 171, 226, 0.45);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.tech-tile--expandable:focus-visible {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(41, 171, 226, 0.55);
}

.tech-tile__icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: rgba(41, 171, 226, 0.10);
	color: #29abe2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
}

.tech-tile__icon--devicon {
	background: #f8fafc;
	color: inherit;
}

.tech-tile__icon--devicon i {
	display: block;
	font-size: 2rem;
	line-height: 1;
}

.tech-tile__name {
	font-size: 0.78rem;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.25;
}

.tech-tile__hint {
	font-size: 0.62rem;
	font-weight: 500;
	color: #6c757d;
	line-height: 1.3;
	max-width: 100%;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-top: 0;
	transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.28s ease;
}

.tech-tile--expandable:hover .tech-tile__hint,
.tech-tile--expandable:focus-visible .tech-tile__hint {
	max-height: 2.6em;
	opacity: 1;
	margin-top: 0.2rem;
}

@media (prefers-reduced-motion: reduce) {
	.tech-tile {
		transition: none;
	}

	.tech-tile__hint {
		transition: none;
	}

	.tech-tile--expandable {
		height: auto;
		min-height: 108px;
	}

	.tech-tile--expandable .tech-tile__hint {
		max-height: none;
		opacity: 1;
		margin-top: 0.2rem;
	}

	.tech-tile__cue {
		display: none;
	}
}

@media (max-width: 575px) {
	.tech-grid {
		gap: 0.6rem;
	}

	.tech-tile {
		flex: 0 0 96px;
		width: 96px;
		height: 96px;
		padding: 0.7rem 0.4rem;
	}

	.tech-tile--expandable:hover,
	.tech-tile--expandable:focus-visible {
		min-height: 96px;
	}

	.tech-tile__icon--devicon i {
		font-size: 1.75rem;
	}
}

/* "Mile widziane atuty" — pomocnicza podsekcja wewnątrz oczekiwań.
   Lżejszy nagłówek z liniami po bokach: czyta się jako podgrupa należąca
   do sekcji, ale wyraźnie drugorzędna względem głównego tytułu. */
.row.mt-4 .duty-section-title {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 1.05rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #64748b;
}

.row.mt-4 .duty-section-title::before,
.row.mt-4 .duty-section-title::after {
	content: "";
	width: 34px;
	height: 1px;
	background: rgba(15, 23, 42, 0.18);
}

/* Karty atutów — opcjonalne, „mile widziane": delikatna przerywana ramka
   i subtelne tło, żeby odróżniały się od wymaganych (białych) kart,
   pozostając częścią tej samej sekcji. */
.row.mt-4 + .row:has(> [class*="col-"] > .duty-card) .duty-card {
	border-style: dashed;
	border-color: rgba(41, 171, 226, 0.35);
	background-color: rgba(41, 171, 226, 0.035);
}

.row.mt-4 + .row:has(> [class*="col-"] > .duty-card) .duty-icon {
	background: rgba(41, 171, 226, 0.14);
}


.job-offer-location,
.job-offer-location .location-icon {
	color: rgb(41 171 226 / 67%) !important;
	font-weight: 800;
	font-size: 0.9rem;

}

.job-offer-location {
	font-family: 'PT Sans Narrow';
}

/* Opcjonalny wstęp oferty — tylko gdy treść jest w karcie nagłówka */
.job-offer-head .job-offer-intro {
	margin: 1.25rem 0 0;
	max-width: none;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.job-offer-intro p {
	margin-bottom: 0.75rem;
	color: #8b939e;
	line-height: 1.6;
	text-align: start;
	font-size: 0.95rem;
}

.job-offer-intro p:last-child {
	margin-bottom: 0;
}

.job-offer-intro__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin: 0.65rem auto 0;
	padding: 0.15rem 0.55rem;
	border: 0;
	background: transparent;
	color: #29abe2;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
}

.job-offer-intro__toggle i {
	font-size: 0.95rem;
	transition: transform 0.2s ease;
}

.job-offer-intro__toggle:focus-visible {
	outline: 2px solid #29abe2;
	outline-offset: 3px;
	border-radius: 0.25rem;
}

@media (max-width: 767.98px) {
	.job-offer-intro p {
		text-align: center;
	}

	.job-offer-intro[data-collapse="mobile"] .job-offer-intro__toggle {
		display: flex;
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}

	.job-offer-intro[data-collapse="mobile"].is-collapsed p {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.job-offer-intro[data-collapse="mobile"]:not(.is-collapsed) .job-offer-intro__toggle i {
		transform: rotate(180deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.job-offer-intro__toggle i {
		transition: none;
	}
}

.job-offer-intro strong {
	color: #4a5563;
	font-weight: 700;
}

.job-offer-closing strong {
	color: #00263d;
	font-weight: 700;
}

.job-offer-areas {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 1.25rem 1.35rem;
	align-items: stretch;
	max-width: 56rem;
	margin: 0 auto;
}

.job-offer-areas .job-offer-area-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	overflow: hidden;
	text-align: left !important;
	padding: 1.15rem 1.25rem 1.15rem 4.35rem;
}

.job-offer-areas .job-offer-area-card::before {
	font-family: "bootstrap-icons";
	position: absolute;
	left: 0.55rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3.35rem;
	font-size: clamp(2.85rem, 5.5vw, 3.85rem);
	line-height: 1;
	text-align: center;
	color: rgba(41, 171, 226, 0.09);
	-webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
	mask-image: linear-gradient(to right, #000 80%, transparent 100%);
	pointer-events: none;
	z-index: 0;
}

.job-offer-areas .job-offer-area-card--radio::before {
	content: "\f1d6";
}

.job-offer-areas .job-offer-area-card--ship::before {
	content: "\f2d1";
}

.job-offer-areas .job-offer-area-card .duty-title,
.job-offer-areas .job-offer-area-card .duty-text {
	position: relative;
	z-index: 1;
	text-align: left;
}

.job-offer-areas .job-offer-area-card .duty-title {
	margin-top: 0;
}

.job-offer-areas .job-offer-area-card > .duty-text {
	padding-left: 0;
	margin-bottom: 0;
}

.job-offer-areas .job-offer-area-card > .duty-text::before {
	content: none;
}

.job-offer-areas__or {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #29abe2;
}

@media (max-width: 767.98px) {
	.job-offer-areas {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}
}

.job-offer-closing-section {
	padding-top: 2.15rem;
	padding-bottom: 2.15rem;
}

.job-offer-closing {
	display: flex;
	align-items: flex-start;
	gap: 1rem 1.15rem;
	max-width: 56rem;
	margin: 0.7rem auto 0;
}

.job-offer-closing__mark {
	flex-shrink: 0;
	margin-top: 0.05em;
	font-size: 2.75rem;
	line-height: 1;
	color: rgba(41, 171, 226, 0.55);
}

.job-offer-closing__body {
	min-width: 0;
	flex: 1;
}

.job-offer-closing p {
	margin-bottom: 0.9rem;
	color: #6b7687;
	line-height: 1.7;
	text-align: start;
}

.job-offer-closing p:last-child {
	margin-bottom: 0;
}

@media (max-width: 575px) {
	.job-offer-closing {
		gap: 0.75rem;
	}

	.job-offer-closing__mark {
		font-size: 2.15rem;
	}
}

/* Nagłówek oferty jako karta — tytuł po lewej, CTA po prawej.
   Ramka i tło nadają sens przestrzeni między nimi; spójne z kartami na liście ofert. */
.job-offer-head {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 0.5rem;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	padding: 1.5rem 1.75rem;
}

@media (max-width: 575px) {
	.job-offer-head {
		padding: 1.25rem 1.25rem;
	}
}

/* Duże CTA „Aplikuj na stanowisko” na stronach ofert pracy.
   Zbudowane na systemie kart (.btn-symbol) — dziedziczy akcent, kostkę ikony,
   unoszenie przy hover/focus oraz obsługę trybu wysokiego kontrastu.
   Tu tylko powiększenie i wyśrodkowanie pod pojedyncze, wyraziste CTA. */
.button a.btn-apply {
	display: inline-flex;
	width: auto;
	max-width: 100%;
	min-height: 60px;
	justify-content: center;
	padding: 16px 92px 16px 40px;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-transform: none;
}

.button a.btn-apply::after {
	width: 60px;
	font-size: 20px;
}

@media (max-width: 575px) {
	.button a.btn-apply {
		width: 100%;
		font-size: 1.1rem;
		padding: 14px 64px 14px 22px;
	}

	.button a.btn-apply::after {
		width: 54px;
	}
}

/* Strona stażu — lista obszarów + fakty o formule */
.staz-areas-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 52rem;
}

.staz-areas-list__item {
	position: relative;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.15rem 2.5rem 1.15rem 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.staz-areas-list__item:first-child {
	padding-top: 0;
}

.staz-areas-list__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.staz-areas-list__item .duty-icon {
	flex-shrink: 0;
}

.staz-areas-list__body {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.staz-areas-list__mark {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	font-size: 3.5rem;
	line-height: 1;
	color: rgba(41, 171, 226, 0.13);
	pointer-events: none;
	z-index: 0;
	-webkit-mask-image: linear-gradient(to right, #000 0%, #000 38%, transparent 78%);
	mask-image: linear-gradient(to right, #000 0%, #000 38%, transparent 78%);
}

@media (max-width: 575px) {
	.staz-areas-list__item {
		padding-right: 2rem;
	}

	.staz-areas-list__mark {
		font-size: 2.75rem;
	}
}

.staz-areas-list__title {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.25rem;
	color: #1f2937;
	line-height: 1.25;
}

.staz-areas-list__text {
	margin: 0;
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.5;
}

.staz-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

@media (max-width: 991px) {
	.staz-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

.staz-fact {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 0.85rem;
	padding: 1.15rem 1.15rem 1.1rem;
	text-align: center;
}

.staz-fact__icon {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	font-size: 3.5rem;
	line-height: 1;
	color: rgba(41, 171, 226, 0.13);
	pointer-events: none;
	z-index: 0;
	-webkit-mask-image: linear-gradient(to right, #000 0%, #000 38%, transparent 78%);
	mask-image: linear-gradient(to right, #000 0%, #000 38%, transparent 78%);
}

.staz-fact__content {
	position: relative;
	z-index: 1;
}

.staz-fact strong {
	display: block;
	color: #1f2937;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.staz-fact span {
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.45;
}


/* ====================== SECTION 25: PRODUCT-SALES ====================== */
.product-sales-info p {
	font-size: 0.8rem !important;
	opacity: 0.6 !important;
}

@media (max-width: 767px) {
	.product-sales-info p {
		font-size: 0.7rem !important;
		opacity: 0.75 !important;
		line-height: 1.35;
		margin-bottom: 1rem !important;
	}
}

.image-radius img {
	border-radius: 0.5rem !important;
	overflow: hidden;
}

.gallery-img {
	height: 240px;
	width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: .5rem;
}

@media (max-width: 1199px) {
	.gallery-img {
		height: 220px;
	}
}

@media (max-width: 767px) {
	.gallery-img {
		height: 200px;
	}
}


/* ====================== SECTION 26: SPEC-TABLE + CARD-SERVICES ====================== */
.specs-table-wrap {
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 0.2rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

.specs-table-wrap:hover {
	transform: translateY(-2px);

}

.specs-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}

.specs-table thead th {
	padding: 0.95rem 1rem;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.75);
	background: rgba(15, 23, 42, 0.02);
	border-bottom: 0.5px dashed #E5E9EE;
	font-family: 'DM Sans', sans-serif;
	border-bottom: 0.5px dashed #E5E9EE;
}

.specs-table thead {
	box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.10);
}

.specs-table tbody td {
	padding: 0.55rem 1.2rem;
	vertical-align: top;
	color: rgba(15, 23, 42, 0.85) !important;
}

.specs-table tbody tr+tr td {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.specs-table tbody tr {
	transition: background-color 0.18s ease;
}

.specs-table tbody tr:hover {
	background: rgba(15, 23, 42, 0.03);
}

.specs-table tbody td:first-child {
	font-weight: 600;
	color: rgba(15, 23, 42, 0.80) !important;
	font-family: 'PT Sans Narrow', sans-serif;
}

.specs-table :is(a, button, [tabindex]):focus-visible {
	outline: 2px solid rgba(15, 23, 42, 0.25);
	outline-offset: 2px;
	border-radius: 0.25rem;
}

@media (max-width: 991.98px) {
	.specs-table-wrap {
		padding: 1rem;
	}

	.specs-table thead th,
	.specs-table tbody td {
		padding: 0.75rem 0.85rem;
	}
}

.card-service-labs {
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

/* Usługi — para CTA w #wstep (np. akredytowane laboratoria) */
#wstep .button {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem;
	max-width: 100%;
}

#wstep .button .btn,
#wstep .button .btn-alt {
	margin-left: 0 !important;
	flex: 1 1 auto;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	#wstep .button {
		flex-wrap: nowrap;
		gap: 0.35rem;
	}

	#wstep .button .btn,
	#wstep .button .btn-alt {
		flex: 1 1 0;
		min-width: 0;
		padding: 10px 8px;
		font-size: 13px;
		line-height: 1.25;
		min-height: 44px;
	}
}

/* Produkty — para przycisków pobierania kart (PL + EN) w jednej linii na mobile */
@media (max-width: 991.98px) {
	#product-download .row {
		align-items: stretch;
	}

	#product-download .row > .col-12.col-lg-6 {
		margin-bottom: 0.75rem;
	}

	#product-download .row > .col-12.col-lg-3 {
		flex: 1 1 0;
		width: auto;
		max-width: none;
		min-width: 0;
		align-self: stretch;
	}

	#product-download .row > .col-12.col-lg-3.mt-4 {
		margin-top: 0 !important;
	}

	#product-download .button {
		height: 100%;
		display: flex;
	}

	#product-download .button .btn-download,
	#product-download .button .btn-download-alt {
		flex: 1 1 auto;
		width: 100%;
		height: 100%;
		padding: 10px 42px 10px 10px;
		font-size: 13px;
		line-height: 1.25;
		min-height: 44px;
		align-items: center;
	}

	#product-download .button .btn-download::after,
	#product-download .button .btn-download-alt::after {
		width: 40px;
		font-size: 13px;
	}
}

@media (max-width: 399.98px) {
	#product-download .row {
		--bs-gutter-x: 0.35rem;
	}

	#product-download .button .btn-download,
	#product-download .button .btn-download-alt {
		padding: 10px 38px 10px 8px;
		font-size: 12px;
	}

	#product-download .button .btn-download::after,
	#product-download .button .btn-download-alt::after {
		width: 36px;
		font-size: 12px;
	}
}

.card-service-labs:hover {
	transform: translateY(-2px);
}


.service-acc-logo-bar {
	height: 84px;
}

.service-acc-logo {
	max-height: 56px;
	width: auto;
	object-fit: contain;
}

@media (min-width: 768px) {
	.service-acc-logo-bar {
		height: 96px;
	}

	.service-acc-logo {
		max-height: 68px;
	}
}

@media (min-width: 992px) {
	.service-acc-logo-bar {
		height: 142px;
	}

	.service-acc-logo {
		max-height: 160px;
	}
}

.card-service-acc-box {
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

.card-service-acc-box:hover {
	transform: translateY(-2px);
}


.service-qna-card {
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

.service-qna-card:hover {
	transform: translateY(-2px);
}

.service-qna-card__header {
	background: #29abe2;
	padding: 18px 22px;
}

.service-qna-card__header h3 {
	color: white !important
}

.service-qna-card__title {
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.25;
}

.service-qna-card__body {
	padding: 18px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-qna-card__body ul {
	padding-left: 1.1rem;
	margin-bottom: 0;
}

.service-qna-card__body li {
	margin-bottom: .5rem;
}

.service-qna-card__body li:last-child {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.service-qna-card {
		min-height: 10rem;
	}
}

.service-qna-card__body p {
	font-size: 0.9rem;
	line-height: 1.2rem;

}


/* ====================== SECTION 27: HAM-BOX ====================== */
.ham-box-tech {
	border-radius: 0.5rem !important;
	border: 1px solid rgba(15, 23, 42, 0.09) !important;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
	transition: transform .3s ease, box-shadow .3s ease !important;
	transform: translateY(0) !important;
}

.ham-box-tech:hover {
	transform: translateY(-2px) !important;

}

.toczek-box {
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 0.2rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform: translateY(0);
}

.toczek-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.toczek-box img {
	max-width: 85%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.toczek-box figcaption {
	margin-top: 0.45rem;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	text-transform: uppercase
}

.scot-module-card {
	background-color: #ffffff;
	border-radius: 0.5rem;
	padding: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform .3s ease, box-shadow .3s ease;
	transform: translateY(0);
}

.scot-module-card:hover {
	transform: translateY(-2px);
}

.scot-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.scot-icon img,
.scot-icon svg {
	width: 55px;
	height: 55px;
	display: block;
}


.scot-module-title {
	font-weight: 600;
	line-height: 1.2;
}

.scot-module-desc {
	margin-top: .35rem;
	font-size: 0.95rem;
	color: rgba(15, 23, 42, 0.75);
	line-height: 1.4;
}

@media (max-width: 575.98px) {
	.scot-module-card {
		padding: 1.25rem;
	}
}

.obronabierna-box {
	background-color: #ffffff;
	border-radius: 0.6rem;
	padding: 0.6rem 0.5rem 0.9rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.obronabierna-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.obronabierna-box img {
	max-width: 95%;
	height: auto;
	margin: 0 auto 0.4rem;
	display: block;
}

.obronabierna-box figcaption {
	padding: 0 0.4rem;
}

.obronabierna-title {
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0.35rem 0 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.obronabierna-desc {
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.4;
	color: #475569;
	margin: 0;
}

/* ====================== SECTION 28: PORTFOLIO ====================== */
.portfolio-section .portfolio-btn-wrapper {
	margin-bottom: 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.portfolio-section .section-title {
	margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.portfolio-section .section-title {
		margin-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.portfolio-section .section-title {
		margin-bottom: 40px;
	}
}

.portfolio-section .grid {
	margin-top: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.portfolio-section .grid {
		margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.portfolio-section .grid {
		margin-top: 40px;
	}
}

.portfolio-section .portfolio-btn-wrapper button {
	padding: 10px 23px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	background: #E5E9EE;
	color: #051441;
	border-radius: 0.5rem;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: all .3s ease-out 0s;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.portfolio-section .portfolio-btn-wrapper button:hover {
	background: #29abe2;
	color: #fff;
}

/* Filtry: jak hover przy Tabie — main.css usuwa outline/box-shadow na button:focus (!important) */
.portfolio-section .portfolio-btn-wrapper button:focus-visible {
	outline: none !important;
	background: #29abe2 !important;
	color: #fff !important;
	box-shadow:
		0 4px 12px rgba(15, 23, 42, 0.12),
		0 0 0 2px rgba(41, 171, 226, 0.55),
		0 0 0 5px rgba(41, 171, 226, 0.18) !important;
}

.portfolio-section .portfolio-btn-wrapper button.activated:focus-visible {
	box-shadow:
		0 4px 12px rgba(15, 23, 42, 0.14),
		0 0 0 2px rgba(255, 255, 255, 0.95),
		0 0 0 6px rgba(0, 38, 61, 0.22) !important;
}

.portfolio-section .portfolio-btn-wrapper button.activated {
	background: #29abe2 !important;
	color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.portfolio-section .portfolio-btn-wrapper button {
		margin-right: 10px;
		padding: 7px 18px;
	}
}

@media (max-width: 767px) {
	.portfolio-section .portfolio-btn-wrapper {
		flex-direction: column;
		align-items: stretch;
	}

	.portfolio-section .portfolio-btn-wrapper button {
		width: 100%;
		margin-right: 0;
		padding: 10px 16px;
		text-align: center;
	}
}

.portfolio-section .portfolio-btn-wrapper button:last-child {
	margin-right: 0;
}

.portfolio-item-wrapper {
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 30px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	transition: transform .35s ease, box-shadow .35s ease;
}

.portfolio-item-wrapper:hover,
.portfolio-item-wrapper:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
	border-color: rgba(0, 38, 61, 0.1);
}

.portfolio-item-wrapper:hover .portfolio-img img,
.portfolio-item-wrapper:focus-within .portfolio-img img {
	transform: scale(1.1);
}

.portfolio-item-wrapper .portfolio-img a {
	display: block;
	line-height: 0;
}

.portfolio-section .portfolio-item-wrapper .portfolio-img a:focus-visible {
	outline: none !important;
	text-decoration: none !important;
	box-shadow: inset 0 0 0 3px rgba(41, 171, 226, 0.88), inset 0 0 0 6px rgba(255, 255, 255, 0.22) !important;
}

.portfolio-item-wrapper .portfolio-img img {
	width: 100%;
	transition: all 0.4s ease;
}

.portfolio-item-wrapper .portfolio-overlay {
	position: absolute;
	left: 0.5rem;
	bottom: 0.5rem;
	background-color: rgb(248 249 250 / 90%);
	padding: 13px 30px;
	border-radius: 0.3rem;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.096);
	display: inline-block;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content h4 {
	font-size: 0.9rem;
	font-weight: 500 !important;
	text-transform: uppercase;
	font-family: 'League Spartan' !important;
	margin-top: 0.1rem;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn {
	padding: 8px 27px;
	color: #fff;
	border: 2px solid #fff;
}

.portfolio-item-wrapper .portfolio-overlay .overlay-content .border-btn:hover {
	color: #7E57FF;
	background: #fff;
}

.single-portfolio .single-portfolio-img {
	border-radius: 0;
	overflow: hidden;
}

.single-portfolio .single-portfolio-img img {
	width: 100%;
}



/* TEMPORARY */
.funding {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
}

.funding img {
    height: 1.5em;
    margin: 0 6px;
}

/* mobile */
@media (max-width: 767.98px) {
    .funding {
        font-size: 16px;
    }

    .funding img {
        height: 1.4em;
        display: inline-block;
    }
}
/* TOOLTIPS COPY PASTE */
.copy-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.copy-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 4px);
  left: 0;
  background: black;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.copy-tooltip:hover::after {
  opacity: 1;
}

/* ====================== SECTION 29: FIK PAGE ====================== */
.fik-poster-wrapper {
	background: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
	padding: 0.6rem;
	position: sticky;
	top: 110px;
}

.fik-poster-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.4rem;
}

.fik-poster-fallback {
	min-height: 520px;
	border-radius: 0.4rem;
	padding: 1rem;
	background: #eef2f7;
	border: 1px dashed rgba(15, 23, 42, 0.25);
	color: rgba(15, 23, 42, 0.7);
	font-size: 0.95rem;
	text-align: center;
	align-items: center;
	justify-content: center;
}

@media (max-width: 991px) {
	.fik-poster-wrapper {
		position: static;
		top: auto;
	}

	.fik-poster-fallback {
		min-height: 340px;
	}
}

/* Ikona przycisku dostępności w treści deklaracji (jak w widgecie) */
#zasady .a11y-trigger-icon-sample {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35em;
	height: 1.35em;
	margin: 0 0.2em;
	vertical-align: -0.2em;
	border: 2px solid rgba(41, 171, 226, 0.55);
	border-radius: 50%;
	background: #00263d;
	color: #fff;
	font-size: 0.72em;
	line-height: 1;
}
