/* HERO */
.single-offer__hero {
  width: 100%;
}

/* USPs */
.single-offer__usps {
  width: 100%;
}

/* Features */
.single-offer__features {
  width: 100%;
}

/* Related realizations */
.single-offer__related {
  width: 100%;
}

/* Pricing */
.single-offer__pricing {
  width: 100%;
  margin-top: 60px;
}

/* Content (FAQ) */
.single-offer__content {
  width: 100%;
}

/* CTA globalne */
.single-offer__cta {
  width: 100%;
  margin-top: 80px;
}

/* Layout */
.single-offer__row {
  display: flex;
  flex-direction: row;
}

.single-offer__col-main {
  flex: 4;
}

.single-offer__col-sidebar {
  flex: 1;
  padding: 0 30px 0;
  transform: translateY(-60px);
}

/* =========================
   RWD
   ========================= */

/* Tablet – delikatne złagodzenie sidebaru */
@media (max-width: 1024px) {
  .single-offer__col-sidebar {
    transform: translateY(-30px);
    padding: 0 20px 0;
  }

  .single-offer__pricing {
    margin-top: 40px;
  }

  .single-offer__cta {
    margin-top: 60px;
  }
}

/* Mobile – kolumny jedna pod drugą */
@media (max-width: 768px) {
  .single-offer__row {
    flex-direction: column;
  }

  .single-offer__col-main {
    flex: 1;
  }

  .single-offer__col-sidebar {
    flex: 1;
    padding: 0;
    transform: none;
    margin-top: 30px;
  }

  .single-offer__pricing {
    margin-top: 40px;
  }

  .single-offer__cta {
    margin-top: 40px;
  }
}
