.jubileusz-section {
  width: 100vw;
  height: 100vh;
  background: #6a2d12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arsenal', Arial, sans-serif;
  overflow: hidden;
}

.jubileusz-content {
  width: 100%;
  max-width: 1550px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 2vw;
}

.jubileusz-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3vw;
  align-items: flex-start;
}

.jubileusz-lewo {
  flex: 0 0 340px;
  color: #fff;
  position: relative;
  padding-top: 8px;
  min-width: 260px;
  max-width: 360px;
}

.jubileusz-lewo h2 {
  font-size: 2.8rem;
  font-family: 'Arsenal', Arial, sans-serif;
  font-weight: 700;
  margin: 38px 0 12px 0;
  line-height: 1.03;
  letter-spacing: -1px;
}
.jubileusz-lewo .jubileusz-bold {
  font-style: italic;
}
.jubileusz-lewo p {
  font-size: 1.18rem;
  margin: 0 0 8px 0;
  color: #fff;
  opacity: 0.98;
  line-height: 1.33;
  font-family: 'Arsenal', Arial, sans-serif;
  font-weight: 400;
}

.jubileusz-karty {
  flex: 1 1 0px;
  display: flex;
  gap: 2vw;
  justify-content: flex-start;
  align-items: flex-start;
}

.jubileusz-karta {
  background: none;
  width: 100%;
  max-width: 320px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  padding: 0;
  box-sizing: border-box;
}

.jubileusz-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 26px rgba(0,0,0,0.14);
  aspect-ratio: unset;
  height: 400px;
  min-height: 200px;
  max-height: 420px;
}

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

.jubileusz-img-title {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  padding: 18px 15px 8px 15px;
  font-family: 'Arsenal', Arial, sans-serif;
  font-size: 1.45rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  background: linear-gradient(0deg, rgba(60,40,25,0.37) 78%, rgba(60,40,25,0.05) 100%);
}

.jubileusz-karta-desc {
  font-size: 1.07rem;
  font-family: 'Arsenal', Arial, sans-serif;
  color: #fff;
  opacity: 0.98;
  margin-top: 2px;
  line-height: 1.23;
  padding-left: 2px;
}

.jubileusz-karta-desc b {
  font-weight: 700;
  font-size: 1.08em;
}

.jubileusz-kwadraty-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.jubileusz-kwadraty {
  display: flex;
  gap: 52px;
  justify-content: center;
}
.jubileusz-kwadrat {
  background: #fff;
  border-radius: 36px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 170px;
  width: 220px;
  height: 220px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.jubileusz-kwadrat img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  display: block;
}

@media (max-width: 700px) {
  .jubileusz-section {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
    padding-bottom: 36px;
    overflow: visible;
  }

  .jubileusz-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .jubileusz-lewo {
    max-width: none;
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }

  .jubileusz-karty {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .jubileusz-karta:not(:first-child) {
    margin-top: 28px;
  }

  .jubileusz-karta {
    max-width: 320px;
    width: 90vw;
  }

  .jubileusz-img-wrap {
    height: 420px;
    max-height: 420px;
  }

  .jubileusz-img-wrap img {
    object-position: bottom;
  }

  .jubileusz-kwadraty-row {
    margin-top: 18px;
  }

  .jubileusz-kwadraty {
    align-items: center;
    gap: 22px;
  }

  .jubileusz-kwadrat {
    width: 160px;
    height: 160px;
    min-width: 75px;
    min-height: 75px;
    padding: 4px;
  }

  .jubileusz-kwadrat img {
    width: 150px;
    height: 150px;
  }

  .jubileusz-lewo h2 {
    font-size: 1.39rem;
  }

  .jubileusz-img-title {
    font-size: 0.93rem;
    padding: 9px 5px 4px 9px;
  }
}