.content-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 20px;
}

/* --- Base styles --- */

.brand {
  font-weight: var(--font-bold);
  font-size: 50px !important;
  color: #383e42;
}

.image-section img {
  width: 480px;
  height: auto;
  border-radius: 10px;
  position: relative;
}

.image-section_2 img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  position: relative;
}

.text-section {
  max-width: 900px;
  color: var(--color-dark-black);
}

.text-section h2 {
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 20px;
}

.cta-button {
  margin-top: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 25px;
  background-color: #A24B2C;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 22px;
  transition: .3s;
  margin-bottom: 10%;
}

.cta-button:hover {
  background-color: #8b3f24;
}

/* ------------------------------------------- */
/* --- 1180px — планшеты + небольшие ноуты --- */
/* ------------------------------------------- */

@media (max-width: 1180px) {

  .content-block {
    flex-direction: column;
    text-align: center;
  }

  .image-section img {
    width: 380px;
  }

  .image-section_2 img {
    display: none;
  }

  .text-section {
    max-width: 90%;
  }

  .text-section h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .cta-button {
    width: 350px;
    height: 70px;
    font-size: 20px;
    margin-bottom: 5%;
  }
}

/* ------------------------------------------- */
/* --- 768px — мобильные устройства --------- */
/* ------------------------------------------- */

@media (max-width: 768px) {

  .image-section img {
    width: 280px;
  }

  .text-section h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .cta-button {
    width: 280px;
    height: 60px;
    font-size: 18px;
  }
}

/* ------------------------------------------- */
/* --- 420px — малые смартфоны -------------- */
/* ------------------------------------------- */

@media (max-width: 420px) {

  .content-block {
    padding: 10px 0;
  }

  .image-section img {
    width: 100%;
    max-width: 250px;
  }

  .text-section h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .cta-button {
    width: 240px;
    height: 55px;
    font-size: 16px;
  }
}
