/* Start custom CSS for section, class: .elementor-element-e844dfc *//* ==================================================
   TICO — DZIEDZICTWO W EPOKACH
   ================================================== */

.tico-era {
  --tico-red: #e1261c;
  --tico-black: #111111;
  --tico-text: #303030;
  --tico-muted: #787d86;
  --tico-border: #e3e4e7;
  --tico-soft: #f7f7f8;

  position: relative;
  width: 100%;
  margin: 0 0 80px;
  color: var(--tico-black);
}


/* ==================================================
   HEADER
   ================================================== */

.tico-era__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 34px;
}

.tico-era__header > div:first-child {
  max-width: 850px;
}

.tico-era .section-title {
  margin-bottom: 26px;
}

.tico-era__heading {
  margin: 0 0 12px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.18;
  font-weight: 750;
  color: var(--tico-black);
}

.tico-era__lead {
  max-width: 820px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #656a73;
}

.tico-era__eyebrow {
  padding-top: 10px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #979ba3;
  white-space: nowrap;
}


/* ==================================================
   GÓRNY TIMELINE
   ================================================== */

.tico-era__timeline-wrap {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 18px;
  align-items: end;

  margin-bottom: 26px;
}

.tico-era__timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));

  min-width: 0;
}

/* szara linia */
.tico-era__timeline::before {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: 7px;

  height: 1px;

  background: #cfd2d7;
}

/* czerwona aktywna część */
.tico-era__timeline::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: 7px;

  width: var(--timeline-progress, 0%);
  height: 2px;

  background: var(--tico-red);

  transition: width 0.35s ease;
}


.tico-era__point {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-width: 0;

  padding: 0 10px 22px;

  background: transparent;
  border: 0;

  text-align: left;
  cursor: pointer;

  color: #20242a;
}

.tico-era__point-date {
  margin-bottom: 4px;

  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;

  transition: color 0.2s ease;
}

.tico-era__point-title {
  overflow: hidden;

  max-width: 100%;

  color: #868b93;

  font-size: 13px;
  line-height: 1.3;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.tico-era__point-dot {
  position: absolute;

  left: 10px;
  bottom: 1px;

  width: 13px;
  height: 13px;

  background: #969ba3;

  border: 3px solid #ffffff;
  border-radius: 999px;

  box-shadow: 0 0 0 1px #d5d7da;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.tico-era__point.is-active .tico-era__point-date {
  color: var(--tico-red);
}

.tico-era__point.is-active .tico-era__point-dot {
  background: var(--tico-red);
  transform: scale(1.1);

  box-shadow:
    0 0 0 1px #ffffff,
    0 0 0 2px var(--tico-red);
}


/* główne strzałki */

.tico-era__nav-main {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin-bottom: -7px;

  padding: 0;

  border: 1px solid #e3e4e7;
  border-radius: 50%;

  background: #ffffff;

  color: #111111;

  font-size: 24px;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.07);

  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tico-era__nav-main:hover {
  border-color: var(--tico-red);
  color: var(--tico-red);

  transform: translateY(-1px);

  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.10);
}


/* ==================================================
   GŁÓWNA KARTA
   ================================================== */

.tico-era__slider {
  position: relative;

  padding: 20px;

  background: #ffffff;

  border: 1px solid #ededee;
  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.065);
}


.tico-era__slide {
  display: none;

  grid-template-columns: minmax(350px, 44%) minmax(0, 56%);

  min-height: 500px;
}

.tico-era__slide.is-active {
  display: grid;

  animation: tico-era-fade 0.35s ease;
}

@keyframes tico-era-fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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


/* ==================================================
   LEWA FOTOGRAFIA
   ================================================== */

.tico-era__visual {
  position: relative;

  min-height: 500px;

  overflow: hidden;

  background: #171717;

  border-radius: 8px;
}

.tico-era__visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.54) 0%,
      rgba(0, 0, 0, 0.12) 48%,
      rgba(0, 0, 0, 0) 75%
    );

  pointer-events: none;
}

.tico-era__visual img {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 500px;

  object-fit: cover;
}


/* hasło na zdjęciu */

.tico-era__visual-overlay {
  position: absolute;

  top: 42px;
  left: 38px;

  z-index: 2;

  display: flex;
  flex-direction: column;

  max-width: 260px;

  color: #ffffff;

  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.03;
  font-weight: 750;
}

.tico-era__visual-overlay strong {
  color: var(--tico-red);
  font-weight: 800;
}


/* data pod zdjęciem */

.tico-era__visual-footer {
  position: absolute;

  left: 38px;
  bottom: 29px;

  z-index: 2;

  display: flex;
  flex-direction: column;

  color: #ffffff;
}

.tico-era__visual-footer strong {
  margin-bottom: 7px;

  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.tico-era__visual-footer span {
  font-size: 9px;
  line-height: 1.3;

  font-weight: 600;

  letter-spacing: 0.24em;

  opacity: 0.78;
}


/* ==================================================
   PRAWA TREŚĆ
   ================================================== */

.tico-era__content {
  position: relative;

  overflow: hidden;

  padding: 18px 42px 20px;

  background: #ffffff;
}


/* ogromne tło 1991/1994 */

.tico-era__watermark {
  position: absolute;

  top: -4px;
  right: 20px;

  z-index: 0;

  color: #f2f2f3;

  font-size: clamp(70px, 8vw, 120px);
  line-height: 0.82;

  font-weight: 800;

  text-align: right;

  pointer-events: none;

  user-select: none;
}


.tico-era__content > *:not(.tico-era__watermark) {
  position: relative;
  z-index: 2;
}


.tico-era__label {
  display: block;

  margin-bottom: 14px;

  color: #9b9fa6;

  font-size: 9px;
  line-height: 1.4;

  font-weight: 700;

  letter-spacing: 0.26em;
}


.tico-era__date {
  margin-bottom: 3px;

  color: var(--tico-red);

  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.05;

  font-weight: 800;
}


.tico-era__title {
  margin: 0 0 14px;

  color: #111111;

  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -0.025em;
}


.tico-era__description {
  max-width: 650px;

  margin: 0 0 22px;

  color: #555b63;

  font-size: 15px;
  line-height: 1.6;
}


/* ==================================================
   FAKTY
   ================================================== */

.tico-era__facts {
  display: flex;
  flex-direction: column;

  gap: 11px;
}


.tico-era__fact {
  display: grid;

  grid-template-columns: 43px minmax(0, 1fr);

  gap: 12px;

  align-items: center;
}


.tico-era__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 41px;
  height: 41px;

  background: #f5f5f6;

  border: 1px solid #ececef;
  border-radius: 50%;

  color: var(--tico-red);

  font-size: 11px;
  line-height: 1;

  font-weight: 800;
}


.tico-era__fact strong {
  display: block;

  margin-bottom: 2px;

  color: #151515;

  font-size: 14px;
  line-height: 1.3;

  font-weight: 750;
}


.tico-era__fact span {
  display: block;

  color: #7a7f86;

  font-size: 12px;
  line-height: 1.35;
}


/* ==================================================
   DOLNA NAWIGACJA
   ================================================== */

.tico-era__bottom-nav {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 20px;

  margin-top: 18px;
  padding-top: 15px;

  border-top: 1px solid #ececee;
}


.tico-era__dots {
  display: flex;
  gap: 7px;
}


.tico-era__dots button {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: #c5c8cd;

  cursor: pointer;

  transition:
    width 0.2s ease,
    background 0.2s ease;
}


.tico-era__dots button.is-active {
  width: 22px;

  background: var(--tico-red);
}


.tico-era__bottom-brand {
  color: #a0a4aa;

  font-size: 9px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.24em;

  text-align: center;
}


.tico-era__bottom-arrows {
  display: flex;
  justify-content: flex-end;

  gap: 8px;
}


.tico-era__bottom-arrows button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  padding: 0;

  border: 1px solid #e1e2e4;
  border-radius: 50%;

  background: #ffffff;

  color: #161616;

  font-size: 17px;

  cursor: pointer;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}


.tico-era__bottom-arrows button:hover {
  color: var(--tico-red);
  border-color: var(--tico-red);
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1100px) {

  .tico-era__eyebrow {
    display: none;
  }

  .tico-era__timeline-wrap {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .tico-era__nav-main {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }


  .tico-era__timeline {
    overflow-x: auto;

    grid-template-columns: repeat(6, minmax(155px, 1fr));

    scrollbar-width: none;
  }

  .tico-era__timeline::-webkit-scrollbar {
    display: none;
  }


  .tico-era__slide {
    grid-template-columns: 42% 58%;
  }

  .tico-era__content {
    padding: 18px 25px;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

  .tico-era {
    margin-bottom: 52px;
  }


  .tico-era__header {
    margin-bottom: 24px;
  }


  .tico-era__lead {
    font-size: 15px;
    line-height: 1.55;
  }


  .tico-era__timeline-wrap {
    grid-template-columns: 38px minmax(0, 1fr) 38px;

    gap: 5px;

    margin-bottom: 18px;
  }


  .tico-era__nav-main {
    width: 36px;
    height: 36px;

    font-size: 17px;
  }


  .tico-era__timeline {
    grid-template-columns: repeat(6, 145px);

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
  }


  .tico-era__point {
    scroll-snap-align: center;

    padding: 0 8px 22px;
  }


  .tico-era__point-date {
    font-size: 14px;
  }


  .tico-era__point-title {
    font-size: 11px;
  }


  .tico-era__slider {
    padding: 8px;

    border-radius: 10px;
  }


  .tico-era__slide.is-active {
    display: block;
  }


  .tico-era__visual,
  .tico-era__visual img {
    min-height: 370px;
  }


  .tico-era__visual {
    border-radius: 7px 7px 0 0;
  }


  .tico-era__visual-overlay {
    top: 28px;
    left: 24px;

    max-width: 220px;

    font-size: 28px;
  }


  .tico-era__visual-footer {
    left: 24px;
    bottom: 22px;
  }


  .tico-era__content {
    padding: 27px 18px 20px;
  }


  .tico-era__watermark {
    top: 11px;
    right: 8px;

    font-size: 62px;
  }


  .tico-era__label {
    margin-bottom: 12px;

    font-size: 8px;
  }


  .tico-era__date {
    font-size: 26px;
  }


  .tico-era__title {
    font-size: 31px;
  }


  .tico-era__description {
    font-size: 14px;
  }


  .tico-era__fact {
    grid-template-columns: 39px minmax(0, 1fr);

    gap: 10px;
  }


  .tico-era__fact-icon {
    width: 38px;
    height: 38px;
  }


  .tico-era__bottom-nav {
    grid-template-columns: 1fr auto;

    gap: 12px;
  }


  .tico-era__bottom-brand {
    display: none;
  }

}
/* ==================================================
   PROGRESSIVE DISCLOSURE — PEŁNA HISTORIA EPOKI
   ================================================== */

.tico-era__disclosure {
  position: relative;
  z-index: 3;

  margin-top: 24px;
}


/* przycisk */

.tico-era__more-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 14px 0 12px;

  border: 0;
  border-top: 1px solid #e6e7e9;

  background: transparent;

  color: #252525;

  font-family: inherit;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;

  text-align: left;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}


.tico-era__more-toggle:hover {
  color: var(--tico-red);
  border-top-color: #d7d7d7;
}


.tico-era__more-label {
  display: block;
}


.tico-era__more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  margin-left: 16px;

  flex: 0 0 28px;

  border: 1px solid #e0e1e3;
  border-radius: 50%;

  background: #ffffff;

  color: var(--tico-red);

  font-size: 15px;
  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.2s ease,
    color 0.2s ease;
}


.tico-era__more-toggle:hover .tico-era__more-arrow {
  background: var(--tico-red);
  border-color: var(--tico-red);
  color: #ffffff;
}


.tico-era__disclosure.is-open .tico-era__more-arrow {
  transform: rotate(180deg);
}


/* ==================================================
   rozwijana część
   bez ustawiania sztywnego max-height
   ================================================== */

.tico-era__more {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.45s ease,
    opacity 0.3s ease;
}


.tico-era__more-inner {
  min-height: 0;

  overflow: hidden;
}


.tico-era__disclosure.is-open .tico-era__more {
  grid-template-rows: 1fr;

  opacity: 1;
}


/* właściwa zawartość */

.tico-era__more-inner {
  padding: 0;
}


.tico-era__disclosure.is-open .tico-era__more-inner {
  padding-top: 12px;
}


.tico-era__more-head {
  max-width: 670px;

  margin-bottom: 22px;
}


.tico-era__more-kicker {
  display: block;

  margin-bottom: 7px;

  color: var(--tico-red);

  font-size: 9px;
  line-height: 1.3;

  font-weight: 800;

  letter-spacing: 0.19em;
}


.tico-era__more-head h5 {
  margin: 0 0 8px;

  color: #171717;

  font-size: 19px;
  line-height: 1.3;

  font-weight: 750;
}


.tico-era__more-head p {
  margin: 0;

  color: #666b72;

  font-size: 13px;
  line-height: 1.55;
}


/* ==================================================
   szczegółowa mini chronologia
   ================================================== */

.tico-era__history-list {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: 0;

  padding-left: 20px;
}


.tico-era__history-list::before {
  content: "";

  position: absolute;

  top: 8px;
  bottom: 9px;
  left: 4px;

  width: 1px;

  background: #dedfe2;
}


.tico-era__history-event {
  position: relative;

  display: grid;

  grid-template-columns: 64px minmax(0, 1fr);

  gap: 14px;

  padding: 0 0 17px;
}


.tico-era__history-event:last-child {
  padding-bottom: 0;
}


.tico-era__history-event::before {
  content: "";

  position: absolute;

  left: -20px;
  top: 7px;

  width: 9px;
  height: 9px;

  box-sizing: border-box;

  border: 2px solid var(--tico-red);
  border-radius: 50%;

  background: #ffffff;
}


.tico-era__history-year {
  color: var(--tico-red);

  font-size: 13px;
  line-height: 1.4;

  font-weight: 800;
}


.tico-era__history-event strong {
  display: block;

  margin-bottom: 3px;

  color: #202020;

  font-size: 13px;
  line-height: 1.4;

  font-weight: 750;
}


.tico-era__history-event p {
  max-width: 600px;

  margin: 0;

  color: #74787f;

  font-size: 12px;
  line-height: 1.5;
}


/* ==================================================
   MINI GALERIA
   ================================================== */

.tico-era__archive-gallery {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 8px;

  margin-top: 23px;
  padding-top: 17px;

  border-top: 1px solid #ececee;
}


.tico-era__archive-gallery figure {
  margin: 0;

  overflow: hidden;

  border-radius: 4px;

  background: #efefef;
}


.tico-era__archive-gallery img {
  display: block;

  width: 100%;
  height: 105px;

  object-fit: cover;

  filter: grayscale(15%);

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}


.tico-era__archive-gallery figure:hover img {
  transform: scale(1.025);
  filter: grayscale(0%);
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1100px) {

  .tico-era__history-event {
    grid-template-columns: 58px minmax(0, 1fr);
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

  .tico-era__disclosure {
    margin-top: 20px;
  }


  .tico-era__more-toggle {
    padding-top: 13px;

    font-size: 13px;
  }


  .tico-era__more-head h5 {
    font-size: 18px;
  }


  .tico-era__history-event {
    grid-template-columns: 52px minmax(0, 1fr);

    gap: 10px;
  }


  .tico-era__archive-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 5px;
  }


  .tico-era__archive-gallery img {
    height: 82px;
  }

}/* End custom CSS */