/* === Variables: Colors and fonts === */

:root {
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-text-base: #000000;

    --cl-blue: #4085fa;
    --cl-blue-midnight: #0c1378;
    --cl-blue-slate: #91afce;
    --cl-blue-light: #b8d8f9;
    --cl-blue-ghost: #f5faff;

    --cl-gray: #888888;
    --cl-gray-light: #c8c8c8;
    --cl-gray-48: #484848;
    --cl-gray-f8: #f8f8f8;
    --cl-white: #ffffff;

    --cl-red: #d41919;

    --filter-white: invert(98%) sepia(5%) saturate(266%) hue-rotate(72deg) brightness(113%) contrast(100%);

    --filter-blue: invert(42%) sepia(92%) saturate(2089%) hue-rotate(203deg) brightness(101%) contrast(96%);
    --filter-blue-midnight: invert(8%) sepia(80%) saturate(1200%) hue-rotate(220deg) brightness(60%) contrast(120%);
    --filter-blue-slate: invert(72%) sepia(15%) saturate(400%) hue-rotate(180deg) brightness(95%) contrast(90%);
    --filter-blue-light: brightness(0) saturate(100%) invert(81%) sepia(8%) saturate(1342%) hue-rotate(179deg) brightness(103%) contrast(95%);
    --filter-blue-ghost: invert(97%) sepia(5%) saturate(200%) hue-rotate(180deg) brightness(110%) contrast(98%);

    --filter-gray: invert(55%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
    --filter-gray-light: invert(82%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(88%);
    --filter-white: invert(98%) sepia(5%) saturate(266%) hue-rotate(72deg) brightness(113%) contrast(100%);

    --filter-red: invert(18%) sepia(85%) saturate(1500%) hue-rotate(350deg) brightness(90%) contrast(110%);

    --font-outfit: 'Outfit', 'outfit-fallback', sans-serif;
    --font-playfair: 'Playfair Display', 'playfair-fallback', serif;

    --fsadj-outfit: none;/*0.52;*/
    --fsadj-playfair: none; /*0.5;*/
}

@font-face {
  font-family: 'outfit-fallback';
  src: local('Georgia');
  size-adjust: 107.0%;
  ascent-override: 90.2%;
  descent-override: 23.1%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'playfair-fallback';
  src: local('Segoe UI');
  size-adjust: 110.0%;
  ascent-override: 80.8%;
  descent-override: 26.4%;
  line-gap-override: 0%;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { padding: 0; margin: 0; font-family: var(--font-outfit); color: var(--cl-text-base); position: relative; -webkit-font-smoothing: antialiased; }
div { box-sizing: border-box; }
section { }

p { margin: 0 0 30px; }
img { display: block; max-width: 100%; height: auto; }

.hidden { display: none !important; }

.container { position: relative; padding: 0 20px; width: 100%; margin: 0 auto; }
.mobile_only { display: block; }
.desktop_only { display: none; }

.pc__h2 { font-size: 40px; line-height: 42px; letter-spacing: 0.2px; font-weight: 900; padding: 0; margin: 0 0 67px; text-align: center; }
.pc__h2 em { font-family: var(--font-playfair); font-style: italic; font-weight: 400; }

.pc__perex { font-size: 18px; line-height: 28px; letter-spacing: 0.02em; font-weight: 400; margin: 0 auto 58px; text-align: center; max-width: 900px; margin: 0 auto; color: var(--cl-black); }


@media screen and (min-width: 1260px) {
    .container { padding: 0; max-width: 1440px; }

    .mobile_only { display: none; }
    .desktop_only { display: block; }

    .pc__h2 { font-size: 60px; line-height: 80px; }
}


/* === Header === */

.header__items { max-width: 1120px; margin: 0 auto; }

.header { position: fixed; display: grid; grid-template-columns: 1fr 30px; grid-template-areas: "logo burger"; gap: 40px; box-sizing: border-box; background: var(--cl-white); width: 100%; z-index: 101; transition: all 0.2s ease; }
.header { background: rgba(255, 255, 255, 0.8);  backdrop-filter: blur(17px); -webkit-backdrop-filter: blur(17px); }
.header__nav { grid-area: nav; transition: all 0.2s ease; }
.header__nav div { box-sizing: border-box; transition: all 0.2s ease; }
.header__nav div a { display: block; position: relative; box-sizing: border-box; color: #1d1d1d; font-family: var(--font-outfit); text-transform: uppercase; text-decoration: none; transition: all 0.2s ease; }

.header__logo { grid-area: logo; display: none; }
.header__loga { grid-area: loga; display: none; }
.header__loga a:hover svg {  }

.header__burger { grid-area: burger; position: relative; padding: 0; width: 30px; height: 25px; text-align:}
.header__burger a .header__burger__inner { position: relative; width: 30px; height: 25px; }
.header__burger a .header__burger__symbol { position: absolute; top: 12px; background: var(--cl-black); width: 30px; height: 5px; transition: all 0.2s ease; }
.header__burger a .header__burger__symbol::before { content: ''; position: absolute; left: 0; top: -10px; background: var(--cl-black); width: 30px; height: 5px; transition: all 0.2s ease; }
.header__burger a .header__burger__symbol::after { content: ''; position: absolute; left: 0; top: 10px; background: var(--cl-black); width: 30px; height: 5px; transition: all 0.2s ease; }
.header__burger a:hover .header__burger__symbol { background: var(--cl-black); }
.header__burger a:hover .header__burger__symbol::before { background: var(--cl-black); }
.header__burger a:hover .header__burger__symbol::after { background: var(--cl-black); }
.header__burger.showed a .header__burger__symbol { position: absolute; top: 5px; background: var(--cl-black); width: 30px; height: 0; transition: all 0.2s ease; }
.header__burger.showed a .header__burger__symbol::before { content: ''; position: absolute; left: 0; top: 10px; background: var(--cl-black); width: 30px; height: 5px; transition: all 0.2s ease; transform: rotate(45deg); }
.header__burger.showed a .header__burger__symbol::after { content: ''; position: absolute; left: 0; top: 10px; background: var(--cl-black); width: 30px; height: 5px; transition: all 0.2s ease; transform: rotate(-45deg); }
.header__burger.showed a:hover .header__burger__symbol::before { background: var(--cl-black); }
.header__burger.showed a:hover .header__burger__symbol::after { background: var(--cl-black); }

@media screen and (min-width: 0) {
    .header nav { display: block; }
    .header nav div {  margin: 0 20px; }
    .header nav div a {  font-weight: 700; font-size: 16px; line-height: 40px; padding: 10px 0; }
    .header nav div:first-child { border-top: 0; }
    .header nav div:last-child { padding-bottom: 20px; }

    .header { padding: 0 20px; height: 70px; align-items: center; align-content: center; position: fixed; }
    .header__logo { display: block; }

    .header.nav_fixed .header { }
    .header.nav_fixed .header__loga { display: none; }
    .header__items { display: none; }
    .header__items.showed { display: block; position: absolute; top: 70px; left: 0; right: 0; }
    .header__items.showed { background: rgba(255, 255, 255, 0.96);  backdrop-filter: blur(17px); -webkit-backdrop-filter: blur(17px); }
}




@media screen and (min-width: 1260px) {
    .header__burger { display: none; }
    .header { grid-template-columns: 180px 1fr 160px; grid-template-areas: "logo nav loga"; gap: 20px; height: 120px; }
    .header nav { display: flex; justify-content:space-between; justify-items: center; align-items: center; align-content: center; text-align: center; }
    .header nav div { border-top: 0; margin: 0; text-align: center; }
    .header nav div a { font-weight: 600; font-size: 12px; line-height: 32px; padding: 0; padding: 8px 16px; }
    .header nav div a:hover { text-decoration: none; }
    .header nav div a.active { }
    .header nav div:last-child { padding-bottom: 0; }


    .header__items { display: block; width: 100%; }

    .header { }
    .header.nav_fixed { position: fixed; }
    .header.nav_fixed nav div a { }
    .header.nav_fixed .header__logo a img { position: relative; margin-top: -5px; }
    .header.nav_fixed .header__loga > div.header__loga__finmag img { margin-top: 0px; }
    .header.nav_fixed .header__loga > div.header__loga__penize img { position: relative; display: block; margin-top: -4px; }

    .header.nav_fixed .header__loga { display: flex; justify-content: flex-end; }
    .header.nav_fixed .header__loga > div:not(:first-child) { margin-left: 25px; }
    .header.nav_fixed .header__loga > div img { }
}
@media screen and (min-width: 1440px) {
}
@media screen and (min-width: 1720px) {
    .header { grid-template-columns: 240px 1fr 190px; grid-template-areas: "logo nav loga"; gap: 20px; height: 120px; }

    .header nav div a { font-size: 14px; line-height: 32px;}

    .header.nav_fixed .header__logo img { max-width: 100%; }
    .header.nav_fixed .header__loga > div { margin-left: 30px; }
    .header.nav_fixed .header__loga > div:first-child { margin-left: 0; }
    .header.nav_fixed .header__loga > div img { max-width: 100%; }

}

/* === Header hovery ZAČÁTEK === */
/* Hover + active položek menu (stejný vzhled) */

@media screen and (min-width: 1260px) {
    .header__nav div a { border-radius: 999px; }
    .header__nav div a:hover,
    .header__nav div a.active { background: var(--cl-blue); color: var(--cl-white); text-decoration: none; }

    .header__nav div a { padding: 8px 16px; }
    .header__nav div a:hover,
    .header__nav div a.active { text-decoration: none; }
}

/* Logo Podnikavé Česko 2026 */
.header__logo a img { transition: filter 0.2s ease; }
.header__logo a:hover img { filter: var(--filter-blue); }

/* Partnerská loga */
.header__loga a img { transition: filter 0.2s ease; }
.header__loga__finmag a:hover img { filter: var(--filter-blue); }
.header__loga__penize a:hover img { filter: var(--filter-blue); }
/* === Header hovery KONEC === */


/* === Main === */
.main { }
.main__progress_bar { display: none; }

/* === Hero Section === */
.pc__hero { position: relative; text-align: center; padding: 70px 0 40px; }
.pc__hero::before { content: ''; position: absolute; margin-top: 70px; inset: 0; background:url(/img/claim_background.webp) no-repeat top center; background-size: cover; max-height: 1520px; pointer-events: none; }
.pc__hero > div { position: relative; }
.pc__hero__title { font-family: var(--font-outfit); font-size: clamp(50px, 7vw, 120px); line-height: 1.2; font-weight: 400; color: var(--cl-black); padding: 80px 0 0; margin-bottom: 60px; }
.pc__hero__title strong { font-weight: 900; }
.pc__hero__title em { font-family: var(--font-playfair); font-style: italic; font-weight: 400; }

.pc__hero__claim { font-size: clamp(25px, 1.5vw, 30px); font-weight: 400; letter-spacing: 0.02em; margin-bottom: 70px; }

.pc__hero__scroll { position: relative; z-index: 1; padding: 0 0 10px; opacity: 1; animation: scrollBounce 2s ease-in-out infinite; display: flex; justify-content: center; justify-items: center; }
.pc__hero__scroll a { display: inline-flex; align-items: center; justify-content: center; line-height: 0; text-decoration: none; cursor: pointer; transition: opacity 0.2s ease; }
.pc__hero__scroll a:hover { opacity: 0.7; }
.pc__hero__scroll a img { display: block; }

html { scroll-behavior: smooth; }
#clanky, #partneri, #vybrali-jsme, #sme, #doporucujeme, #nominace, #pomoc, #pribehy { scroll-margin-top: 80px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(22px); }
}

@media screen and (min-width: 1260px) {
    .pc__hero { padding: 120px 0 40px; }
    .pc__hero::before { margin-top: 120px;}
    .pc__hero__claim { margin-bottom: 110px; }
    .pc__hero__scroll { padding: 0 0 220px; }

    #clanky { scroll-margin-top: 160px; }
}

/* === Footer === */
.footer { position: relative; height: 80px; }
.footer__map { position: absolute; right: 0px; bottom: 0; pointer-events: none; margin-bottom: 100px; }
.footer__map::before { content: ''; position: absolute; right: 0; top: -50px; pointer-events: none; width: 360px; height: 140px; background: url('/img/mapa_footer.png') no-repeat; background-size:cover; }
.footer__inner { position: relative; margin: 0 auto; overflow: hidden; background: rgba(255, 255, 255, 0.5);  backdrop-filter: blur(17px); -webkit-backdrop-filter: blur(17px); }
.footer__inner .container { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 24px 20px; }
.footer__logo { flex-shrink: 0; }
.footer__logo img { display: block; height: 32px; width: auto; }
.footer__text { font-size: 13px; line-height: 20px; color: var(--cl-black); }
.footer__text p { margin: 0; }
.footer__text a { color: var(--cl-black); text-decoration: underline; }
.footer__text a:hover { text-decoration: none; }

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 1260px) {
    .footer__map::before { right: 0; top: -200px; width: 720px; height: 280px; background-size: auto; }
}





@media (max-width: 640px) {

    .map-section__pin-label {
        font-size: 0.75rem;
    }
}

/* === Mapa === */

.pc__mapa { position:relative; z-index: 8; }
.pc__mapa__header { z-index: 20; }
.pc__mapa__logo { text-align: center; padding: 127px 0 0; margin: 0 0 47px; }
.pc__mapa p { text-align: center; z-index: 21; }
.pc__mapa__mapka { text-align: center; z-index: 10; }
.pc__mapa__mapka img { margin: 0 auto; z-index: 11;}
/*
.pc_mapa__mapka svg { z-index: 12; }
.pc_mapa__mapka svg g { z-index: 13; }
.pc_mapa__mapka svg g path { fill: #404040; transition: all 0.2s ease; z-index: 16; }
.pc_mapa__mapka svg g:hover { z-index: 14; }
.pc_mapa__mapka svg g:hover path { fill: #ffd502; cursor: pointer; z-index: 17; }
.pc_mapa__mapka svg g.active { z-index: 15; }
.pc_mapa__mapka svg g.active path { fill: #ffd502; filter: drop-shadow(0px 13px 50px #000000f3); z-index: 18; transform: translateX(-10);}
*/

.pc__mapa__mapka .desktop_only { text-align: center; overflow: hidden; margin: 0 auto; }

.pc__mapa__mapka svg { z-index: 12; overflow: visible; margin: 0 auto; }
.pc__mapa__mapka svg path { fill: var(--cl-blue-midnight); transition: all 0.2s ease; z-index: 16; }

.pc__mapa__monstr { position: absolute; left: calc(50% - 45px); width: 89px; height: 106px; z-index: 30; pointer-events: none; transition: 0.4s ease; }
.pc__mapa__monstr img { position: absolute; left: 0; top: 0; filter: var(--filter-blue-light); z-index: 32; }
.pc__mapa__monstr span { display: block; box-sizing: border-box; position: relative; width: 100%; height: 40px; z-index: 33; color: var(--cl-blue-midnight); font-size: 18px; line-height: 22px; letter-spacing: 0.52px; font-weight: 600; padding: 36px 0 0; text-align: center; } 

@media screen and (min-width: 0) {
    .pc__mapa { padding: 100px 0 0; }
    .pc__mapa__logo { display: none;}
    .pc__mapa p { margin: 0 0 30px; font-size: 16px; line-height: 24px; font-weight: 400; }
    .pc__mapa__mapka { margin: 0; padding: 0 0 50px; }
    .pc__mapa__mapka .mobile_only { aspect-ratio: 768 / 437; }

    .pc__mapa__monstr { top: calc(50% - 61px); }
}
@media screen and (min-width: 1260px) {
    .pc__mapa__mapka .desktop_only { display: inline-block; }
    .pc__mapa { padding: 0; }
    .pc__mapa__logo { display: block; }
    .pc__mapa__logo > a { display: inline-block; height: 59px; }
    .pc__mapa p { margin: 0 45px 30px; font-size: 22px; line-height: 32px; font-weight: 600; }
    .pc__mapa__mapka { margin: -45px 0 0; padding: 0 0 66px; }

    .pc__mapa__mapka svg path:hover { fill: var(--cl-blue); cursor: pointer; z-index: 17; }
    .pc__mapa__mapka svg path.clicked { fill: var(--cl-blue); z-index: 18; position: absolute;}

    .pc__mapa__mapka .pc__mapa__kraj__monstr { display: none; pointer-events: none; }
    .pc__mapa__kraj__monstr { position: absolute; width: 89px; height: 106px; z-index: 30; }
    .pc__mapa__kraj__monstr img { position: absolute; left: 0; top: 0; width: 89px; height: 106px; filter: var(--filter-blue-light); z-index: 32;}
    .pc__mapa__kraj__monstr span { display: block; box-sizing: border-box; position: relative; width: 100%; height: 40px; z-index: 33; color: var(--cl-blue-midnight); font-size: 18px; line-height: 20px; letter-spacing: 0.36px; font-weight: 600; padding: 36px 0; margin-bottom: 26px; text-align: center; } 
    .pc__mapa__kraj__monstr div { display: block; position: absolute; left: 50%; transform: translateX(-50%); width: max-content; max-width: none; text-align: center; overflow: visible; padding: 0px 5px; color: var(--cl-white); font-family: var(--font-outfit); font-weight: 600; font-size: 16px; line-height: 20px; letter-spacing: 0.36px; }
    .pc__mapa__mapka .pc__mapa__kraj__monstr.active { display: block; }
    .pc__mapa__mapka.kraj_clicked .pc__mapa__kraj__monstr.clicked { display: block; }

    .pc__mapa__monstr { top: calc(50% - 111px); }
    .pc__mapa__monstr { left: calc(50% - 81px); width: 135px; height: 162px; }
    .pc__mapa__monstr span { display: block; box-sizing: border-box; position: relative; width: 100%; height: 40px; z-index: 33; color: var(--cl-blue-midnight); font-size: 26px; line-height: 29px; letter-spacing: 0.52px; font-weight: 600; padding: 48px 0 0; text-align: center; } 
    .pc__mapa__mapka:hover .pc__mapa__monstr { opacity: 0; } 
    .pc__mapa__mapka.kraj_selected .pc__mapa__monstr { display: none; }
    .pc__mapa__mapka.kraj_clicked .pc__mapa__monstr { display: none; }
}



/* === Články === */

.pc__clanky { margin-bottom: 166px; }
.pc__clanky__list { position: relative; margin-bottom: 52px; }
.pc__clanky__line { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px 35px; align-items: start;  }
.pc__clanky__line__item { position: relative; box-shadow: 0px 3px 20px #0000001A; padding: 12px 10px 12px; }
.pc__clanky__line__item__image { border-radius: 20px; overflow: hidden; margin-bottom: 15px; }
.pc__clanky__line__item__image img { width: 100%; height: auto; transition: transform 0.2s ease; }
.pc__clanky__line__item__image__company { position: absolute; top: 24px; left: 24px; z-index: 1; background: var(--cl-blue-midnight); color: var(--cl-white); font-family: var(--font-playfair); font-style: italic; font-size: 14px; line-height: 1.2; padding: 6px 14px; border-radius: 50px; }
.pc__clanky__line__item:hover .pc__clanky__line__item__image img { transform: scale(1.075); }
/*.pc__clanky__line__item:hover .pc__clanky__line__item__image__company { background: var(--cl-blue); }*/
/*.pc__clanky__line__item:hover .pc__clanky__line__item__text__author { text-decoration: underline; }*/

.pc__clanky__line__item__text { }
.pc__clanky__line__item__text__title { font-size: 26px; line-height: 32px; font-weight: 900;  margin: 0 0 35px; }
.pc__clanky__line__item__text__title a { text-decoration: none; color: var(--cl-black); }
.pc__clanky__line__item__text__title a:before { left: 0; top: 0; right: 0; bottom: 0; content: ""; position: absolute; }
.pc__clanky__line__item__text__title a:hover { text-decoration: underline; }
.pc__clanky__line__item__text__author { font-family: var(--font-playfair); font-size: 20px; font-style: italic; color: var(--cl-blue); }

.pc__clanky__button { text-align: center; }
.pc__clanky__button__link { font-family: var(--font-outfit); font-size: 20px; line-height: 25px; color: var(--cl-black); text-decoration: underline; }
.pc__clanky__button__link:hover { text-decoration: none; }
.pc__clanky__button__link.inactive { color: var(--cl-gray); text-decoration: none; }


.pc__clanky__noa { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 28px 32px; background: var(--cl-blue-ghost); border: 1px solid var(--cl-blue-light); border-radius: 18px; text-align: center; align-items: center; }
.pc__clanky__noa__icon { display: flex; align-items: center; justify-content: center; }
.pc__clanky__noa__icon img { width: 14px; height: 48px; display: block; }
.pc__clanky__noa__content { display: flex; flex-direction: column; gap: 6px; }
.pc__clanky__noa__content span { display: block; font-family: var(--font-outfit); font-size: 18px; line-height: 28px; letter-spacing: 0.01em; }
.pc__clanky__noa__content span:first-child { color: var(--cl-black); font-weight: 700; }
.pc__clanky__noa__content span:last-child { color: var(--cl-blue-midnight); font-family: var(--font-playfair); font-style: italic; font-weight: 400; }
.pc__clanky__noa__button { display: flex; align-items: center; justify-content: center; }
.pc__clanky__noa__button a { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-outfit); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; color: var(--cl-white); background: var(--cl-blue-midnight); border: 1px solid var(--cl-blue-midnight); border-radius: 999px; padding: 14px 28px; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.pc__clanky__noa__button a:hover { background: var(--cl-black); border-color: var(--cl-blue); color: var(--cl-white); }

@media screen and (min-width: 1260px) {
    .pc__clanky__noa { grid-template-columns: 24px 1fr auto; gap: 32px; padding: 24px 32px; text-align: left; }
    .pc__clanky__noa__button { justify-content: flex-end; }

    .pc__clanky__line__item:nth-child(3n+2) { margin-top: 62px; }
}

/* === Články - responsivní mřížka (mobile/tablet override) === */
@media screen and (max-width: 1259px) {
    .pc__clanky { margin-bottom: 100px; }
    .pc__clanky__line { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .pc__clanky__line__item__text__title { font-size: 22px; line-height: 28px; margin: 0 0 20px; }
    .pc__clanky__line__item__text__author { font-size: 18px; }
}

@media screen and (max-width: 767px) {
    .pc__clanky { margin-bottom: 72px; }
    .pc__clanky__list { margin-bottom: 36px; }
    .pc__clanky__line { grid-template-columns: 1fr; gap: 28px; }
    .pc__clanky__line__item { padding: 10px 8px; }
    .pc__clanky__line__item__image { margin-bottom: 12px; }
    .pc__clanky__line__item__image__company { top: 16px; left: 16px; font-size: 13px; padding: 5px 12px; }
    .pc__clanky__line__item__text__title { font-size: 20px; line-height: 26px; margin: 0 0 16px; }
    .pc__clanky__line__item__text__author { font-size: 17px; }
    .pc__clanky__button__link { font-size: 18px; line-height: 24px; }
}

/* ======== stylování filtru ZAČÁTEK =============== */

.pc__clanky .pc__h2 { margin-bottom: 16px; }
.pc__clanky .pc__perex { margin-bottom: 48px; }

/* Pill chip s vybraným krajem (nad nadpisem "Podnikání v Česku") */
.pc__clanky .container > .vybrany_kraj { text-align: center; margin: 0 auto 32px; display: none; }
.pc__clanky .container > .vybrany_kraj.showed { display: block; }
.pc__clanky .container > .vybrany_kraj p { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-outfit); font-size: 14px; line-height: 1; letter-spacing: 0.04em; font-weight: 700; text-transform: uppercase; color: var(--cl-black); background: var(--cl-white); border: 1px solid var(--cl-black); border-radius: 999px; padding: 18px 28px; margin: 0; }
.pc__clanky .container > .vybrany_kraj p a { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--cl-black); text-decoration: none; font-size: 0; line-height: 0; position: relative; }
.pc__clanky .container > .vybrany_kraj p a::before,
.pc__clanky .container > .vybrany_kraj p a::after { content: ''; position: absolute; left: 50%; top: 50%; width: 16px; height: 1.5px; background: var(--cl-black); transform-origin: center; }
.pc__clanky .container > .vybrany_kraj p a::before { transform: translate(-50%, -50%) rotate(45deg); }
.pc__clanky .container > .vybrany_kraj p a::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.pc__clanky .container > .vybrany_kraj p a:hover::before,
.pc__clanky .container > .vybrany_kraj p a:hover::after { background: var(--cl-blue); }

/* Záložky filtru oborů */
.pc__clanky__filter { margin: 0 0 60px; }
.pc__clanky__filter__tabs { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px 8px; margin: 0; }
.pc__clanky__filter__tabs a { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; font-family: var(--font-outfit); font-size: 16px; line-height: 1; font-weight: 700; letter-spacing: 0.04em; color: var(--cl-black); text-transform: uppercase; text-decoration: none; padding: 18px 30px; border-radius: 999px; transition: color 0.2s ease, background 0.2s ease; }
.pc__clanky__filter__tabs a:hover { background: var(--cl-black); color: var(--cl-white);  padding: 18px 30px; min-width: 70px; }
.pc__clanky__filter__tabs a.active { background: var(--cl-black); color: var(--cl-white); font-family: var(--font-playfair); font-style: italic; font-weight: 400; text-transform: none; font-size: 19px; padding: 18px 30px; min-width: 70px; }
.pc__clanky__filter__tabs a.active:hover { color: var(--cl-white); }

/* Mobilní select (kraj + obor) */
.pc__clanky__filter__select { position: relative; margin: 0 0 30px; }
.pc__clanky__filter__select label { display: block; font-family: var(--font-outfit); color: var(--cl-black); font-size: 13px; line-height: 18px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; margin: 0 0 10px; }
.pc__clanky__filter__select label span { text-transform: none; font-weight: 400; color: var(--cl-gray-48); margin-left: 6px; }
.pc__clanky__filter__select select { outline: 0; width: 100%; padding: 16px 48px 16px 18px; font-family: var(--font-outfit); font-size: 16px; line-height: 22px; font-weight: 600; letter-spacing: 0.02em; background: var(--cl-white); border: 1px solid var(--cl-black); color: var(--cl-black); border-radius: 14px; -moz-appearance: none; -webkit-appearance: none; appearance: none; margin: 0; cursor: pointer; }
.pc__clanky__filter__select select option { color: var(--cl-black); }
.pc__clanky__filter__select .arrow { position: absolute; right: 18px; bottom: 22px; width: 14px; height: 9px; pointer-events: none; }
.pc__clanky__filter__select .arrow svg { display: block; width: 14px; height: 9px; fill: var(--cl-black); pointer-events: none; }

@media screen and (min-width: 0) {
    .pc__clanky .container > .vybrany_kraj { display: none; }
    .pc__clanky .container > .vybrany_kraj.showed { display: block; }

    .pc__clanky__filter__select.kraj { display: block; }
    .pc__clanky__filter__tabs { display: none; }
    .pc__clanky__filter__select { display: block; }
}

@media screen and (min-width: 1260px) {
    .pc__clanky__filter { margin: 0 0 70px; }
    .pc__clanky__filter__select.kraj { display: none; }
    .pc__clanky__filter__tabs { display: flex; }
    .pc__clanky__filter__select { display: none; }
}

/* ======== stylování filtru KONEC =============== */




/* === Citace === */

.pc__citace { position: relative; background: var(--cl-blue-midnight); overflow: visible; padding: 55px 0 55px; margin-bottom: 144px; margin-bottom: 0px; }
.pc__citace::before,
.pc__citace::after { content: ''; position: absolute; background: url('/img/uvozovky.svg') no-repeat center / contain; pointer-events: none; }
.pc__citace::before { top: -28px; right: 60px; width: 80px; height: 80px; }
.pc__citace::after { bottom: -28px; left: 60px; width: 80px; height: 80px; transform: rotate(180deg); }
.pc__citace .container { text-align: center; position: relative; }
.pc__citace__text { color: var(--cl-white); font-family: var(--font-outfit); font-weight: 900; font-size: 40px; line-height: 52px; margin: 0 0 20px; }
.pc__citace__text em { font-family: var(--font-playfair); font-style: italic; font-weight: 400; color: var(--cl-blue-light); }
.pc__citace__image { margin: 0 auto 16px; }
.pc__citace__image img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.pc__citace__name { color: rgba(255, 255, 255, 0.75); font-size: 16px; line-height: 25px; font-weight: 400; margin: 0; }

/* Citace - responsivní velikosti textu */
@media screen and (max-width: 719px) {
    .pc__citace__text { font-size: 22px; line-height: 30px; margin: 0 0 24px; }
    .pc__citace__name { font-size: 14px; line-height: 22px; }
    .pc__citace__list { min-height: 180px; }
}
@media screen and (min-width: 720px) and (max-width: 1259px) {
    .pc__citace__text { font-size: 28px; line-height: 38px; margin: 0 0 32px; }
    .pc__citace__name { font-size: 15px; line-height: 24px; }
    .pc__citace__list { min-height: 200px; }
}

@media screen and (min-width: 0) {
    .pc__citace::before { top: -18px; right: 16px; width: 50px; height: 50px; }
    .pc__citace::after  { bottom: -18px; left: 16px; width: 50px; height: 50px; }
}
@media screen and (min-width: 720px) {
    .pc__citace::before { top: -24px; right: 40px; width: 64px; height: 64px; }
    .pc__citace::after  { bottom: -24px; left: 40px; width: 64px; height: 64px; }
}
@media screen and (min-width: 1260px) {
    .pc__citace { margin: 0; border-radius: 0; }
    .pc__citace::before { top: -28px; right: 80px; width: 64px; height: 64px; }
    .pc__citace::after  { bottom: -28px; left: 80px; width: 64px; height: 64px; }
}

/* Citace slider (přepínání citátů) */
.pc__citace__list { position: relative; min-height: 220px; }
.pc__citace__list__item { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; text-decoration: none; color: inherit; cursor: pointer; }
.pc__citace__list__item.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pc__citace__list__item:hover .pc__citace__text { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }


.pc__citace__dots { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0 0; padding: 0; }
.pc__citace__dots__item { appearance: none; background: rgba(255, 255, 255, 0.35); border: none; border-radius: 999px; padding: 0; width: 28px; height: 3px; cursor: pointer; transition: background 0.2s ease; }
.pc__citace__dots__item:hover { background: rgba(255, 255, 255, 0.6); }
.pc__citace__dots__item:focus-visible { outline: 2px solid var(--cl-blue-light); outline-offset: 3px; }
.pc__citace__dots__item.is-active { background: var(--cl-white); }

@media (prefers-reduced-motion: reduce) {
    .pc__citace__list__item { transition: opacity 0.2s linear; transform: none; }
    .pc__citace__list__item.is-active { transform: none; }
}


/* === Partneri projektu === */
.pc__partneri { padding: 144px 0 195px; }
.pc__partneri h2 { margin-bottom: 16px; }
.pc__partneri .pc__perex { margin-bottom: 48px;}

.pc__partneri__list__item { position: relative; background: var(--cl-white); box-shadow: 0px 3px 20px #0000001A; padding: 24px 20px 30px; text-align: center; }
.pc__partneri__list__item.typ_generalni { border: 2px solid var(--cl-blue-light); box-shadow: 0 3px 30px rgba(64, 133, 250, 0.12); }

.pc__partneri__list__item__typ { font-family: var(--font-playfair); font-style: italic; font-size: 14px; line-height: 30px; color: var(--cl-blue); margin: 0 0 20px; }
.pc__partneri__list__item__image { display: flex; align-items: center; justify-content: center; height: 124px; margin: 0 0 20px; }
.pc__partneri__list__item__image img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; margin: 0 auto; }
.pc__partneri__list__item__title { font-family: var(--font-outfit); font-size: 18px; line-height: 26px; font-weight: 700; margin: 0; color: var(--cl-black); }

/* Flip karta - struktura */
.pc__partneri__list__item__flip { position: relative; width: 100%; height: 100%; }
.pc__partneri__list__item__front_side { position: relative; }
.pc__partneri__list__item__back_side { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px; padding: 24px 20px 8px; }
.pc__partneri__list__item__perex { font-family: var(--font-outfit); font-size: 15px; line-height: 24px; color: var(--cl-black); margin: 0; text-align: center; }
.pc__partneri__list__item__button { margin: 0; }
.pc__partneri__list__item__button .ghost_button { display: inline-block; font-family: var(--font-outfit); font-weight: 700; font-size: 14px; line-height: 20px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cl-blue-midnight); background: transparent; border: 2px solid var(--cl-blue-midnight); border-radius: 999px; padding: 12px 28px; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.pc__partneri__list__item__button .ghost_button:hover { background: var(--cl-blue-midnight); color: var(--cl-white); }

@media screen and (min-width: 0) {
    .pc__partneri__list { display: grid; grid-template-columns: 1fr; gap: 50px; }
    .pc__partneri__list__item.typ_generalni,
    .pc__partneri__list__item.typ_hlavni { grid-column: 1 / -1; }
}
@media screen and (min-width: 1260px) {
    .pc__partneri__list { padding-top: 25px; padding-left: 15px; }
    .pc__partneri__list { 
        display: flex; 
        gap: 46px; 
        overflow-x: auto; 
        overflow-y: hidden;
        padding-bottom: 25px; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        cursor: grab;
        justify-content: center;
    }
    .pc__partneri__list__item__title { font-weight: 400; }
    .pc__partneri__list.is_dragging { cursor: grabbing; scroll-snap-type: none; }
    .pc__partneri__list__item { min-width: 280px; flex: 0 0 280px; scroll-snap-align: start; }
    .pc__partneri__list::-webkit-scrollbar { height: 4px; }
    .pc__partneri__list::-webkit-scrollbar-track { background: transparent; }
    .pc__partneri__list::-webkit-scrollbar-thumb { background: var(--cl-gray-light); border-radius: 2px; }

    /* Pokud položky vejdou do viewportu, zruš scrollbar vizuálně */
    @supports (scrollbar-width: thin) {
        .pc__partneri__list { scrollbar-width: thin; scrollbar-color: var(--cl-gray-light) transparent; }
    }

    /* Flip karta - desktop only */
    .pc__partneri__list__item { 
        background: transparent; 
        box-shadow: none; 
        padding: 0; 
        min-width: 320px; 
        flex: 0 0 320px; 
        height: 260px; 
        perspective: 1200px; 
        border: 0;
    }
    .pc__partneri__list__item.typ_generalni { border: 0; box-shadow: none; }
    .pc__partneri__list__item__flip { 
        position: relative; 
        width: 100%; 
        height: 100%; 
        transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1); 
        transform-style: preserve-3d; 
    }
    .pc__partneri__list__item:hover .pc__partneri__list__item__flip { transform: rotateY(180deg); }

    .pc__partneri__list__item__front_side,
    .pc__partneri__list__item__back_side {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: var(--cl-white);
        box-shadow: 0px 3px 20px #0000001A;
        padding: 24px 20px 30px;
        box-sizing: border-box;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 0;
    }
    .pc__partneri__list__item.typ_generalni .pc__partneri__list__item__front_side,
    .pc__partneri__list__item.typ_generalni .pc__partneri__list__item__back_side {
        border: 2px solid var(--cl-blue-light);
        box-shadow: 0 3px 30px rgba(64, 133, 250, 0.12);
    }
    .pc__partneri__list__item__back_side { transform: rotateY(180deg); }
}





/* === Vybrali jsme pro vas === */
.pc__vybrali { background: var(--cl-blue-light); padding: 140px 0 164px; margin: 0; }
.pc__vybrali { background: var(--cl-blue-ghost); }

.pc__vybrali__list { display: grid; grid-template-columns: 1fr; gap: 30px; }

.pc__vybrali__list__item { position: relative; display: flex; flex-direction: column; background: var(--cl-white); box-shadow: 0px 3px 20px #0000001A; padding: 35px 11px 40px; text-align: center; }

.pc__vybrali__list__item__headline { margin: 0 0 24px; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.pc__vybrali__list__item__headline h3 { font-family: var(--font-playfair); font-style: italic; font-weight: 400; font-size: 20px; line-height: 28px; color: var(--cl-blue); margin: 0; }

.pc__vybrali__list__item__image { margin: 0 0 28px; overflow: hidden; }
.pc__vybrali__list__item__image img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 378 / 256; }

.pc__vybrali__list__item__text { flex: 1 1 auto; margin: 0 0 24px; }
.pc__vybrali__list__item__text p { font-family: var(--font-outfit); font-size: 17px; line-height: 23px; font-weight: 700; color: var(--cl-black); margin: 0; text-align: center; }

.pc__vybrali__list__item__price { display: flex; align-items: baseline; justify-content: center; gap: 18px; margin: 0 0 28px; }
.pc__vybrali__list__item__price__old { color: var(--cl-black); font-size: 20px; line-height: 28px; font-weight: 600; text-decoration: line-through; }
.pc__vybrali__list__item__price__new { color: var(--cl-blue); font-size: 30px; line-height: 34px; font-family: var(--font-playfair); font-style: italic; }
.pc__vybrali__list__item__price__postovne { color: var(--cl-gray-48); font-size: 18px; line-height: 28px; font-weight: 400; }
.pc__vybrali__list__item__price:not(:has(.pc__vybrali__list__item__price__old)) .pc__vybrali__list__item__price__new,
.pc__vybrali__list__item__price .pc__vybrali__list__item__price__new:only-child { font-size: 28px; }

.pc__vybrali__list__item__button { text-align: center; margin-top: auto; }
.pc__vybrali__list__item__button .button { display: inline-block; font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 20px; color: var(--cl-black); background: var(--cl-blue-light); text-decoration: none; padding: 16px 38px; border-radius: 999px; transition: background 0.2s ease, color 0.2s ease; cursor: pointer; }
.pc__vybrali__list__item__button .button:hover { background: var(--cl-blue); color: var(--cl-white); }
.pc__vybrali__list__item__button .button.small { padding: 19px 55px; font-size: 15px; }
.pc__vybrali__list__item__button span.button { cursor: pointer; }

/* Modal objednávky */
.pc__vybrali__modal { display: none; position: fixed; inset: 0; z-index: 9000; align-items: center; justify-content: center; }
.pc__vybrali__modal.open { display: flex; }
.pc__vybrali__modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.pc__vybrali__modal__box { position: relative; z-index: 1; background: var(--cl-white); padding: 48px 40px 44px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; margin: 0 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.pc__vybrali__modal__close { position: absolute; top: 18px; right: 20px; width: 36px; height: 36px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--cl-black); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0.5; transition: opacity 0.2s; }
.pc__vybrali__modal__close:hover { opacity: 1; }
.pc__vybrali__modal__title { font-family: var(--font-playfair); font-style: italic; font-weight: 400; font-size: 26px; line-height: 34px; color: var(--cl-blue); text-align: center; margin: 0 0 16px; }
.pc__vybrali__modal__desc { font-family: var(--font-outfit); font-size: 15px; line-height: 22px; font-weight: 400; color: var(--cl-black); text-align: center; margin: 0 0 28px; }
.pc__vybrali__modal__desc__intro { font-weight: 700; margin: 0 0 12px; }
.pc__vybrali__modal__desc__text { margin: 0; }
.pc__vybrali__modal__gdpr { font-family: var(--font-outfit); font-size: 14px; line-height: 20px; color: var(--cl-black); margin: 0 0 4px; }
.pc__vybrali__modal__gdpr a { color: var(--cl-black); font-weight: 700; text-decoration: underline; }
.pc__vybrali__modal__success { text-align: center; padding: 30px 0 10px; }
.pc__vybrali__modal__success p { font-family: var(--font-outfit); font-size: 17px; line-height: 26px; font-weight: 600; color: var(--cl-black); margin: 0 0 28px; }
/* Formulářové prvky v modalu sdílí .pc__nominace styly */
.pc__vybrali__modal__box form { display: flex; flex-direction: column; gap: 20px; }
.pc__vybrali__modal__box .pc__formular__item { display: flex; flex-direction: column; }
.pc__vybrali__modal__box .pc__formular__item label { font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 22px; color: var(--cl-black); margin: 0 0 8px; }
.pc__vybrali__modal__box .pc__formular__item input[type="text"],
.pc__vybrali__modal__box .pc__formular__item input[type="email"],
.pc__vybrali__modal__box .pc__formular__item textarea { width: 100%; box-sizing: border-box; font-family: var(--font-outfit); font-size: 15px; line-height: 20px; color: var(--cl-black); background: var(--cl-white); border: 1px solid #D8D8D8; border-radius: 15px; padding: 14px 20px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.pc__vybrali__modal__box .pc__formular__item textarea { min-height: 120px; resize: vertical; }
.pc__vybrali__modal__box .pc__formular__item input::placeholder,
.pc__vybrali__modal__box .pc__formular__item textarea::placeholder { color: #B6B6B6; }
.pc__vybrali__modal__box .pc__formular__item input:focus,
.pc__vybrali__modal__box .pc__formular__item textarea:focus { border-color: var(--cl-blue); box-shadow: 0 0 0 3px rgba(64,133,250,0.15); }
.pc__vybrali__modal__box .pc__formular__item > span { display: none; font-family: var(--font-playfair); font-style: italic; font-size: 14px; line-height: 20px; color: #D0342C; margin-top: 5px; }
.pc__vybrali__modal__box .pc__formular__item.invalid input,
.pc__vybrali__modal__box .pc__formular__item.invalid textarea { border-color: #D0342C; }
.pc__vybrali__modal__box .pc__formular__item.invalid > span { display: block; }
.pc__vybrali__modal__box .pc__formular__button { display: flex; justify-content: center; margin-top: 8px; }
.pc__vybrali__modal__box .pc__formular__button .button { display: inline-block; font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 20px; color: var(--cl-white); background: var(--cl-blue); border: none; cursor: pointer; padding: 18px 46px; border-radius: 999px; transition: background 0.2s ease; }
.pc__vybrali__modal__box .pc__formular__button .button:hover { background: var(--cl-blue-midnight); }
.pc__vybrali__modal__box .pc__formular__progress_bar { height: 4px; background: rgba(64,133,250,0.15); border-radius: 999px; overflow: hidden; position: relative; }
.pc__vybrali__modal__box .pc__formular__progress_bar.hidden { display: none; }
.pc__vybrali__modal__box .pc__formular__progress_bar span { position: absolute; inset: 0; width: 40%; background: var(--cl-blue); border-radius: inherit; animation: pcNominaceProgress 1.2s ease-in-out infinite; }
.pc__vybrali__modal__box .pc__formular__validation_summary { background: #FDECEA; color: #D0342C; border-radius: 12px; padding: 14px 18px; font-family: var(--font-outfit); font-size: 14px; line-height: 20px; }
.pc__vybrali__modal__box .pc__formular__validation_summary.hidden { display: none; }
.hidden { display: none !important; }


@media screen and (min-width: 720px) {
    .pc__vybrali__list { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media screen and (min-width: 1260px) {
    .pc__vybrali__list { grid-template-columns: repeat(3, 1fr); gap: 42px; }
    .pc__vybrali__list__item { padding: 35px 11px 40px; }
    .pc__vybrali__list__item__headline { min-height: 68px; }
    .pc__vybrali__list__item__headline h3 { font-size: 22px; line-height: 30px; }
    .pc__vybrali__list__item__image { margin: 0 0 34px; }
    .pc__vybrali__list__item__text { padding: 0 10px; margin: 0 0 30px; }
}



/* === Proč SME - ZAČÁTEK === */
.pc__sme { padding: 139px 0 0; margin: 0 0 100px; }
.pc__sme h2 { margin-bottom: 16px; }

.pc__sme__perex { margin-bottom: 58px; }

.pc__sme__content { text-align: center; }
.pc__sme__content__tabs { display: block; margin: 0 auto; }

a.pc__sme__content__tabs__item { position: relative; display: block; text-decoration: none; color: var(--cl-black); transition: all 0.2s ease; font-size: 16px; line-height:20px; letter-spacing: 0.32px; font-weight: 700; z-index: 25; border-radius: 31px;  }
a.pc__sme__content__tabs__item.active { background: var(--cl-black); color: var(--cl-gray-f8); font-family: var(--font-playfair); font-style: italic; font-weight: 400;}
a.pc__sme__content__tabs__item:hover { background: var(--cl-black); color: var(--cl-gray-f8); }

.pc__sme__content__placeholder { z-index: 20; resize: horizontal; max-width: 800px; margin: 0 auto; }
.pc__sme__content__placeholder .tab { text-align: center; margin: 0 auto; opacity: 0; position: absolute; aspect-ratio: 79 / 67; } 
.pc__sme__content__placeholder .tab.active { position: relative !important; opacity: 1; max-width: 100%; } 
.pc__sme__content__placeholder .tab .in {  } 


.pc__sme__background { display: block; position: absolute; z-index: 30; right: 0; bottom: 0; left: 0px; background: var(--cl-white);}

@media screen and (min-width: 0) {
    .pc__proc_sme { padding: 100px 20px 120px; margin: 0 0 70px;}
    
    .pc__sme__content__tabs { display: block; }
    .pc__sme__content__placeholder { padding: 40px 10px 0; }

    a.pc__sme__content__tabs__item { padding: 20px 25px 15px;  font-size: 16px; line-height: 20px; }
    a.pc__sme__content__tabs__item.active { margin-right: 0;  }

    .pc__sme__background { height: 25px;}
}

@media screen and (min-width: 360px) {
    .pc__sme__background { height: 30px;}
}
@media screen and (min-width: 400px) {
    .pc__sme__background { height: 35px;}
}
@media screen and (min-width: 490px) {
    .pc__sme__background { height: 45px;}
}
@media screen and (min-width: 600px) {
    .pc__sme__background { height: 55px;}
}

@media screen and (min-width: 750px) {
    .pc__sme__background { height: 60px;}
}

@media screen and (min-width: 768px) {
    .pc__sme__content__placeholder { padding: 60px 60px 0; }
}

@media screen and (min-width: 900px) {
    .pc__sme__background { height: 65px;}
}

@media screen and (min-width: 1260px) {
    .pc__proc_sme { padding: 50px 0 120px; margin: 0 0 112px;}
    
    .pc__sme__content__tabs { display: flex; justify-content: center; justify-items: center; }
    .pc__sme__content__placeholder { padding: 60px 60px 0; }

    a.pc__sme__content__tabs__item { padding: 18px 36px; margin-right: 30px; }
    a.pc__sme__content__tabs__item.active { margin-right: 30px;  }
    a.pc__sme__content__tabs__item:last-child { margin-right: 0; }
}

/* === Proč SME - KONEC === */






/* === Infohinty === */
.pc__infohinty { }
/* Pruh s rotujícími statistickými hinty: tmavě modré pozadí, ikonka "i" vlevo, fade přechod */
.pc__infohinty { background: var(--cl-blue-midnight); color: var(--cl-white); margin: 0; }
.pc__infohinty .container { padding-top: 40px; padding-bottom: 40px; }

.pc__infohinty__inner { position: relative; }

.pc__infohinty__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 64px; height: 64px; border-radius: 50%; background: var(--cl-blue); display: flex; align-items: center; justify-content: center; z-index: 2; }
.pc__infohinty__icon em { font-family: var(--font-playfair); font-style: italic; font-weight: 700; font-size: 36px; line-height: 1; color: var(--cl-white); }

.pc__infohinty__list { position: relative; min-height: 96px; display: flex; align-items: center; justify-content: center; }

.pc__infohinty__list__item { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 12px; opacity: 0; transform: translateY(8px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
.pc__infohinty__list__item.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.pc__infohinty__list__item__hint { font-family: var(--font-outfit); font-size: 22px; line-height: 30px; font-weight: 700; color: var(--cl-white); margin: 0 0 10px; }
.pc__infohinty__list__item__hint em { font-family: var(--font-playfair); font-style: italic; font-weight: 400; color: var(--cl-blue-light); }

.pc__infohinty__list__item__zdroj { font-family: var(--font-outfit); font-size: 14px; line-height: 20px; font-weight: 400; color: var(--cl-blue-light); margin: 0; }

@media screen and (min-width: 0) {
    /* Na mobilu je ikona nad textem (statická), aby se neslepovala s textem */
    .pc__infohinty__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
    .pc__infohinty__icon { position: static; transform: none; width: 52px; height: 52px; }
    .pc__infohinty__icon em { font-size: 28px; }
    .pc__infohinty__list { min-height: 140px; width: 100%; }
    .pc__infohinty__list__item__hint { font-size: 17px; line-height: 24px; }
}
@media screen and (min-width: 720px) {
    /* Od tabletu výš ikona absolutně vlevo, text vycentrovaný vůči celému kontejneru */
    .pc__infohinty__inner { display: block; }
    .pc__infohinty__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
    .pc__infohinty__icon em { font-size: 32px; }
    .pc__infohinty__list { min-height: 130px; width: 100%; }
    .pc__infohinty__list__item { padding: 0 80px; }
    .pc__infohinty__list__item__hint { font-size: 20px; line-height: 28px; }
}
@media screen and (min-width: 1260px) {
    .pc__infohinty__icon { width: 64px; height: 64px; }
    .pc__infohinty__icon em { font-size: 36px; }
    .pc__infohinty__list { min-height: 190px; }
    .pc__infohinty__list__item__hint { font-size: 40px; line-height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
    .pc__infohinty__list__item { transition: opacity 0.2s linear; transform: none; }
    .pc__infohinty__list__item.is-active { transform: none; }
}

/* Dashes pro ruční přepínání */
.pc__infohinty__dots { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0 0; padding: 0; }
.pc__infohinty__dots__item { appearance: none; background: rgba(255, 255, 255, 0.35); border: none; border-radius: 999px; padding: 0; width: 28px; height: 3px; cursor: pointer; transition: background 0.2s ease; }
.pc__infohinty__dots__item:hover { background: rgba(255, 255, 255, 0.6); }
.pc__infohinty__dots__item:focus-visible { outline: 2px solid var(--cl-blue-light); outline-offset: 3px; }
.pc__infohinty__dots__item.is-active { background: var(--cl-white); }








/* === Doporučujeme nepřehlédnout === */
.pc__doporucujeme { }
.pc__doporucujeme { padding: 80px 0 0; margin: 0 0 120px; }
.pc__doporucujeme .pc__h2 { margin: 0 0 48px; }

.pc__doporucujeme__list { display: grid; gap: 50px; padding-left: 25px; }

.pc__doporucujeme__card { display: block; text-decoration: none; color: var(--cl-black); }
.pc__doporucujeme__card:hover .pc__doporucujeme__card__media img { transform: scale(1.05); }
.pc__doporucujeme__card:hover .pc__doporucujeme__card__title { text-decoration: underline; }

.pc__doporucujeme__card__media { position: relative; margin: 0 0 16px; }
.pc__doporucujeme__card__media > div { overflow: hidden; }
.pc__doporucujeme__card__media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.3s ease; }

.pc__doporucujeme__card__num { position: absolute; top: -20px; left: -35px; font-family: var(--font-playfair); font-style: italic; font-weight: 400; font-size: 140px; line-height: 1; color: var(--cl-blue); z-index: 1; pointer-events: none; user-select: none; }
.pc__doporucujeme__card__num-6 { top: 10px; }
.pc__doporucujeme__card__num-7 { top: -25px; }
.pc__doporucujeme__card__num-8 { top: 5px; }

.pc__doporucujeme__card__title { font-family: var(--font-outfit); font-size: 22px; line-height: 28px; font-weight: 900; color: var(--cl-black); margin: 0 0 13px; }
.pc__doporucujeme__card__author { font-family: var(--font-playfair); font-style: italic; font-weight: 400; font-size: 20px; line-height: 30px; color: var(--cl-blue); margin: 0; }

@media screen and (min-width: 768px) {
    .pc__doporucujeme__list { grid-template-columns: 1fr 1fr; gap: 40px 64px; }
    .pc__doporucujeme__card__num { font-size: 60px; }

    .pc__doporucujeme__list { padding-left: 40px; }
    .pc__doporucujeme__card__num { font-size: 140px; line-height: 1; top: -25px; left: -40px; }
    .pc__doporucujeme__card__num-6 { top: 0; }
    .pc__doporucujeme__card__num-7 { top: -35px; }
    .pc__doporucujeme__card__num-8 { top: -10px; }
}
@media screen and (min-width: 1260px) {
    .pc__doporucujeme__list { grid-template-columns: repeat(4, 1fr); gap: 48px 66px; }
    .pc__doporucujeme__card__num { font-size: 200px; line-height: 160px; }
    .pc__doporucujeme { margin: 0 0 160px; }
    .pc__doporucujeme__list { gap: 48px 66px; }
    .pc__doporucujeme__card__title { font-size: 20px; line-height: 28px; }

    .pc__doporucujeme__list { padding-left: 50px; }
    .pc__doporucujeme__card__num { font-size: 130px; line-height: 1; top: -25px; left: -50px; }
    .pc__doporucujeme__card__num-6 { top: 0; }
    .pc__doporucujeme__card__num-7 { top: -30px; }
    .pc__doporucujeme__card__num-8 { top: -10px; }
}





/* === Nominace projektu === */
.pc__nominace { }
/* Sekce s vrstvenými pozadími a rotujícími kruhy kolem bílé karty formuláře */
.pc__nominace { position: relative; overflow: hidden; padding: 120px 0 160px; margin: 0; background: var(--cl-white); isolation: isolate; }
.pc__nominace::before { content: ''; position: absolute; inset: 0; background: url(/img/claim_background.webp) no-repeat center center; background-size: cover; opacity: 1; pointer-events: none; z-index: 0; }
.pc__nominace::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0.55) 100%); pointer-events: none; z-index: 1; }

.pc__nominace > .container { position: relative; z-index: 3; }

/* Rotující kruhy s textem "PODNIKAVÉ ČESKO 2026" kolem karty */
.pc__nominace__kruh { position: absolute; width: 360px; height: 360px; z-index: 2; pointer-events: none; opacity: 0.85; will-change: transform; }
.pc__nominace__kruh svg { width: 100%; height: 100%; overflow: visible; }
.pc__nominace__kruh text { font-family: var(--font-outfit); font-weight: 800; font-size: 38px; letter-spacing: 2px; fill: var(--cl-blue); text-transform: uppercase; }
.pc__nominace__kruh--right { top: -80px; right: -90px; animation: pcNominaceRotateR 20s linear infinite; }
.pc__nominace__kruh--left { bottom: -80px; left: -90px; animation: pcNominaceRotateL 20s linear infinite; }
.pc__nominace__kruh--right::before,
.pc__nominace__kruh--left::before { content: ''; position: absolute; inset: 22%; border-radius: 50%; background: radial-gradient(circle at center, rgba(64,133,250,0.35) 0%, rgba(64,133,250,0) 70%); filter: blur(6px); z-index: -1; }

@keyframes pcNominaceRotateR { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pcNominaceRotateL { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
    .pc__nominace__kruh--right, .pc__nominace__kruh--left { animation: none; }
}

/* Bílá karta formuláře */
.pc__nominace__formular { position: relative; background: var(--cl-white); box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08); padding: 80px 120px 90px; max-width: 960px; margin: 0 auto; z-index: 3; }
.pc__nominace__formular .pc__h2 { margin: 0 0 28px; }
.pc__nominace__formular .pc__h2 strong { font-weight: 900; }

.pc__nominace__perex { text-align: center; font-family: var(--font-outfit); font-size: 16px; line-height: 24px; font-weight: 400; color: var(--cl-black); max-width: 720px; margin: 0 auto 48px; }

/* Formulář */
.pc__nominace__formular form { display: flex; flex-direction: column; gap: 28px; }
.pc__nominace__row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

.pc__nominace .pc__formular__item { display: flex; flex-direction: column; }
.pc__nominace .pc__formular__item label { font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 22px; color: var(--cl-black); margin: 0 0 10px; }
.pc__nominace .pc__formular__item input[type="text"],
.pc__nominace .pc__formular__item input[type="email"],
.pc__nominace .pc__formular__item textarea { width: 100%; box-sizing: border-box; font-family: var(--font-outfit); font-size: 15px; line-height: 20px; color: var(--cl-black); background: var(--cl-white); border: 1px solid #D8D8D8; border-radius: 15px; padding: 16px 22px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.pc__nominace .pc__formular__item textarea { border-radius: 15px; min-height: 140px; resize: vertical; padding: 16px 22px; }
.pc__nominace .pc__formular__item input::placeholder,
.pc__nominace .pc__formular__item textarea::placeholder { color: #B6B6B6; }
.pc__nominace .pc__formular__item input:focus,
.pc__nominace .pc__formular__item textarea:focus { border-color: var(--cl-blue); box-shadow: 0 0 0 3px rgba(64, 133, 250, 0.15); }
.pc__nominace .pc__formular__item > span { display: none; font-size: 13px; line-height: 18px; color: #D0342C; margin-top: 6px; }
.pc__nominace .pc__formular__item.error input,
.pc__nominace .pc__formular__item.error textarea { border-color: #D0342C; }
.pc__nominace .pc__formular__item.error > span { display: block; }

/* Checkbox */
.pc__nominace .pc__formular__checkbox { margin: 4px 0 0; }
.pc__nominace .pc__formular__checkbox .outer { position: relative; align-items: center; gap: 10px; font-family: var(--font-outfit); font-size: 15px; line-height: 20px; color: var(--cl-black); cursor: pointer; padding-left: 30px; }
.pc__nominace .pc__formular__checkbox .outer input[type="checkbox"] { position: absolute; opacity: 0; left: 0; top: 2px; width: 18px; height: 18px; cursor: pointer; }
.pc__nominace .pc__formular__checkbox .checkmark { position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border: 1.5px solid #B6B6B6; border-radius: 3px; background: var(--cl-white); box-sizing: border-box; transition: background 0.15s ease, border-color 0.15s ease; }
.pc__nominace .pc__formular__checkbox .outer input[type="checkbox"]:checked ~ .checkmark {  background-image: url('/img/checkmark.svg'); background-repeat: no-repeat; background-position: center; background-size: 12px 10px; }
.pc__nominace .pc__formular__checkbox a { color: var(--cl-black); font-weight: 700; text-decoration: underline; }
.pc__nominace .pc__formular__checkbox > span { display: none; font-size: 13px; line-height: 18px; color: #D0342C; margin-top: 6px; padding-left: 30px; }
.pc__nominace .pc__formular__checkbox.error > span { display: block; }

/* Validation summary + progress */
.pc__nominace .pc__formular__validation_summary { background: #FDECEA; color: #D0342C; border-radius: 12px; padding: 16px 20px; font-family: var(--font-outfit); font-size: 14px; line-height: 20px; }
.pc__nominace .pc__formular__validation_summary.hidden { display: none; }
.pc__nominace .pc__formular__progress_bar { height: 4px; background: rgba(64, 133, 250, 0.15); border-radius: 999px; overflow: hidden; position: relative; }
.pc__nominace .pc__formular__progress_bar.hidden { display: none; }
.pc__nominace .pc__formular__progress_bar span { position: absolute; inset: 0; width: 40%; background: var(--cl-blue); border-radius: inherit; animation: pcNominaceProgress 1.2s ease-in-out infinite; }
@keyframes pcNominaceProgress { 0% { left: -40%; } 100% { left: 100%; } }

/* Submit tlačítko */
.pc__nominace .pc__formular__button { display: flex; justify-content: center; margin-top: 12px; }
.pc__nominace .pc__formular__button .button { display: inline-block; font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 20px; color: var(--cl-white); background: var(--cl-blue); border: none; cursor: pointer; text-decoration: none; padding: 20px 46px; border-radius: 999px; transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease; }
.pc__nominace .pc__formular__button .button:hover { background: var(--cl-blue-midnight); transform: translateY(-1px); }
.pc__nominace .pc__formular__button .button.shadow { box-shadow: 0 10px 24px rgba(64, 133, 250, 0.35); }

/* Validation errors */
.pc__formular__item.invalid span { display: block; margin-top: 5px; font-family: var(--font-playfair); font-style: italic; font-size: 16px; line-height: 24px; letter-spacing: 0px; color: var(--cl-red); text-decoration: underline; }
.pc__formular__checkbox.invalid > div > span { display: block; margin-top: 5px;  }
.pc__formular__checkbox.invalid .checkmark { border-color: var(--cl-red); }
.pc__formular__item.invalid input[type=text], .pc__formular__item.invalid input[type=email] { border-color: var(--cl-red); }
.pc__formular__item.invalid select { border-color: var(--cl-red); }
.pc__formular__item.invalid { color: var(--cl-red); }


/* Poděkování po odeslání */
.pc__nominace__podekovani { position: relative; background: var(--cl-white); box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08); padding: 80px 120px 90px; max-width: 960px; margin: 0 auto; text-align: center; z-index: 3; }
.pc__nominace__podekovani.hidden { display: none; }

@media screen and (min-width: 0) {
    .pc__nominace { padding: 80px 0 100px; margin: 0; }
    .pc__nominace__formular,
    .pc__nominace__podekovani { padding: 40px 20px 50px; }
    .pc__nominace__row { grid-template-columns: 1fr; gap: 22px; }
    .pc__nominace__kruh { width: 220px; height: 220px; }
    .pc__nominace__kruh text { font-size: 26px; letter-spacing: 1px; }
    .pc__nominace__kruh--right { top: -50px; right: -70px; }
    .pc__nominace__kruh--left { bottom: -50px; left: -70px; }
}
@media screen and (min-width: 720px) {
    .pc__nominace__formular,
    .pc__nominace__podekovani { padding: 60px 60px 70px; }
    .pc__nominace__row { grid-template-columns: 1fr 1fr; gap: 30px; }
    .pc__nominace__kruh { width: 300px; height: 300px; }
    .pc__nominace__kruh--right { top: -70px; right: -80px; }
    .pc__nominace__kruh--left { bottom: -70px; left: -80px; }
}
@media screen and (min-width: 1260px) {
    .pc__nominace { padding: 120px 0 80px; margin: 0; }
    .pc__nominace__formular,
    .pc__nominace__podekovani { padding: 80px 120px 90px; }
    .pc__nominace__row { gap: 36px; }
    .pc__nominace__kruh { width: 420px; height: 420px; }
    .pc__nominace__kruh text { font-size: 44px; }
    .pc__nominace__kruh--right { top: -120px; right: -140px; }
    .pc__nominace__kruh--left { bottom: -120px; left: -140px; }
}



.pc__nominace { overflow: hidden; }
.pc__nominace__formular { position: relative; z-index: 1; }
.pc__nominace__formular:before { content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.5);  backdrop-filter: blur(17px); -webkit-backdrop-filter: blur(17px); z-index: 3; }
.pc__nominace__formular__inner { position: relative; z-index: 4;}
.pc__nominace__kruh { opacity: 1; animation: none; }
.pc__nominace__kruh img { display: block; width: 100%; height: 100%; object-fit: contain; transform-origin: center center; will-change: transform; }
.pc__nominace__kruh--right,
.pc__nominace__kruh--left { top: auto; right: auto; bottom: auto; left: auto; animation: none; z-index: 2; }
.pc__nominace__kruh--right::before,
.pc__nominace__kruh--left::before { content: none; }

.pc__nominace__kruh--right img { animation: pcNominaceRotateR 20s linear infinite; }
.pc__nominace__kruh--left img { animation: pcNominaceRotateL 20s linear infinite; }

@media screen and (min-width: 0) {
    .pc__nominace__kruh--right { width: 160px; height: 160px; top: 50px; right: 50px; transform: translate(50%, -50%); }
    .pc__nominace__kruh--left  { width: 280px; height: 280px; bottom: 200px; left: -50px; transform: translate(-50%, 50%); }
}
@media screen and (min-width: 720px) {
    .pc__nominace__kruh--right { width: 220px; height: 220px; }
    .pc__nominace__kruh--left  { width: 180px; height: 180px; }
}
@media screen and (min-width: 1260px) {
    .pc__nominace { overflow: visible; }
    .pc__nominace__kruh--right { width: 480px; height: 480px; }
    .pc__nominace__kruh--left  { width: 300px; height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
    .pc__nominace__kruh--right img,
    .pc__nominace__kruh--left img { animation: none; }
}

/* === Nominace kola - paralax rotace řízená scrollem (přepis původní automatické rotace) === */
.pc__nominace .pc__nominace__kruh--right img,
.pc__nominace .pc__nominace__kruh--left img {
    animation: none !important;
    transform: rotate(var(--pc-kruh-rot, 0deg));
    transition: none;
}


/* === Hledáte pomoc === */
.pc__pomoc { padding: 80px 0 0; margin: 0 0 160px; }
@media screen and (min-width: 1260px) {
    .pc__pomoc { padding: 140px 0 0; }
}

.pc__pomoc__list { display: grid; grid-template-columns: 1fr; gap: 30px; }

.pc__pomoc__list__item { position: relative; display: flex; flex-direction: column; background: var(--cl-white); box-shadow: 0px 3px 20px #0000001A; padding: 35px 11px 32px; text-align: center; }

.pc__pomoc__list__item__headline { margin: 0 0 20px; }
.pc__pomoc__list__item__headline h3 { font-family: var(--font-playfair); font-style: italic; font-weight: 400; font-size: 14px; line-height: 30px; color: var(--cl-blue); margin: 0; }

.pc__pomoc__list__item__image { display: flex; align-items: center; justify-content: center; height: 140px; margin: 0 0 32px; }
.pc__pomoc__list__item__image img { max-height: 100%; max-width: 80%; width: auto; height: auto; object-fit: contain; margin: 0 auto; }

.pc__pomoc__list__item__text { flex: 1 1 auto; text-align: left; margin: 0 0 24px; }
.pc__pomoc__list__item__text ul { list-style: none; padding: 0; margin: 0; }
.pc__pomoc__list__item__text ul li { position: relative; font-family: var(--font-outfit); font-size: 16px; line-height: 22px; font-weight: 700; color: var(--cl-black); padding: 0 0 0 34px; margin: 0 0 20px; }
.pc__pomoc__list__item__text ul li:last-child { margin-bottom: 0; }
.pc__pomoc__list__item__text ul li::before { content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 14px; background: url('/img/checkmark_gray.svg') no-repeat; background-repeat: no-repeat; background-position: center; background-size: contain; }

.pc__pomoc__list__item__button { text-align: center; margin-top: auto; }
.pc__pomoc__list__item__button .button { display: inline-block; font-family: var(--font-outfit); font-weight: 700; font-size: 16px; line-height: 20px; color: var(--cl-black); background: var(--cl-blue-light); text-decoration: none; padding: 16px 38px; border-radius: 999px; transition: background 0.2s ease, transform 0.2s ease; }
.pc__pomoc__list__item__button .button:hover { background: var(--cl-blue); color: var(--cl-white); }
.pc__pomoc__list__item__button .button.small { padding: 19px 55px; font-size: 15px; }

@media screen and (min-width: 720px) {
    .pc__pomoc__list { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media screen and (min-width: 1260px) {
    .pc__pomoc__list { 
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 42px; 
    }
    .pc__pomoc__list__item { padding: 44px 40px 50px; }
    .pc__pomoc__list__item__image { height: 80px; margin: 0 0 40px; }

    /* Pokud je poslední položka sama v řádku (4, 7, 10...), vycentruj ji */
    .pc__pomoc__list__item:nth-child(3n+1):nth-last-child(1) {
        grid-column: 2 / 3;
    }
    /* Pokud jsou 2 položky v posledním řádku (5, 8, 11...), vycentruj pár */
    .pc__pomoc__list__item:nth-child(3n+2):nth-last-child(2),
    .pc__pomoc__list__item:nth-child(3n+2):nth-last-child(2) ~ .pc__pomoc__list__item {
        grid-column: span 1;
    }
    .pc__pomoc__list__item:nth-child(3n+2):nth-last-child(2) {
        grid-column-start: 2;
    }
}









/* === Vase pribehy === */
.pc__firmy { background: var(--cl-blue-ghost); }

.pc__firmy__card { display: flex; flex-direction: column; background: var(--cl-white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); text-decoration: none; color: var(--cl-black); transition: all 0.2s ease; }
.pc__firmy__card:hover { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13); transform: scale(1.0375); }
.pc__firmy__card:not(.has_photo) { justify-content: center; border-radius: 0; }

.pc__firmy__card__image { overflow: hidden; border-radius: 12px; margin: 10px; }
.pc__firmy__card__image img { width: 100%; display: block; object-fit: cover; transition: transform 0.2s ease; aspect-ratio: 3 / 4; }
.pc__firmy__card:hover .pc__firmy__card__image img { transform: scale(1.05); }

.pc__firmy__card__name { padding: 16px 14px; font-size: 18px; font-weight: 600; line-height: 24px; text-align: center; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pc__firmy__card.photo_top .pc__firmy__card__name { padding: 6px 14px 18px; }
.pc__firmy__card.photo_bottom .pc__firmy__card__name { padding: 18px 14px 6px; }

.pc__firmy__pager { display: flex; align-items: center; justify-content: center; gap: 16px; padding-top: 8px; }
.pc__firmy__pager__btn { width: 44px; height: 44px; border-radius: 10px; border: 2px solid var(--cl-blue-slate); background: transparent; color: var(--cl-blue-slate); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; flex-shrink: 0; padding: 0; }
.pc__firmy__pager__btn--prev:hover:not([disabled]) { background: var(--cl-blue-slate); color: var(--cl-white); }
.pc__firmy__pager__btn--next { background: var(--cl-blue-midnight); border-color: var(--cl-blue-midnight); color: var(--cl-white); }
.pc__firmy__pager__btn--next:hover:not([disabled]) { background: var(--cl-blue); border-color: var(--cl-blue); }
.pc__firmy__pager__btn[disabled] { opacity: 0.3; cursor: default; }
.pc__firmy__pager__info { font-size: 18px; font-weight: 600; color: var(--cl-black); min-width: 70px; text-align: center; }
.pc__firmy__rejstrik { text-align: center; margin: 24px 0 0; font-size: 17px; line-height: 21px; font-family: var(--font-outfit); font-weight: 700; font-style: normal; }
.pc__firmy__rejstrik a { color: var(--cl-black); text-decoration: underline; }
.pc__firmy__rejstrik a:hover { text-decoration: none; }

.pc__firmy__list { margin-bottom: 48px; }

@media screen and (min-width: 0) {
    .pc__firmy { padding: 80px 0 160px; }
    .pc__firmy__list { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 40px auto 48px; max-width: 480px; }
}
@media screen and (min-width: 1260px) {
    .pc__firmy { padding: 100px 0 120px; }
    .pc__firmy__list { grid-template-columns: repeat(5, 1fr); grid-auto-rows: auto; grid-auto-flow: dense; gap: 44px; max-width: unset; }
    .pc__firmy__card.has_photo { grid-row: span 2; }
    .pc__firmy__card.wide { grid-column: span 2; }
}




/* === Utilities (kept from original) === */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.dialog__cover {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog__content {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    max-width: 600px;
    width: 90%;
}