.cs-slider-wrapper {
    overflow: hidden;
}

.cs-slider-wrapper::before {
    content: "";
    display: block;
}

.cs-slider {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    gap: 1em;                 /* 👈 SLIDE GAP */
}

.cs-slide {
    flex: 0 0 100%;
    width: 100%;             /* Biztosítás */
    height: 100%;
    background-size: 100% 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.cs-content {
    position: absolute;
    max-width: 40%;
    overflow: hidden;
}

.cs-content > h2 {
  display: inline-block;
  margin: 0;
  padding: 10px;
  background-color: rgb(207, 138, 51);
  line-height: 28px!important;
  white-space: nowrap;
  color: white!important;
  font-size: 20px!important;
  font-weight: 400!important;
  text-transform: uppercase;
}
.cs-content > p {
    margin: 0;
    padding: 10px;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #6d6d6d;
}
