.tytul_opis {
    padding: 100px 0 100px 0;
}
.tytul_opis .in {
    max-width: 1128px;
    margin-left: auto;
    margin-right: auto;
}
.tytul_opis h2 {
    color: var(--KTI-GREY, #363844);
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 84px */
    letter-spacing: -0.8px;
    margin: 0 auto;
}
.tytul_opis .desc,
.tytul_opis .desc * {
    color: var(--KTI-GREY, #363844);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.32px;
}
.tytul_opis .labels {
    display: flex;
    align-items: center;
    margin: 40px auto;
    gap: 10px;
}
.tytul_opis .labels span {
    padding: 16px 36px;
    border-radius: 30px;
    border: 1px solid var(--KTI-GREY, #363844);
    color: var(--KTI-GREY, #363844);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
}

.tytul_opis .btn {
    display: none;
}

/* ============ TABLET (≤992px) ============ */
@media (max-width: 996px) {
  .tytul_opis { padding: 20px 0 20px 0; }
  .tytul_opis .container { padding: 0 20px; }
  .tytul_opis h2 {
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 27.3px */
    letter-spacing: -0.52px;
    margin: 0 auto 20px;
  }
  .tytul_opis .labels {
    margin: 28px 0;
    gap: 10px;
  }
  .tytul_opis .labels span {
    padding: 16px 36px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    text-transform: uppercase;
    /* Zapobieganie łamaniu tekstu w etykietach */
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tytul_opis .labels {
    display: flex;
    align-items: center;
    margin: 20px auto;
    gap: 10px;
    /* Dodanie przewijania w poziomie */
    overflow-x: auto;
    overflow-y: hidden;
    /* Ukrycie paska przewijania */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    /* Dodatkowe padding dla lepszego UX */
    padding: 0 0 10px 0;
  }
  /* Ukrycie paska przewijania w Webkit (Chrome, Safari) */
  .tytul_opis .labels::-webkit-scrollbar {
    display: none;
  }

    .tytul_opis .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 20px auto 20px auto;
        color: #363844;
        font-family: Inter;
        padding: 16px 36px;
        border-radius: 30px;
        border: 1px solid #363844;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        text-transform: uppercase;
        transition: 300ms;
    }

    .tytul_opis .btn:hover {
        background: #363844 !important;
        color: #ffffff !important;
    }
}