/* ЭМИНЕССА — вводный блок главной.
   Картинку убрали, освободившееся место отдано тексту: заголовок слева,
   описание справа. Внизу — три факта о каталоге вместо сплошной простыни прозы. */

.front-text {
  background: #fff;
  padding: 70px 0 76px;
}

.front-text-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-gap: 64px;
  align-items: start;
}

/* заголовок занимает отдельную колонку — так он работает как врез, а не как строка над текстом */
.main-container .front-text h1 {
  font-size: 42px;
  line-height: 50px;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 12ch;
}
.front-text .front-text-block { display: contents; }

.front-text-desc {
  padding-top: 0;
  max-width: 66ch;
}
.front-text-desc p {
  font-size: 16.5px;
  line-height: 28px;
  font-weight: 400;
  color: #454C56;
  padding-bottom: 0;
  margin: 0 0 18px;
}
.front-text-desc p:last-child { margin-bottom: 0; }

/* три факта о каталоге: проверяемые, без обещаний про склад */
.front-facts {
  list-style: none;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid #E4E8ED;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.front-facts li { display: block; }
.front-facts b {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #1E232A;
  margin-bottom: 6px;
}
.front-facts span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #78818D;
}

@media only screen and (max-width: 1080px) {
  .front-text-wrap { grid-template-columns: 1fr; grid-gap: 26px; }
  .main-container .front-text h1 { max-width: none; }
}

@media only screen and (max-width: 767px) {
  .front-text { padding: 34px 15px 38px; }
  .front-text-wrap { grid-gap: 18px; }
  .main-container .front-text h1 { font-size: 27px; line-height: 34px; }
  .front-text-desc p { font-size: 15px; line-height: 24px; margin-bottom: 14px; }
  .front-facts {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
    padding-top: 20px;
  }
  .front-facts b { font-size: 17px; margin-bottom: 3px; }
  .front-facts span { font-size: 13.5px; line-height: 19px; }
}
