/***********************************************
 * styles.css
 * Минималистичный стиль: белый фон, чёрный текст
 * Настройки можно менять через CSS-переменные ниже
 ***********************************************/
 :root{
    --page-bg: #ffffff;
    --text: #000000;
    --muted: #444444; /* можно сделать чуть светлее, если нужно */
    --max-width: 760px; /* ширина колонки, можно уменьшить/увеличить */
    --content-padding: 28px; /* отступы по бокам */
    --base-font-size: 22px; /* удобно для чтения */
    --line-height: 1.55;
  }
  
  /* Reset - очень лёгкий */
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    background:var(--page-bg);
    color:var(--text);
    font-family: 'Qanelas', Arial, sans-serif;;
    font-size:var(--base-font-size);
    line-height:var(--line-height);
  }
  
  .container{
    max-width:var(--max-width);
    margin:48px auto;
    padding:0 var(--content-padding);
  }

  .bold {
    font-weight: 700;
  }

  .post-content {
    margin-bottom: 55px;
  }
  
  .post-content p{
    margin: 0px 0px 35px 0px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
  }

  .post-content p span{
    font-weight: 700;
  }

  .post-content ul{
    margin-bottom: 35px;
  }

  li {
    margin: 0px 0px 0px 0px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
  }

  .post-content_list {
    margin-top: 55px;
  }

 .post-content_lists {
    margin-top: 40px;
  }

  .post-content_list li {
    margin-bottom: 65px;
  }

  .post-content_list--first  {
    margin-top: 30px;
  }

  .post-content_sublist {
    margin-top: 30px;
  }

  .post-content_sublist li{

    margin-bottom: 30px;
  }

  .post-content_list-title {
    font-weight: 700;
  }

  .post-content_list-subtitle {
    font-weight: 700;
  }

  .post-content_list-content {
    margin-top: 15px;
    margin-left: 23px;
  }

  .post-content_list-content p{
    margin-bottom: 10px;
  }




  .post-content .post-content_bold {
    font-weight:700;
  }

  .post-content_title + p {
    margin-top: 15px;
  }

  .post-content_title {
    font-size:26px;
    font-weight:700;
    text-transform: uppercase;
    margin-top: 70px;
  }

  .post-content_title-li {
    margin-bottom: 35px;
    margin-left: 20px;
    max-width: 600px;
  }

  .post-content_lists-question .post-content_title-li {
    margin-left: 0;
  }
  
  
  .post-content blockquote{
    margin:18px 0;
    padding-left:16px;
    border-left:3px solid #e6e6e6;
    color:var(--muted);
    font-style:italic;
  }
  
  .post-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.55;
    margin-bottom: 35px;
  }

  .post-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 35px;
  }

  .post-content_bonus li{
    margin-bottom: 40px;
  }

  .main_btn {
    font-size: 20px;
    color: white;
    font-weight: 400;
    display: inline-block;
    padding: 10px 30px;
    background-color: #e97b22;
    border-radius: 6px;
    text-align: center;
  }

  .main_btn--video {
    background-color: #da341e;
  }

  .main_btn-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    
  }



  .post-content--mb {
    margin-bottom: 0;
  }

  .post-content_img-tt {
      max-width: 350px;
      margin: 0 auto;
    }

  .post-content_img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .post-content_review-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 50px;
  }

  .post-content_review-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 50px;
  }

  .post-content_review-wrapper--zay {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .post-content_review-wrapper--zay .post-content_img-wrapper {
    flex: 0 0 32%;
  }

  .post-content_video-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
  }

  .post-content_social-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .post-content_item-head {
      font-weight: 700;
    }

  .post-content_lists-mod {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .post-content_lists-mod .post-content_title-li{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .post-content_item-price {
    font-style: italic
  }

  .promo-wrapper {
    text-align: center;
    color: white;
    margin: 70px 0;
    padding: 20px;
    background-color: #e97b22;
    line-height: 50px;
  }

  .promo-wrapper span {
    font-weight: 700;
    font-size: 35px;
  }

  /* Простое форматирование ссылок */
  a{color:var(--text); text-decoration:underline}
  
  /* Подвал */
  .site-footer{
    margin-top:56px;
    padding:18px 0 48px 0;
    border-top:1px solid #f0f0f0;
    color:white;
    background-color: rgb(32, 32, 32);
    font-size:20px;
  }
  .site-footer a{color: white; text-decoration:none}

  .footer_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .review-first {
    max-width: 300px;
  }

  
  /* Адаптивность */
  @media (max-width:1200px){
    .container{
      max-width: 800px;
    }
    
  }
  
  @media (max-width:480px){
  
    body{
      font-size: 16px;
    }

    .post-title {
      margin-bottom: 35px;
  }

    .post-content {
      margin-bottom: 20px;
    }

    .post-content p {
      font-size: 16px;
      margin: 0px 0px 35px 0px;
    }

    .post-content_title + p {
      margin-top: 25px;
  }

    .post-content_title-li {
      font-size: 16px;
    }

    .post-content_title {
      font-size: 20px;
    }

    li {
      font-size: 16px;
    }

    .post-content_list--first {
      margin-top: 15px;
    }

  }
  

@font-face {
    font-family: 'Qanelas';
    src: url('fonts/Qanelas.woff2') format('woff2'),
         url('fonts/Qanelas.woff') format('woff'),
         url('fonts/Qanelas.ttf') format('truetype');
    font-weight: 400; /* обычный */
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Qanelas';
    src: url('fonts/Qanelas-Bold.woff2') format('woff2'),
         url('fonts/Qanelas-Bold.woff') format('woff'),
         url('fonts/Qanelas-Bold.ttf') format('truetype');
    font-weight: 700; /* жирный */
    font-style: normal;
    font-display: swap;
  }