:root {
  --ziro-orange: #ff9f0a;
  --ziro-orange-dark: #ec8700;
  --ziro-orange-soft: #fff2dc;
  --ziro-coral: #ff686d;
  --ziro-green: #2cc66d;
  --ziro-ink: #202235;
  --ziro-muted: #7a7d8d;
  --ziro-bg: #fbfbfd;
  --ziro-line: #ececf3;
  --ziro-purple-soft: #fff2dc;
  --gold: var(--ziro-orange);
  --gold-ink: #241400;
  --teal: var(--ziro-orange-dark);
  --teal-dark: var(--ziro-ink);
  --text: var(--ziro-ink);
}

* { box-sizing: border-box; }
body { color: var(--ziro-ink); font-family: "Poppins", Arial, sans-serif; }
.ziro-page { margin: 0; min-width: 320px; background: #fff; }
.ziro-page a { color: inherit; text-decoration: none; }

.ziro-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(25px, 3.2vw, 56px);
  width: min(1640px, calc(100% - 48px));
  min-height: 96px;
  margin: 0 auto;
}

.ziro-logo { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.ziro-logo > span { position: relative; display: block; width: 34px; height: 32px; }
.ziro-logo > span i { position: absolute; display: block; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-right: 14px solid var(--ziro-orange); }
.ziro-logo > span i:nth-child(1) { top: 0; left: 9px; transform: rotate(30deg); }
.ziro-logo > span i:nth-child(2) { top: 11px; left: 0; border-right-color: var(--ziro-ink); transform: rotate(5deg); }
.ziro-logo > span i:nth-child(3) { right: 0; bottom: 1px; border-right-color: #ffc15e; transform: rotate(180deg); }
.ziro-logo b { color: var(--ziro-ink); font-size: 21px; font-weight: 800; letter-spacing: -.05em; }
.ziro-logo b em { color: var(--ziro-orange-dark); font-style: normal; }
.ziro-logo.light b { color: #fff; }

.ziro-header > nav { display: flex; justify-self: center; align-items: center; gap: 36px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.ziro-header > nav a:hover { color: var(--ziro-orange-dark); }
.header-search { display: grid; grid-template-columns: 1fr 42px; min-height: 46px; overflow: hidden; border: 1px solid var(--ziro-line); border-radius: 999px; background: #fff; }
.header-search input { min-width: 0; padding: 0 0 0 20px; border: 0; outline: 0; color: var(--ziro-ink); background: transparent; font-size: 10px; }
.header-search button { border: 0; color: var(--ziro-ink); background: transparent; font-size: 20px; cursor: pointer; }
.ziro-account { display: flex; justify-self: end; align-items: center; gap: 10px; white-space: nowrap; }
.ziro-account a { display: grid; place-items: center; min-height: 44px; padding: 0 22px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.ziro-account .soft { background: var(--ziro-orange-soft); }
.ziro-account .primary { color: #fff; background: var(--ziro-orange); box-shadow: 0 12px 25px rgba(255,159,10,.25); }

.ziro-home-hero {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 70px;
  width: min(1640px, calc(100% - 48px));
  min-height: 660px;
  margin: 0 auto;
  padding: 55px clamp(10px, 3.2vw, 54px) 70px;
}
.ziro-hero-copy { position: relative; z-index: 4; }
.ziro-eyebrow { color: var(--ziro-orange-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.ziro-hero-copy h1 { margin: 15px 0 20px; font-size: clamp(46px, 4.05vw, 66px); line-height: 1.05; letter-spacing: -.055em; }
.ziro-hero-copy h1 > span { display: block; white-space: nowrap; }
.ziro-hero-copy h1 em { color: var(--ziro-orange); font-style: normal; }
.ziro-hero-copy > p { max-width: 625px; margin: 0; color: var(--ziro-muted); font-size: 14px; line-height: 1.75; }

.hero-search { display: grid; grid-template-columns: 1fr .85fr auto; align-items: center; width: min(740px, 105%); min-height: 82px; margin-top: 35px; padding: 10px; border-radius: 8px; background: #fff; box-shadow: 0 22px 55px rgba(35,38,58,.12); }
.hero-search label { display: grid; gap: 6px; min-width: 0; padding: 0 22px; }
.hero-search label + label { border-left: 1px solid var(--ziro-line); }
.hero-search label > span { color: #aaaaba; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-search select { width: 100%; border: 0; outline: 0; color: var(--ziro-ink); background: transparent; font-size: 11px; font-weight: 650; }
.hero-search button { align-self: stretch; min-width: 148px; border: 0; border-radius: 6px; color: #fff; background: var(--ziro-orange); font-size: 10px; font-weight: 750; cursor: pointer; }
.hero-categories { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 26px; color: var(--ziro-muted); font-size: 8px; }
.hero-categories a { padding: 7px 12px; border: 1px solid var(--ziro-line); border-radius: 999px; color: #666979; font-weight: 600; }
.hero-categories a:last-child { border-color: var(--ziro-orange); color: var(--ziro-orange-dark); }

.ziro-hero-art { position: relative; min-height: 530px; }
.art-circle { position: absolute; top: 25px; right: 10px; width: min(500px, 33vw); height: min(500px, 33vw); min-width: 420px; min-height: 420px; border-radius: 50%; background: #ffd092; }
.art-dots { position: absolute; right: 5px; bottom: 45px; width: 76px; height: 76px; opacity: .7; background-image: radial-gradient(var(--ziro-orange) 2px, transparent 2px); background-size: 13px 13px; }
.art-wave { position: absolute; top: 57px; right: 40px; color: var(--ziro-orange-dark); font-size: 33px; font-style: normal; letter-spacing: -7px; transform: rotate(8deg); }
.featured-float { position: absolute; top: 76px; right: 68px; z-index: 3; display: grid; width: min(380px, 28vw); min-width: 330px; padding: 18px; border-radius: 12px; background: #fff; box-shadow: 0 28px 65px rgba(46,39,28,.18); transform: rotate(-2deg); }
.featured-float small { color: var(--ziro-orange-dark); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.featured-float > div { display: grid; place-items: center; height: 275px; margin: 13px 0 17px; overflow: hidden; border-radius: 8px; background: #f3f1ec; }
.featured-float > div::before { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; background: #ffe6bd; }
.featured-float img { position: relative; z-index: 2; width: 80%; height: 80%; object-fit: contain; filter: drop-shadow(13px 18px 17px rgba(0,0,0,.18)); }
.featured-float > div b { position: relative; z-index: 2; font-size: 48px; }
.featured-float h2 { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -.03em; }
.featured-float > span { margin-top: 8px; color: var(--ziro-muted); font-size: 9px; }
.featured-float.empty { min-height: 340px; align-content: end; }
.art-stat { position: absolute; top: 210px; left: 7px; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border-radius: 10px; background: #fff; box-shadow: 0 18px 40px rgba(34,35,50,.12); }
.art-stat b { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; background: var(--ziro-orange); font-size: 18px; }
.art-stat span { color: var(--ziro-muted); font-size: 8px; font-weight: 650; line-height: 1.4; }

.ziro-list-section { width: min(1640px, calc(100% - 48px)); margin: 0 auto; padding: 50px clamp(10px, 3.2vw, 54px) 100px; }
.list-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 23px; }
.list-toolbar > div:first-child span, .section-title span { color: var(--ziro-orange-dark); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.list-toolbar h2 { margin: 7px 0 0; font-size: 25px; letter-spacing: -.03em; }
.ziro-page .filters-bar { display: flex; gap: 8px; margin: 0; }
.ziro-page .filter-pill { height: 37px; padding: 0 14px; border: 1px solid var(--ziro-line); border-radius: 999px; color: var(--ziro-muted); background: #fff; box-shadow: none; font-size: 8px; }
.ziro-page .filter-pill.is-active, .ziro-page .filter-pill:hover { border-color: var(--ziro-orange); color: #fff; background: var(--ziro-orange); }
.ziro-contest-list { display: grid; gap: 15px; }
.ziro-contest-row, .ziro-page .contest-tile {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(180px, 1.25fr) minmax(160px, .9fr) minmax(160px, .9fr) minmax(130px, .7fr) auto 40px;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 16px 22px;
  overflow: visible;
  border: 1px solid #f0f0f5;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35,38,58,.055);
  transition: transform .22s ease, box-shadow .22s ease;
}
.ziro-contest-row:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(35,38,58,.11); }
.ziro-contest-row.is-hidden { display: none; }
.row-main-link { position: absolute; inset: 0; z-index: 2; }
.row-thumb { display: grid; place-items: center; width: 62px; height: 62px; overflow: hidden; border-radius: 7px; background: #ececef; }
.row-thumb img { width: 100%; height: 100%; padding: 6px; object-fit: contain; }
.row-thumb b { font-size: 14px; }
.row-title { display: grid; gap: 4px; min-width: 0; }
.row-title h3 { overflow: hidden; margin: 0; color: var(--ziro-ink); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.row-title a { position: relative; z-index: 4; width: max-content; max-width: 100%; overflow: hidden; color: var(--ziro-orange-dark); font-size: 8px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.row-fact { display: flex; align-items: center; gap: 12px; min-width: 0; }
.row-fact i { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; color: #fff; font-size: 13px; font-style: normal; }
.row-fact.green i { background: var(--ziro-green); }.row-fact.orange i { background: #ffa24b; }
.row-fact p, .row-mode { display: grid; gap: 3px; min-width: 0; margin: 0; }
.row-fact b, .row-mode b { overflow: hidden; font-size: 9px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.row-fact span, .row-mode span { color: #b0b0ba; font-size: 7px; }
.row-cta { position: relative; z-index: 4; display: grid; place-items: center; min-width: 94px; min-height: 39px; border-radius: 999px; color: var(--ziro-orange-dark); background: var(--ziro-orange-soft); font-size: 8px; font-weight: 750; }
.row-heart { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--ziro-coral); background: #ffe4e5; font-size: 14px; }
.ziro-empty { padding: 55px; border: 1px solid var(--ziro-line); border-radius: 9px; text-align: center; }
.ziro-empty p { color: var(--ziro-muted); }.ziro-empty a { display: inline-grid; place-items: center; min-height: 42px; margin-top: 12px; padding: 0 18px; border-radius: 999px; color: #fff; background: var(--ziro-orange); font-size: 9px; font-weight: 700; }

.ziro-featured { padding: 80px max(24px, calc((100vw - 1532px) / 2)) 110px; border-top: 1px solid var(--ziro-line); background: var(--ziro-bg); }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-title h2 { margin: 8px 0 0; font-size: 28px; letter-spacing: -.035em; }
.section-title > a { display: grid; place-items: center; min-height: 42px; padding: 0 18px; border-radius: 999px; color: #fff; background: var(--ziro-orange); font-size: 8px; font-weight: 700; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-cards article { position: relative; overflow: hidden; border-radius: 9px; background: #fff; box-shadow: 0 12px 32px rgba(35,38,58,.06); }
.feature-cards article > i { position: absolute; top: 18px; right: 18px; z-index: 2; display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: #fff; background: var(--ziro-ink); font-size: 10px; font-style: normal; }
.feature-visual { display: grid; place-items: center; height: 225px; color: #fff; font-size: 58px; font-weight: 800; }
.feature-visual.orange-bg { background: #ffd093; }.feature-visual.dark-bg { background: #292b3f; }.feature-visual.cream-bg { color: var(--ziro-orange-dark); background: #fff0d5; }
.feature-cards article > span, .feature-cards article > h3, .feature-cards article > p { display: block; margin-right: 24px; margin-left: 24px; }
.feature-cards article > span { margin-top: 22px; color: var(--ziro-orange-dark); font-size: 8px; font-weight: 800; letter-spacing: .11em; }
.feature-cards h3 { margin-top: 8px !important; margin-bottom: 9px; font-size: 14px; line-height: 1.35; }
.feature-cards p { margin-top: 0; margin-bottom: 27px; color: var(--ziro-muted); font-size: 9px; line-height: 1.7; }
.ziro-partners { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: clamp(32px, 6vw, 95px); min-height: 180px; color: #c8c8cd; font-size: 16px; font-weight: 750; }

.ziro-footer { color: #fff; background: var(--ziro-ink); }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 50px; width: min(1530px, calc(100% - 80px)); min-height: 240px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta h2 { margin: 0; font-size: clamp(26px, 2.6vw, 40px); line-height: 1.4; letter-spacing: -.035em; }
.footer-cta > a { display: flex; justify-content: space-between; align-items: center; min-width: 260px; min-height: 56px; padding: 0 21px; border-radius: 999px; color: #fff; background: var(--ziro-orange); font-size: 9px; font-weight: 700; }
.footer-cta > a b { font-size: 17px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .65fr); gap: 65px; width: min(1530px, calc(100% - 80px)); margin: 0 auto; padding: 72px 0 65px; }
.footer-grid > div p { max-width: 320px; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.8; }
.footer-grid nav { display: grid; align-content: start; gap: 13px; color: rgba(255,255,255,.58); font-size: 9px; }
.footer-grid nav b { margin-bottom: 6px; color: #fff; font-size: 10px; }.footer-grid nav a:hover { color: var(--ziro-orange); }
.footer-bottom { display: flex; justify-content: space-between; width: min(1530px, calc(100% - 80px)); margin: 0 auto; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.42); font-size: 8px; }

/* Publiczne profile, dokumenty i konto w tym samym systemie */
.public-page { min-height: 100vh; color: var(--ziro-ink); background: var(--ziro-bg); }
.public-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 92px; padding: 0 clamp(24px,6vw,110px); color: var(--ziro-ink); background: #fff; border-bottom: 1px solid var(--ziro-line); }
.public-header .brand-copy { color: var(--ziro-ink); font-size: 16px; }.public-header .brand-and { border-radius: 50%; color: #fff; background: var(--ziro-orange); }
.public-header nav { display: flex; gap: 38px; font-size: 11px; font-weight: 650; }.public-header nav a:hover { color: var(--ziro-orange-dark); }
.public-account { display: flex; justify-content: flex-end; gap: 10px; font-size: 9px; font-weight: 700; }.public-account > a { display: grid; place-items: center; min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; background: var(--ziro-orange-soft); }.public-account .public-header-cta { color: #fff; background: var(--ziro-orange); }
.public-hero,.company-profile-hero,.legal-hero { position: relative; overflow: hidden; color: #fff; background: var(--ziro-orange); }
.public-hero::before,.company-profile-hero::before,.legal-hero::before { content: ""; position: absolute; top: -240px; left: calc(50% - 380px); width: 760px; height: 430px; border-radius: 50%; opacity: .11; background: #fff; }
.public-hero::after,.company-profile-hero::after,.legal-hero::after { content: none; }
.public-hero h1,.company-profile-hero h1,.legal-hero h1 { color: #fff; letter-spacing: -.045em; }.public-hero p,.company-profile-copy p,.legal-hero p { color: rgba(255,255,255,.8); }.public-kicker,.verified-label { color: #fff5dc; }
.public-hero aside,.company-profile-hero aside { border-left-color: rgba(255,255,255,.3); }.public-hero aside strong,.company-profile-hero aside strong { color: #fff; }
.companies-directory,.company-contests { padding-top: 75px; }.company-grid,.profile-contest-grid { gap: 22px; }
.company-card,.profile-contest-card { border: 0; border-radius: 9px; box-shadow: 0 12px 35px rgba(35,38,58,.07); }.company-card-visual { background: #ffd092; }.company-card-logo,.company-profile-mark { border-radius: 50%; color: var(--ziro-ink); }.verified-label,.company-card-copy footer b,.company-card-copy footer em,.profile-contest-card small,.profile-contest-card footer b { color: var(--ziro-orange-dark); }
.company-profile-actions a { border-radius: 999px; }.company-profile-actions a:first-child { color: #fff; background: var(--ziro-ink); border-color: var(--ziro-ink); }
.profile-contest-card > div { background: #f1f1f5; }.legal-document section > span,.legal-document p a { color: var(--ziro-orange-dark); }
.public-footer { color: rgba(255,255,255,.55); background: var(--ziro-ink); }.public-footer > div a { color: #fff; }.public-footer nav a:hover { color: var(--ziro-orange); }

.auth-body { color: var(--ziro-ink); background: var(--ziro-bg); }.auth-shell { grid-template-columns: minmax(400px,.8fr) 1.2fr; }.auth-visual { color: #fff; background: var(--ziro-orange); }.auth-visual::before { opacity: .1; background: radial-gradient(circle at 20% 10%,#fff 0 130px,transparent 131px); }.auth-visual::after { border-color: rgba(255,255,255,.25); }.auth-visual p { color: rgba(255,255,255,.8); font-size: 13px; }.auth-step,.auth-kicker { color: var(--ziro-orange-dark); }.auth-visual .auth-step { color: #fff4d8; }.auth-card h2 { font-size: 38px; letter-spacing: -.04em; }.field span { font-size: 11px; }.field input,.field select,.field textarea { min-height: 52px; border-color: #dedee6; border-radius: 999px; font-size: 11px; }.field textarea { border-radius: 14px; }.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--ziro-orange); box-shadow: 0 0 0 3px rgba(255,159,10,.11); }.form-submit { border-radius: 999px; color: #fff; background: var(--ziro-orange); }.auth-alt a,.check-field a { color: var(--ziro-orange-dark); }

.panel-page { color: var(--ziro-ink); background: var(--ziro-bg); }.panel-layout { grid-template-columns: 255px minmax(0,1fr); }.panel-sidebar { background: var(--ziro-ink); }.panel-sidebar nav a { min-height: 48px; border-radius: 7px; font-size: 11px; }.panel-sidebar nav a.active,.panel-sidebar nav a:hover { box-shadow: inset 3px 0 var(--ziro-orange); }.panel-sidebar nav b,.sidebar-help a { color: var(--ziro-orange); }.panel-topbar { min-height: 84px; border-bottom-color: var(--ziro-line); }.panel-avatar { border-radius: 50%; color: #fff; background: var(--ziro-orange); }.panel-heading span,.panel-card header a,.contest-edit-link { color: var(--ziro-orange-dark); }.panel-heading h1 { font-size: 37px; letter-spacing: -.04em; }.panel-heading p { font-size: 11px; }.panel-button,.form-submit { color: #fff; background: var(--ziro-orange); }.stat-card,.panel-card,.format-option { border-color: var(--ziro-line); border-radius: 9px; box-shadow: 0 10px 30px rgba(35,38,58,.045); }.stat-card span,.stat-card small,.contest-list-row small { font-size: 9px; }.panel-card header h2 { font-size: 16px; }.format-option:has(input:checked) { border-color: var(--ziro-orange); }.format-option i { border-radius: 50%; color: var(--ziro-orange-dark); background: var(--ziro-orange-soft); }

@media (max-width: 1180px) {
  .ziro-header { grid-template-columns: 1fr auto; }.ziro-header > nav { display: none; }
  .ziro-home-hero { grid-template-columns: minmax(0,1fr) minmax(410px,.85fr); gap: 30px; }.featured-float { right: 20px; }.art-stat { left: -15px; }
  .ziro-contest-row,.ziro-page .contest-tile { grid-template-columns: 62px minmax(180px,1.2fr) minmax(150px,.9fr) minmax(150px,.9fr) auto 38px; }.row-mode { display: none; }
}

@media (max-width: 900px) {
  .ziro-header { grid-template-columns: 1fr auto; }.header-search { display: none; }
  .ziro-home-hero { grid-template-columns: 1fr; padding-top: 50px; }.ziro-hero-copy { max-width: 720px; }.ziro-hero-art { min-height: 560px; }.art-circle { right: 50%; width: 500px; height: 500px; transform: translateX(50%); }.featured-float { right: 50%; width: 390px; min-width: 0; transform: translateX(50%) rotate(-2deg); }.art-stat { left: calc(50% - 255px); }
  .ziro-contest-row,.ziro-page .contest-tile { grid-template-columns: 62px minmax(170px,1fr) minmax(150px,.8fr) auto 38px; }.row-fact.orange { display: none; }
  .feature-cards { grid-template-columns: 1fr 1fr; }.feature-cards article:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,.7fr); }.footer-grid nav:last-child { display: none; }
}

@media (max-width: 680px) {
  .ziro-header { width: calc(100% - 32px); min-height: 78px; }.ziro-logo b { font-size: 17px; }.ziro-logo > span { transform: scale(.82); }.ziro-account .soft { display: none; }.ziro-account a { min-height: 40px; padding: 0 15px; font-size: 8px; }
  .ziro-home-hero,.ziro-list-section { width: 100%; padding-right: 18px; padding-left: 18px; }.ziro-home-hero { min-height: 0; }.ziro-hero-copy h1 { font-size: clamp(40px,12vw,58px); }.ziro-hero-copy > p { font-size: 12px; }
  .hero-search { grid-template-columns: 1fr; width: 100%; padding: 9px; }.hero-search label { min-height: 60px; align-content: center; }.hero-search label + label { border-top: 1px solid var(--ziro-line); border-left: 0; }.hero-search button { min-height: 55px; }
  .ziro-hero-art { min-height: 485px; }.art-circle { width: 410px; height: 410px; min-width: 0; min-height: 0; }.featured-float { top: 55px; width: min(340px,86vw); }.featured-float > div { height: 235px; }.art-stat { top: 200px; left: 2px; transform: scale(.85); }.art-dots { right: 0; }
  .list-toolbar { align-items: flex-start; flex-direction: column; }.ziro-page .filters-bar { width: 100%; overflow-x: auto; padding-bottom: 5px; }.ziro-page .filter-pill { flex: 0 0 auto; }
  .ziro-contest-row,.ziro-page .contest-tile { grid-template-columns: 55px 1fr auto; gap: 13px; min-height: 100px; padding: 14px; }.row-thumb { width: 52px; height: 52px; }.row-title h3 { font-size: 11px; }.row-fact,.row-mode,.row-heart { display: none; }.row-cta { min-width: 78px; min-height: 35px; }
  .ziro-featured { padding: 65px 18px 75px; }.section-title { align-items: flex-start; flex-direction: column; }.feature-cards { grid-template-columns: 1fr; }.feature-cards article:last-child { grid-column: auto; }
  .ziro-partners { gap: 22px; padding: 40px 18px; font-size: 11px; }
  .footer-cta { align-items: flex-start; flex-direction: column; width: calc(100% - 36px); padding: 55px 0; }.footer-cta > a { min-width: 230px; }.footer-grid { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); gap: 42px 25px; }.footer-grid > div { grid-column: 1 / -1; }.footer-bottom { width: calc(100% - 36px); }
  .public-header { grid-template-columns: 1fr auto; padding: 0 18px; }.public-header > nav { display: none; }.public-account > a:first-child:not(:last-child) { display: none; }
  .auth-shell { grid-template-columns: 1fr; }.panel-layout { grid-template-columns: 72px minmax(0,1fr); }
}

/* Dopracowanie czytelności i uproszczony slider hero. */
:root {
  --ziro-orange: #f5a623;
  --ziro-orange-dark: #d98200;
  --ziro-orange-soft: #fff4e2;
}

.ziro-header > nav { font-size: 13px; }
.header-search input { font-size: 12px; }
.ziro-account a { min-height: 46px; font-size: 11px; }
.ziro-eyebrow { font-size: 11px; }
.ziro-hero-copy > p { max-width: 650px; font-size: 16px; }
.hero-search label > span { font-size: 10px; }
.hero-search select { font-size: 13px; }
.hero-search button { font-size: 12px; }
.hero-categories { font-size: 10px; }
.hero-categories a { padding: 8px 14px; }

.ziro-hero-art {
  --hero-circle-size: clamp(760px, 64vw, 920px);
  --hero-circle-top: clamp(-250px, -16vw, -170px);
  --hero-circle-right: clamp(-250px, -14vw, -150px);
  --hero-stage-size: clamp(540px, 43vw, 600px);
  --hero-stage-top: clamp(-90px, -5.5vw, -55px);
  --hero-stage-right: clamp(-80px, -3.5vw, -35px);
  --hero-controls-right: clamp(-40px, -1vw, -10px);
  min-height: 580px;
}
.art-circle {
  top: var(--hero-circle-top);
  right: var(--hero-circle-right);
  width: var(--hero-circle-size);
  height: var(--hero-circle-size);
  min-width: 0;
  min-height: 0;
  background: #ffd59a;
}
.art-dots { opacity: .42; }
.art-wave { color: #d98200; opacity: .7; }

.hero-contest-slider {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: visible;
}

.hero-contest-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.hero-contest-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide-image {
  position: absolute;
  top: var(--hero-stage-top);
  right: var(--hero-stage-right);
  display: grid;
  place-items: center;
  width: var(--hero-stage-size);
  height: var(--hero-stage-size);
  padding: clamp(34px, 3vw, 52px);
}

.hero-slide-image::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 14%;
  left: 20%;
  height: 22px;
  border-radius: 50%;
  background: rgba(58, 38, 12, .16);
  filter: blur(14px);
}

.hero-slide-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(22px 28px 22px rgba(53, 35, 12, .2));
}

.hero-slide-image b {
  position: relative;
  z-index: 2;
  font-size: 64px;
}

.hero-slide-caption {
  position: absolute;
  top: calc(var(--hero-stage-top) + var(--hero-stage-size) + 14px);
  right: var(--hero-stage-right);
  width: var(--hero-stage-size);
  padding: 0 20px;
  text-align: center;
}

.hero-slide-caption small {
  color: #8f5c13;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-slide-caption h2 {
  overflow: hidden;
  margin: 0;
  color: var(--ziro-ink);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-slide-caption p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: #6c5c47;
  font-size: 12px;
  font-weight: 600;
}

.hero-slide-caption time { color: #412b0e; font-weight: 750; }

.hero-slider-controls {
  position: absolute;
  top: var(--hero-stage-top);
  right: var(--hero-controls-right);
  z-index: 8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(var(--hero-stage-size) - 60px);
  height: var(--hero-stage-size);
  color: #684414;
  font-size: 11px;
}

.hero-slider-controls > span { display: none; }

.hero-slider-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(80, 52, 14, .18);
  border-radius: 50%;
  color: var(--ziro-ink);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.hero-slider-controls button:hover { background: #fff; transform: translateY(-2px); }
.hero-slider-empty { position: absolute; top: 45%; right: 10%; z-index: 3; transform: translateY(-50%); }

.list-toolbar > div:first-child span,
.section-title span { font-size: 12px; }
.list-toolbar h2 { font-size: 34px; }
.ziro-page .filter-pill { height: 46px; padding-inline: 20px; font-size: 13px; }
.ziro-contest-row,
.ziro-page .contest-tile { min-height: 146px; }
.row-title { gap: 7px; }
.row-title h3 { font-size: 18px; }
.row-title a { font-size: 12px; }
.row-fact { gap: 14px; }
.row-fact i { flex-basis: 44px; width: 44px; height: 44px; font-size: 16px; }
.row-fact b,
.row-mode b { font-size: 14px; }
.row-fact span,
.row-mode span { font-size: 12px; }
.row-cta { min-width: 112px; min-height: 46px; font-size: 13px; }
.section-title > a { min-height: 48px; font-size: 12px; }
.feature-cards article > span { font-size: 12px; }
.feature-cards h3 { font-size: 20px; }
.feature-cards p { font-size: 14px; }
.footer-cta > a { font-size: 13px; }
.footer-grid > div p,
.footer-grid nav { font-size: 13px; }
.footer-grid nav b { font-size: 14px; }
.footer-bottom { font-size: 12px; }

.public-header nav { font-size: 13px; }
.public-account { font-size: 12px; }
.public-kicker,
.verified-label { font-size: 12px; }
.company-card-copy p,
.profile-contest-card p { font-size: 14px; }
.company-card-copy footer span,
.profile-contest-card small,
.profile-contest-card footer { font-size: 12px; }
.public-footer { font-size: 13px; }

.panel-sidebar nav a { font-size: 14px; }
.panel-heading p { font-size: 14px; }
.stat-card span { font-size: 12px; }
.stat-card small,
.contest-list-row small { font-size: 11px; }
.contest-list-row b { font-size: 15px; }
.panel-card header a,
.contest-edit-link { font-size: 12px; }
.format-option b { font-size: 14px; }
.format-option p,
.format-option small { font-size: 12px; }

@media (max-width: 1180px) {
  .featured-float { right: auto; }
  .art-stat { display: none; }
}

@media (max-width: 900px) {
  .ziro-hero-art {
    --hero-circle-size: min(680px, calc(100vw + 260px));
    --hero-circle-top: -105px;
    --hero-circle-right: -170px;
    --hero-stage-size: min(520px, calc(100vw + 70px));
    --hero-stage-top: 5px;
    --hero-stage-right: -65px;
    --hero-controls-right: -20px;
    min-height: calc(var(--hero-stage-size) + 80px);
  }
  .art-circle { right: var(--hero-circle-right); transform: none; }
  .hero-contest-slider { right: 0; width: 100%; overflow: visible; transform: none; }
  .hero-slide-image,
  .hero-slide-caption { right: var(--hero-stage-right); transform: none; }
  .hero-slider-controls { right: var(--hero-controls-right); transform: none; }
}

@media (max-width: 680px) {
  .ziro-hero-copy h1 { font-size: clamp(31px, 8.8vw, 42px); }
  .ziro-account a { font-size: 10px; }
  .ziro-hero-copy > p { font-size: 14px; }
  .hero-search label > span { font-size: 10px; }
  .hero-search select { font-size: 13px; }
  .hero-search button { font-size: 12px; }
  .hero-categories { font-size: 10px; }
  .hero-slide-image { padding: 40px; }
  .hero-slide-caption h2 { font-size: 20px; }
  .row-title h3 { font-size: 15px; }
  .row-title a { font-size: 12px; }
  .row-cta { min-width: 88px; min-height: 40px; font-size: 11px; }
}

/* Większe i czytelniejsze miniatury na liście konkursów. */
.ziro-contest-row,
.ziro-page .contest-tile {
  grid-template-columns: 108px minmax(220px, 1.35fr) minmax(150px, .85fr) minmax(155px, .85fr) minmax(120px, .65fr) 112px 42px;
  min-height: 152px;
  padding-block: 22px;
}

.row-thumb {
  width: 100px;
  height: 100px;
  border-radius: 9px;
}

.row-thumb img {
  padding: 4px;
  transform: scale(1.03);
}

@media (max-width: 1180px) {
  .ziro-contest-row,
  .ziro-page .contest-tile {
    grid-template-columns: 98px minmax(230px, 1.2fr) minmax(170px, .9fr) minmax(170px, .9fr) auto 42px;
  }
  .row-thumb { width: 90px; height: 90px; }
}

@media (max-width: 900px) {
  .ziro-contest-row,
  .ziro-page .contest-tile {
    grid-template-columns: 92px minmax(220px, 1fr) minmax(180px, .8fr) auto 40px;
  }
  .row-thumb { width: 84px; height: 84px; }
}

@media (max-width: 680px) {
  .ziro-contest-row,
  .ziro-page .contest-tile {
    grid-template-columns: 78px 1fr auto;
    min-height: 126px;
  }
  .row-thumb { width: 72px; height: 72px; }
}
