:root {
  --page-bg: #f5f5f5;
  --panel-bg: #f5f5f5;
  --header-bg: #ffffff;
  --line-color: #ffffff;
  --text-color: #111111;
  --muted-color: #6f6f6f;
  --section-max: 1200px;
  --content-max: 760px;
  --space-section-x: 30px;
  --space-section-y: 40px;
  --space-section-y-top: 52px;
  --space-section-y-top-standard: 46px;
  --space-section-y-bottom: 40px;
  --space-section-y-bottom-narrow: 58px;
  --space-head-bottom: 30px;
  --space-title-bottom: 6px;
  --space-subtitle-bottom: 14px;
  --space-actions-top: 18px;
  --space-actions-gap: 12px;
  --radius-soft: 22px;
  --border-light: rgba(17, 17, 17, 0.08);
  --aw-section-top-pad: 52px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--page-bg);
  color: var(--text-color);
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

body *::selection {
  background: transparent;
  color: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0;
}

.aw-stage,
.aw-stage__viewport,
.aw-stage__scroller,
.aw-slide,
.aw-szczelina-ribbon__item,
.aw-szczelina-single__media,
.aw-gallery-card,
.aw-gallery-card__media,
.aw-journal-card__thumb,
.aw-zoom__img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.aw-stage__scroller:focus,
.aw-stage__scroller:focus-visible {
  outline: none;
  box-shadow: none;
}

.aw-section[tabindex]:focus,
.aw-section[tabindex]:focus-visible,
.aw-stage__scroller[tabindex]:focus,
.aw-stage__scroller[tabindex]:focus-visible,
.aw-obrazy-scroller[tabindex]:focus,
.aw-obrazy-scroller[tabindex]:focus-visible,
.idemy-swiper[tabindex]:focus,
.idemy-swiper[tabindex]:focus-visible,
.ribbon[tabindex]:focus,
.ribbon[tabindex]:focus-visible {
  outline: none;
  box-shadow: none;
}

.aw-stage img,
.aw-stage picture,
.aw-stage video,
.aw-zoom__img {
  -webkit-user-drag: none;
  user-drag: none;
}

body.aw-lock-scroll {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.site-header__inner {
  position: relative;
  max-width: var(--section-max);
  margin: 0 auto;
  min-height: 88px;
  padding: 0 var(--space-section-x);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-header__lang-link {
  position: absolute;
  right: var(--space-section-x);
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-color);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__lang-link:hover {
  color: var(--text-color);
}

.site-header__nav {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.site-header__nav-list,
.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.site-header__nav-list {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 12px var(--space-section-x);
}

.site-header__nav-link,
.site-footer__nav-link {
  text-decoration: none;
  color: var(--muted-color);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.site-header__nav-link:hover,
.site-footer__nav-link:hover {
  color: var(--text-color);
}

.site-main {
  display: block;
}

.aw-section {
  background: var(--panel-bg);
}

.aw-section > .aw-section__line:first-child {
  display: none !important;
}

.aw-section__inner {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: var(--aw-section-top-pad) var(--space-section-x) var(--space-section-y-bottom);
}

.aw-section:not(.aw-section--full) .aw-section__inner {
  padding-bottom: var(--space-section-y-bottom-narrow);
}

.aw-section--full .aw-section__inner {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.aw-section--no-head .aw-section__inner {
  padding-top: 0;
}

.aw-section__line {
  display: block;
  height: 10px;
  background: var(--line-color);
}

.aw-section--sec-video .aw-section__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.aw-section__head {
  max-width: var(--content-max);
  margin: 0 auto var(--space-head-bottom);
  text-align: center;
}

.aw-section--full .aw-section__head {
  padding-left: var(--space-section-x);
  padding-right: var(--space-section-x);
}

.aw-section__title {
  margin: 0 0 var(--space-title-bottom);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.aw-section__subtitle {
  margin: 0 0 var(--space-subtitle-bottom);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aw-section__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.aw-section__actions {
  margin-top: var(--space-actions-top);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-actions-gap);
}

.aw-action {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: #7a7a7a;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.aw-action:hover {
  color: var(--text-color);
}

.aw-action--italic {
  font-style: italic;
}

.aw-section__content {
  width: 100%;
}

.aw-section__content--narrow {
  max-width: var(--content-max);
  margin: 0 auto;
}

.aw-section__content--blocks {
  display: block;
}

.aw-stage {
  position: relative;
  width: 100%;
}

.aw-stage__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aw-stage__scroller {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  outline: none;
}

.aw-stage__scroller::-webkit-scrollbar {
  display: none;
}

.aw-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}

.aw-stage__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  --aw-dot-size: 8px;
  --aw-dot-gap: 22px;
  --aw-dot-pair-gap: 14px;
  --aw-dot-off: 42px;
  --aw-dot-step: 22px;
  --aw-dot-fade: 26px;
}

.aw-stage__dots[hidden] {
  display: none !important;
}

.aw-stage__dots--inline {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 10px auto 0;
}

.aw-stage__dots.is-pair {
  gap: var(--aw-dot-pair-gap);
}

.aw-stage__dots.is-rolling {
  width: calc(var(--aw-dot-step) * 2 + var(--aw-dot-size));
  height: 20px;
}

.aw-stage__dot {
  all: unset;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.aw-stage__dot[disabled],
.aw-stage__dot[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.aw-stage__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
}

.aw-stage__dot--pair {
  display: block;
  width: var(--aw-dot-size);
  height: var(--aw-dot-size);
  border-radius: 50%;
  transition: background-color .2s ease, transform .2s ease;
}

.aw-stage__dot--rolling {
  --x: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--aw-dot-size);
  height: var(--aw-dot-size);
  margin-left: calc(var(--aw-dot-size) / -2);
  border-radius: 50%;
  transform: translate(var(--x), -50%);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .42s ease, background-color .18s ease;
  opacity: 1;
}

.aw-stage__dot--rolling[data-aw-rolling-slot="left"] {
  --x: calc(var(--aw-dot-step) * -1);
}

.aw-stage__dot--rolling[data-aw-rolling-slot="center"] {
  --x: 0px;
}

.aw-stage__dot--rolling[data-aw-rolling-slot="right"] {
  --x: var(--aw-dot-step);
}

.aw-stage__dot--rolling.off-left {
  --x: calc(var(--aw-dot-fade) * -1);
  opacity: 0;
  pointer-events: none;
}

.aw-stage__dot--rolling.off-right {
  --x: var(--aw-dot-fade);
  opacity: 0;
  pointer-events: none;
}

.aw-stage__dots--dark .aw-stage__dot--pair,
.aw-stage__dots--dark .aw-stage__dot--rolling {
  background: #bdbdbd;
}

.aw-stage__dots--dark .aw-stage__dot.is-active,
.aw-stage__dots--dark .aw-stage__dot--pair.is-active {
  background: #111111;
}

.aw-stage__dots--light .aw-stage__dot--pair,
.aw-stage__dots--light .aw-stage__dot--rolling {
  background: rgba(255, 255, 255, 0.45);
}

.aw-stage__dots--light .aw-stage__dot.is-active,
.aw-stage__dots--light .aw-stage__dot--pair.is-active {
  background: #ffffff;
}


.aw-stage--video .aw-stage__viewport {
  background: #000000;
  height: 65vh;
  min-height: 340px;
  max-height: 860px;
}

.aw-video-card {
  width: 100%;
  height: 100%;
  background: #000000;
}

.aw-video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
}


.aw-stage--obrazy .aw-stage__viewport {
  background: #f5f5f5;
  min-height: clamp(420px, 70vh, 820px);
}

.aw-slide--obrazy {
  padding: 0 18px 54px;
}

.aw-gallery-card {
  width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
}

.aw-gallery-card__open {
  width: 100%;
  min-height: clamp(320px, 58vh, 560px);
  padding: 20px 0 18px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.aw-gallery-card__img {
  display: block;
  width: auto;
  max-width: min(520px, calc(100vw - 56px));
  height: auto;
  max-height: min(520px, 62vh);
  object-fit: contain;
}

.aw-gallery-card__meta {
  width: min(520px, 100%);
  text-align: center;
  padding: 0 8px;
}

.aw-gallery-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  white-space: pre-wrap;
}

.aw-gallery-card__subline {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #555555;
  white-space: pre-wrap;
}

.aw-szczelina-head {
  position: relative;
  min-height: 120px;
  padding: 0 30px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.aw-szczelina-head__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  flex: 1 1 auto;
}

.aw-szczelina-head__title {
  margin-bottom: 6px;
}

.aw-szczelina-head__subtitle {
  margin-bottom: 26px;
}

.aw-szczelina-head__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #111111;
}

.aw-szczelina-head__more {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-style: italic;
  color: #7a7a7a;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.aw-szczelina-head__more::before {
  content: "\00a0";
}

.aw-szczelina-head__more:hover {
  text-decoration: underline;
}

.aw-szczelina-gview {
  position: absolute;
  left: 18px;
  bottom: 12px;
  opacity: .82;
  z-index: 6;
}

.aw-szczelina-gview__btn {
  appearance: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.aw-szczelina-gview__btn:hover {
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.aw-szczelina-gview__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.aw-szczelina-ribbon {
  position: relative;
  padding-top: 6px;
  overflow: hidden;
}

.aw-szczelina-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 140% 160% at 50% 100%,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 0, 0.04) 40%,
    rgba(0, 0, 0, 0.70) 65%,
    rgba(0, 0, 0, 0.70) 100%
  );
  opacity: .9;
}

.aw-szczelina-ribbon__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 24px 54px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.aw-szczelina-ribbon__track::-webkit-scrollbar {
  display: none;
}

.aw-szczelina-ribbon__item {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  flex: 0 0 auto;
  width: clamp(180px, 24vw, 320px);
  cursor: pointer;
  scroll-snap-align: center;
}

.aw-szczelina-ribbon__item img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.aw-stage--szczelina-single .aw-stage__viewport {
  min-height: clamp(420px, 72vh, 820px);
  background: #f5f5f5;
}

.aw-slide--szczelina {
  padding: 0 16px 54px;
  min-height: inherit;
}

.aw-szczelina-single__box {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-szczelina-single__open {
  width: 100%;
  min-height: clamp(320px, 58vh, 560px);
  padding: 18px 0 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.aw-szczelina-single__img {
  display: block;
  width: auto;
  max-width: min(520px, calc(100vw - 56px));
  height: auto;
  max-height: min(520px, 62vh);
  object-fit: contain;
}

.aw-szczelina-cap {
  text-align: center;
  padding: 0 22px 4px;
}

.aw-szczelina-cap__title {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  white-space: pre-wrap;
}

.aw-szczelina-cap__dims {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #555555;
  white-space: pre-wrap;
}

.aw-szczelina-overlay__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: #111111;
}

.aw-szczelina-overlay__body p:last-child {
  margin-bottom: 0;
}

.aw-stage--dziennik .aw-stage__viewport {
  background: #f5f5f5;
  min-height: 540px;
}

.aw-slide--journal {
  padding: 0 var(--space-section-x);
}

.aw-journal-card {
  width: min(100%, 880px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  background: #ffffff;
  color: #111111;
  min-height: 100%;
}

.aw-journal-card__thumb {
  margin: 0;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #e9e9e9;
  overflow: hidden;
}

.aw-journal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-journal-card__body {
  padding: 24px 24px 64px;
  display: grid;
  gap: 10px;
}

.aw-journal-card__meta {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #7a7a7a;
  text-transform: uppercase;
}

.aw-journal-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.aw-journal-card__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #333333;
}

.aw-journal-card__more {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.4;
  color: #7a7a7a;
}

.aw-journal-card:hover .aw-journal-card__more {
  color: #111111;
}

.aw-stage-loading {
  padding: 28px var(--space-section-x) 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #7a7a7a;
}



.aw-idemy-head {
  position: relative;
  max-width: 800px;
  margin: 0 auto 8px;
  padding: 0 20px;
  text-align: center;
}

.aw-idemy-head__title {
  margin-bottom: 6px;
}

.aw-idemy-head__subtitle {
  margin-bottom: 0;
}

.aw-idemy-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
}

.aw-idemy-swatch {
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
  background: var(--aw-swatch-color, #111111);
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  opacity: .88;
}

.aw-idemy-swatch:hover,
.aw-idemy-swatch.is-on {
  transform: scale(1.05);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.aw-stage--idemy .aw-stage__viewport {
  background: #f5f5f5;
}

.aw-stage--idemy .aw-stage__scroller {
  height: auto;
  align-items: flex-start;
}

.aw-slide--idemy {
  height: auto;
  padding: 0 0 44px;
}

.aw-idemy-card {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 0;
  background: #f5f5f5;
}

.aw-idemy-card__head,
.aw-idemy-card__note,
.aw-idemy-card__body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.aw-idemy-card__head {
  padding-top: 0;
  text-align: left;
}

.aw-idemy-card__category {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111111;
}

.aw-idemy-card__intro {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  white-space: pre-wrap;
}

.aw-idemy-card__figure {
  margin: 20px 0 0;
}

.aw-idemy-card__picture {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.aw-idemy-card__image {
  box-sizing: border-box;
  display: block;
  width: calc(100% - 14px);
  height: auto;
  margin: 7px auto;
}

.aw-idemy-card__note {
  margin-top: 10px;
  text-align: center;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.35;
  white-space: pre-wrap;
}

.aw-idemy-card__body {
  padding-top: 14px;
  padding-bottom: 16px;
  overflow: visible !important;
}

.aw-idemy-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-wrap;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 8 !important;
  overflow: hidden !important;
}

.aw-idemy-card__text.is-open {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.aw-idemy-card__more {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  display: block;
  margin-top: 8px;
  margin-left: auto;
  text-align: right;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: #8a8a8a;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  touch-action: manipulation;
}

.aw-idemy-card__more:hover {
  color: #666666;
}

.aw-idemy-card__more[hidden] {
  display: none !important;
}

.aw-stage-empty {
  width: 100%;
  padding: 24px 0 18px;
}

.aw-stage-empty__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-section-x);
  text-align: center;
}

.aw-stage-empty__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-color);
}

.aw-stage-empty__text {
  font-size: 17px;
  line-height: 1.7;
}

.aw-stage-empty__note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-color);
}

.aw-stage-empty--dark {
  min-height: 50vh;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-stage-empty--dark .aw-stage-empty__eyebrow,
.aw-stage-empty--dark .aw-stage-empty__note {
  color: rgba(255, 255, 255, 0.72);
}

.aw-block + .aw-block {
  margin-top: 18px;
}

.aw-block--intro {
  margin-bottom: 22px;
}

.aw-block--heading {
  margin: 34px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.aw-block + .aw-block--heading {
  margin-top: 42px;
}

.aw-block--text {
  font-size: 17px;
  line-height: 1.7;
}

.aw-rich-divider {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
}

.aw-rich-divider-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-style: italic;
  color: #7a7a7a;
  cursor: pointer;
  text-decoration: none;
}

.aw-rich-divider-btn:hover {
  text-decoration: underline;
}

.aw-rich-tail {
  padding-top: 14px;
}

.aw-block--divider {
  display: none !important;
}

.aw-block--image {
  margin: 28px 0;
  padding-top: 10px;
}

.aw-figure {
  margin: 0;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}

.aw-figure__items {
  width: 100%;
  display: grid;
  justify-content: center;
  gap: 14px;
}

.aw-figure__items--cols-1 {
  grid-template-columns: minmax(0, max-content);
}

.aw-figure__items--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.aw-figure__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.aw-figure__item--no-caption {
  padding-bottom: 10px;
}

.aw-figure__open {
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.aw-figure__media {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: block;
}

.aw-figure__caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-color);
  text-align: center;
}

.aw-figure--pair .aw-figure__open,
.aw-figure--pair .aw-figure__media {
  width: auto;
  max-width: 100%;
}

.aw-figure--pair .aw-figure__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.aw-figure--pair .aw-figure__item {
  flex: 0 1 auto;
  max-width: calc((100% - 14px) / 2);
}

.aw-modal[hidden] {
  display: none !important;
}

.aw-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(245, 245, 245, 0.96);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.aw-modal__panel {
  width: min(920px, 100%);
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.aw-modal__head {
  padding: 18px var(--space-section-x) 0;
  display: flex;
  justify-content: flex-end;
}

.aw-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  color: #333333;
  cursor: pointer;
}

.aw-modal__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 var(--space-section-x) calc(30px + env(safe-area-inset-bottom));
}

.aw-modal__title {
  max-width: var(--content-max);
  margin: 0 auto 24px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.aw-modal__content {
  padding-bottom: 20px;
}

.aw-zoom[hidden] {
  display: none !important;
}

.aw-zoom {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000000;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.aw-zoom__panel {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  position: relative;
}

.aw-zoom__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 7;
  appearance: none;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
}

.aw-zoom__close:hover {
  background: rgba(0, 0, 0, 0.76);
}

.aw-zoom__viewer {
  position: relative;
  background: #000000;
  overflow: hidden;
  min-height: 200px;
}

.aw-zoom__osd,
.aw-zoom__img {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.aw-zoom__img {
  object-fit: contain;
}

.aw-zoom__nav {
  position: fixed;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  pointer-events: none;
  z-index: 6;
}

.aw-zoom__arrow {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
}

.aw-zoom__arrow[disabled] {
  opacity: 0.24;
  cursor: default;
}

.aw-zoom__meta {
  text-align: center;
  padding: 10px 58px 16px;
  background: #000000;
}

.aw-zoom__title {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #ffffff;
}

.aw-zoom__caption {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: transparent;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.site-footer__inner {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 24px var(--space-section-x) 40px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.site-footer__nav-list {
  gap: 8px 16px;
}

.site-footer__text,
.site-footer__links {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-color);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
}

.site-footer__sep {
  opacity: 0.45;
}

@media (prefers-reduced-motion: reduce) {
  .aw-stage--idemy .aw-stage__viewport {
    transition: none;
  }
}

@media (max-width: 900px) {
  :root {
    --space-section-x: 24px;
    --space-section-y: 32px;
    --space-section-y-top: 46px;
    --space-section-y-top-standard: 40px;
    --space-section-y-bottom: 34px;
    --space-section-y-bottom-narrow: 50px;
    --aw-section-top-pad: 46px;
  }

  .aw-section__title,
  .aw-modal__title {
    font-size: 24px;
  }

  .aw-journal-card__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .aw-stage--video .aw-stage__viewport {
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}

@media (min-width: 768px) {
  .aw-idemy-card__picture {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --space-section-x: 18px;
    --space-section-y: 26px;
    --space-section-y-top: 34px;
    --space-section-y-top-standard: 30px;
    --space-section-y-bottom: 24px;
    --space-section-y-bottom-narrow: 38px;
    --space-head-bottom: 24px;
    --aw-section-top-pad: 34px;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-header__title {
    font-size: 24px;
  }

  .site-header__lang-link {
    right: var(--space-section-x);
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .site-header__nav-list {
    gap: 8px 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .aw-section__title,
  .aw-modal__title {
    font-size: 22px;
  }

  .aw-section__description,
  .aw-block--text,
  .aw-stage-empty__text,
  .aw-journal-card__lead {
    font-size: 15px;
  }

  .aw-stage-empty__note,
  .aw-figure__caption,
  .aw-zoom__caption {
    font-size: 13px;
  }

  .aw-stage--media .aw-stage__viewport {
    min-height: clamp(340px, 72vw, 520px);
  }

  .aw-media-card__button {
    padding: 20px 16px 78px;
  }

  .aw-media-card__meta {
    bottom: 38px;
    padding: 0 18px;
  }

  .aw-stage-empty__inner {
    padding: 0 18px;
  }

  .aw-idemy-card__head,
  .aw-idemy-card__note,
  .aw-idemy-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .aw-idemy-card__category {
    font-size: 22px;
  }

  .aw-idemy-card__intro,
  .aw-idemy-modal__intro,
  .aw-idemy-modal__text {
    font-size: 15px;
  }

  .aw-slide--journal {
    padding: 0 18px;
  }

  .aw-journal-card__body {
    padding: 20px 18px 58px;
  }

  .aw-zoom__arrow {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .aw-zoom__nav {
    bottom: 12px;
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-stage__dot--rolling {
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .aw-idemy-card__picture {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .aw-gallery-card__img,
  .aw-szczelina-single__img {
    max-width: 520px;
    max-height: 520px;
  }

  .aw-idemy-card__text {
    -webkit-line-clamp: 22 !important;
  }
}

@media (max-width: 900px) {
  .aw-szczelina-head {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .aw-stage--obrazy .aw-stage__viewport,
  .aw-stage--szczelina-single .aw-stage__viewport {
    min-height: clamp(340px, 72vw, 520px);
  }

  .aw-gallery-card__open,
  .aw-szczelina-single__open {
    min-height: clamp(280px, 72vw, 460px);
  }

  .aw-gallery-card__img,
  .aw-szczelina-single__img {
    max-width: calc(100vw - 40px);
    max-height: 78vw;
  }

  .aw-szczelina-ribbon__track {
    gap: 14px;
    padding: 0 16px 50px;
  }

  .aw-szczelina-ribbon__item {
    width: clamp(150px, 48vw, 230px);
  }

  .aw-szczelina-head {
    min-height: auto;
    padding: 0 20px 38px;
  }

  .aw-szczelina-head__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  .aw-idemy-head {
    padding-left: 18px;
    padding-right: 18px;
  }

  .aw-idemy-card__head,
  .aw-idemy-card__note,
  .aw-idemy-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .aw-idemy-card__category {
    font-size: 22px;
  }

  .aw-idemy-card__intro,
  .aw-idemy-card__text,
  .aw-szczelina-overlay__body p {
    font-size: 15px;
  }

  .aw-gallery-card__meta,
  .aw-szczelina-cap {
    padding-left: 18px;
    padding-right: 18px;
  }
}


.aw-figure__caption {
  max-width: 100%;
}


:root{
  --aw-section-top-pad: 40px;
}

@media (max-width:1024px){
  :root{
    --aw-section-top-pad: 32px;
  }
}

@media (max-width:767px){
  :root{
    --aw-section-top-pad: 26px;
  }
}

.aw-zoom{
  background:#000 !important;
}

.aw-zoom__panel{
  display:block !important;
  width:100vw !important;
  height:100vh !important;
  position:relative !important;
}

.aw-zoom__viewer{
  position:absolute !important;
  inset:0 !important;
  min-height:0 !important;
  background:#000 !important;
}

.aw-zoom__osd,
.aw-zoom__img{
  width:100% !important;
  height:100% !important;
  background:#000 !important;
}

.aw-zoom__img{
  object-fit:contain !important;
}

.aw-zoom__close{
  position:fixed !important;
  top:16px !important;
  right:16px !important;
  z-index:100000 !important;
  width:46px !important;
  height:46px !important;
  background:rgba(0,0,0,.6) !important;
  color:#fff !important;
  border-radius:999px !important;
  -webkit-backdrop-filter:saturate(120%) blur(6px) !important;
  backdrop-filter:saturate(120%) blur(6px) !important;
}

.aw-zoom__close:hover{
  background:rgba(0,0,0,.75) !important;
}

.aw-zoom__nav{
  position:fixed !important;
  left:0 !important;
  right:0 !important;
  bottom:14px !important;
  top:auto !important;
  transform:none !important;
  z-index:100000 !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  padding:0 14px !important;
  pointer-events:none !important;
}

.aw-zoom__arrow{
  pointer-events:auto !important;
  width:52px !important;
  height:52px !important;
  border-radius:999px !important;
  border:0 !important;
  cursor:pointer !important;
  background:rgba(0,0,0,.55) !important;
  color:#fff !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:28px !important;
  line-height:1 !important;
  -webkit-backdrop-filter:saturate(120%) blur(6px) !important;
  backdrop-filter:saturate(120%) blur(6px) !important;
}

.aw-zoom__arrow:hover{
  background:rgba(0,0,0,.75) !important;
}

.aw-zoom__arrow[disabled]{
  opacity:.25 !important;
  cursor:default !important;
}

.aw-zoom__meta{
  position:fixed !important;
  left:50% !important;
  bottom:76px !important;
  transform:translateX(-50%) !important;
  width:min(92vw, 560px) !important;
  padding:0 18px !important;
  text-align:center !important;
  background:transparent !important;
  pointer-events:none !important;
  z-index:99999 !important;
}

.aw-zoom__meta[hidden]{
  display:none !important;
}

.aw-zoom__title{
  color:#fff !important;
  text-shadow:0 1px 4px rgba(0,0,0,.65) !important;
}

.aw-zoom__caption{
  color:rgba(255,255,255,.72) !important;
  text-shadow:0 1px 4px rgba(0,0,0,.65) !important;
}

@media (max-width:767px){
  .aw-zoom__close{
    top:12px !important;
    right:12px !important;
    width:42px !important;
    height:42px !important;
  }

  .aw-zoom__nav{
    bottom:12px !important;
    padding:0 12px !important;
  }

  .aw-zoom__arrow{
    width:48px !important;
    height:48px !important;
  }

  .aw-zoom__meta{
    bottom:70px !important;
  }
}
