  :root{
    --green:#f97316;      /* верхняя полоса и кнопка */
    --green-700:#ea580c;  /* hover */
    --ink:#111827;        /* тёмный текст */
    --muted:#6b7280;      /* вторичный текст */
    --bg:#f8fafc;         /* фон страницы */
    --card:#ffffff;       /* белые блоки */
    --radius:14px;
    --container:1180px;
  }



  /* сбросы */

  a{color:inherit;text-decoration:none}
  .container{
    max-width:var(--container);
    margin-inline:auto;
    padding-inline:16px;
  }

 .footer_spisok_mfo {
   width:100%;
   max-width:1200px;
   margin:0 auto;
   padding-bottom:25px;
 }


 .footer_spisok_mfo span{
   font-size:12px;
   font-weight:800;
   color:#555;
 }

 .footer_spisok_mfo a{
   font-size:12px;
   color:#9a3412;
 }

.news-date {
 color:#f97316;
 font-weight:bold; 
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* логотип сверху, дата+название внизу */
  height: 100%;
}

.news-footer {
  margin-top: auto; /* утапливает вниз */
  text-align: center;
}


 .top_link_reg {
   margin-top:30px; 
   background: linear-gradient(90deg, #f97316, #ea580c); 
   color: white; 
   padding: 10px 20px; 
   font-size: 16px; 
   font-weight: bold; 
   text-decoration: none; 
   border-radius: 8px; 
   box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
   transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease; 
   white-space: nowrap;
 }

 .top_link_reg:hover {
   background: linear-gradient(90deg, #ea580c, #f97316); /* переворачиваем градиент */
   box-shadow: 0 6px 14px rgba(234,88,12,0.4);
   transform: translateY(-2px);
   color:#111827;
   text-decoration:none;
 }


  /* верхняя зелёная плашка */
  .topbar{
    background:var(--green);
    color:#fff;
  }
  .topbar__inner{
    display:flex;
    gap:28px;
    align-items:center;
/*    justify-content:flex-start;*/
    justify-content:space-between;
    padding:10px 0;
    font-size:15px;
    flex-wrap:wrap;
  }


  .topbar__inner a:hover {
    color:#111827;
    text-decoration:none;
  }

  .topbar__item{
    display:inline-flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
    opacity:.95;
  }

  .topbar svg{width:18px;height:18px;fill:#fff;flex:0 0 18px}

  /* шапка с логотипом и меню */
  .header{
    background:#fff;
    border-radius:0 0 var(--radius) var(--radius);
    box-shadow:0 1px 0 rgba(0,0,0,.04);
  }
  .header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:22px 0;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:14px;
  }
  .brand__logo{
    width:44px;height:36px;
    display:grid;place-items:center;
    background: #fff7ed;
    color:var(--green);
    border-radius:10px;
  }
  .brand__title{
    font-weight:700;
    font-size:24px;
    letter-spacing:.2px;
  }
  .brand__subtitle{
    display:block;
    font-weight:600;
  }

  nav{display:flex;align-items:center;gap:28px}
  .nav__link{
    color:#334155;
    font-weight:600;
    opacity:.9;

  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  }


.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* отступ от текста */
  width: 0;
  height: 2px;
  background: #111827;
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%; /* линия вырастает во всю ширину */
}




  .nav__link:hover{
    color:#334155;
    text-decoration:none;
  }


  .nav__btn{
    padding:12px 18px;
    background:var(--green);
    border-radius:12px;
    color:#fff;
    font-weight:700;
    box-shadow:0 1px 0 rgba(0,0,0,.05);
  }

  .nav__btn:hover{background:var(--green-700);color:#111827;text-decoration:none;}

  /* герой-блок */
  .hero{
    padding:34px 0 24px;
  }
  .hero__title{
    font-size:44px;
    font-weight:800;
    letter-spacing:.2px;
    margin:0;
  }

  /* карточка-заглушка под контент (большой белый прямоугольник) */
  .panel{
    background:var(--card);
    border-radius:20px;
    min-height:260px;
    box-shadow:0 1px 0 rgba(0,0,0,.05), 0 10px 18px -12px rgba(0,0,0,.12);
  }

  /* адаптив */
  @media (max-width:900px){
    .header__inner{flex-wrap:wrap;row-gap:14px}
    nav{width:100%;justify-content:flex-start;flex-wrap:wrap}
    .hero__title{font-size:36px}
  }
  @media (max-width:560px){
    .topbar__inner{gap:16px}
    .brand__title{font-size:20px}
    .nav__link{font-weight:600}
    .hero__title{font-size:30px}
  }





/* Футер */
.footer {
  background: #FFF7ED; /* светло-зелёный фон */
  color: #222;
  padding: 50px 20px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Лого */
.footer-logo .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #1e1e1e;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

/* Соцсети */
.socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.socials img:hover {
  transform: scale(1.1);
}

/* Колонки */
.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
}

.footer-column p, 
.footer-column ul {
  font-size: 14px;
  color: #444;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #fb923c; /* зелёный hover */
}

/* Нижняя часть */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #555;
}

.footer-bottom .brand_footer {
  color: #fb923c; /* акцент для названия */
}



.company-card {
  text-decoration:none;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  align-items: start;
  font-family: Arial, sans-serif;
}


.portfolio-card {
   grid-template-columns: 150px 150px 1fr;
}

.company-card:hover {
  text-decoration:none;
}

.company-left {
  text-align: center;

display: flex;
    align-items: center; /* центр по вертикали */
    justify-content: center; /* центр по горизонтали (если нужно) */
    height:100%;

}
.company-logo {
  position: relative;
  display: inline-block;
}






.company-card i {
  font-size: 22px;
  color: #f97316; /* зелёный */
  transition: transform 0.35s ease, color 0.35s ease;
}

/* hover эффект */
.company-card:hover {

  background: #e0f7e9; /* чуть насыщеннее зелёный */
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(40,167,69,0.25); /* мягкая подсветка */

}

.company-card:hover i {
  color: #ea580c; /* иконка остаётся зелёной */

  transform: scale(1.1); /* лёгкое увеличение */
}



.company-logo img{
  height:auto;
}

.company-logo img {
  max-width: 120px;
  border-radius: 8px;
}
.pro-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #F97316;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
}
.company-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: #111827;
}


.portfolio-name {
  text-align:left;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: #111827;
}


.company-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #333;
}
.info-item strong {
  font-size: 16px;
  font-weight: 700;
}
.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.company-tags span {
  background: #f1fdf7;
  border: 1px solid #F97316;
  color: #111827;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}
@media(max-width: 768px) {
  .company-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .company-right {
    text-align: left;
  }
}



 .stats-section-main {
   background-color: #FFF7ED; 
   padding: 40px 20px; 
   border-radius: 16px; 
   text-align: center; 
   max-width: 1200px; 
   margin: 40px auto;
 }

 .stats-section-main h1 {
   font-size: 32px; 
   font-weight: 900; 
   color: #111827; 
   margin-bottom: 30px;
 }

 .stats-grid i {
   color:#fb923c;
   font-size:40px;
 }


/* полоса на всю ширину */
.stats-bar{
  width:100%;
  background:#FFEFE6;         /* мягкий мятный, как на скрине */
  padding:22px 16px;
}

/* контейнер с ячейками */
.stats-inner{
  max-width:1200px;            /* при желании — убери ограничение */
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:64px;
  flex-wrap:wrap;
}

/* одна ячейка */
.stat{
  display:flex;
  align-items:center;          /* иконка центрируется по высоте текста из 2 строк */
  gap:14px;
  min-width:240px;             /* чтобы строки не ломались слишком рано */
}

/* иконки */
.stat i{
  font-size:42px;
  line-height:1;
  color:#F97316;               /* зеленый */
  flex:0 0 auto;
}

/* текст справа от иконки */
.stat-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
  color:#111827;               /* почти черный */
}

/* верхняя и нижняя строки */
.stat-top{
  font-weight:600;
  font-size:20px;
  text-align:left;
}

.stat-top span {
  font-weight:bold;
}

.stat-bot{
  font-weight:600;
  font-size:20px;
  opacity:.9;
  text-align:left;
}

/* адаптив */
@media (max-width:720px){
  .stats-inner{ gap:28px; }
  .stat{ min-width:unset; }
  .stat-top,.stat-bot{ font-size:18px; }
}



.jobs {
  padding: 40px;
  background: #f8fdf9;
  font-family: 'Arial', sans-serif;
}

.jobs h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #9a3412;
}

.job-list {
  display: grid;
  grid-template-columns: 1fr  1fr 1fr;
  gap: 20px;
}

.job-card {
  background: #ffffff;
  border: 1px solid #d1e7dd;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.job-card-portfolio {
  background: #ffffff;
  border: 1px solid #d1e7dd;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.job-card-portfolio img {
  border-radius: 12px;
  margin:0 auto;
  max-width:100%;
  height:auto;
  padding-bottom:20px;
}


.job-card img {
  margin:0 auto;
  max-width:120px;
  height:auto;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 128, 0, 0.15);
  border-color: #ea580c;
  text-decoration:none; 
}

.job-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #7c2d12;
}

.job-details p {
  margin: 3px 0;
  font-size: 14px;
  color: #444;
}

.job-salary {
  font-weight: bold;
  color: #ea580c;
  font-size: 16px;
  margin-top: 10px;
}

.job-tags {
  margin-top: 12px;
}

.job-tags span {
  display: inline-block;
  background: #fff7ed;
  border: 1px solid #ea580c;
  color: #7c2d12;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 6px;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.job-tags span:hover {
  background: #ea580c;
  color: #fff;
  border-color: #ea580c;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1b1d1f;
}







/* ТОП-новости */
.news-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.news-card:hover {
  text-decoration:none;
}

.news-card.featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.news-card.featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.7);
}

.news-card.featured .news-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.news-card.featured .news-company {
  font-size: 15px;
  font-weight: 600;
  color: #aef5d1;
}

.news-card.featured .news-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}

/* Обычные новости */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  height: auto;

/*  height: 160px;*/
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-company {
  font-size: 13px;
  font-weight: 600;
  color: #f39c12;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 6px;
  color: #2d3436;
}


  @media (max-width:780px){
   .job-list {
     grid-template-columns: 1fr  1fr; 
    }

   .footer-container {
     grid-template-columns: 1fr  1fr; 
    }

   .info-card {
     text-align:center;
     padding-left:0!important;
   }


   .info-card2 {
     text-align:center;
     padding-right:0!important;
   }

   .info-blocks {
     grid-template-columns: 1fr!important; 
   }

   .studio-photo-frame img {
     max-width:100%;
   }



  }


  @media (max-width:600px){
   .job-list {
     grid-template-columns: 1fr; 
    }

   .footer-container {
     grid-template-columns: 1fr; 
    }

   .nav__btn {
     margin:0 auto;
   }

  }





    .studio-header {
      background: linear-gradient(90deg, #f97316, #ea580c);
      color: #fff;
      padding: 40px 60px;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

.studio-header > div {
  flex: 0 0 50%;   /* фиксируем ширину каждого блока */
  max-width: 50%; /* чтобы не "вылезали" */
}



/* мобильная версия */
@media (max-width: 768px) {
    .studio-header {
        flex-direction: column; /* переносим в столбик */
        padding: 20px; /* компактнее */
        text-align: center;
    }


    .studio-header > div,
    .studio-header > .studio-photo-frame {
        flex: none;      /* убираем делёжку ширины */
        width: 100%;     /* на всю ширину */
        max-width: 100%!important;     /* на всю ширину */
    }

    .studio-photo-frame img {
        max-width: 100%!important; /* картинка не выходит за экран */
        height: auto;
    }


}




    .studio-header h1 {
      margin: 0;
      font-size: 36px;
    }
    .studio-header p {
      font-size: 21px;
      margin-top: 10px;
      max-width: 600px;
      padding-bottom:20px;
    }
    .studio-header .btn-site {
      background: #fff;
      color: #ea580c;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s;
    }
    .studio-header .btn-site:hover {
      background: #eaf9f0;
    }
    .info-blocks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 30px;
    }
    .info-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      padding-left: 60px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .info-card2 {
      padding-left: 10px;
      padding-right: 60px;
    }

    .info-card h3 {
      margin-top: 0;
      color: #ea580c;
    }
    .tags span {
      display: inline-block;
      background: #eaf9f0;
      color: #ea580c;
      padding: 5px 10px;
      margin: 5px 5px 0 0;
      border-radius: 6px;
      font-size: 14px;
    }
    .about {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .about h3 {
      color: #ea580c;
    }

    .img_comp {
      width:300px;
    }


   .company_punkt_info {
     color:#033C26;
   }

   .company_punkt_info i {
     color:#2C9A4B;
     margin-right:12px;
   }


.studio-photo-frame{
  display: inline-block;
  border: 12px solid #FDBA74;   /* светло-зелёный из фирменной палитры */
  border-radius: 20px;          /* скруглённые углы */
  padding: 6px;                 /* небольшой внутренний отступ */
  background: #fff;
}

.studio-photo-frame img{
  display:block;
  width:350px;
  max-width:450px;
  height:auto;
  border-radius:12px;                       /* чуть меньше, чтобы углы совпали */
}

.studio-photo-frame.is-glow{
  box-shadow:0 0 0 2px rgba(16,185,129,.12), 0 12px 28px rgba(16,185,129,.16);
}


.section {
  margin: 50px 0;
}
.section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section h2 .ico-heading {
  color: #c2410c;
  font-size: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-link {
  display: block;
  padding: 18px;
  background: #ecfdf5;
  border: 1px solid rgba(22, 101, 52, 0.15);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.card-link h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 10px 0 6px;
}
.card-link .meta {
  font-size: 14px;
  color: #c2410c;
}
.card-link:hover {
  background: #d1fae5;
  transform: translateY(-4px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.card-with-img {
  padding: 0;
  overflow: hidden;
}
.card-with-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.card-with-img h3, 
.card-with-img .meta {
  padding: 0 14px 10px;
}



/* КОММЕНТАРИИ */
.rating-group input {
  display:none;
} 

.company-reviews {
  margin-top: 40px;
}

.company-reviews h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.comments-none {
  background: #f9f9f9;
  border: 1px dashed #ea580c;
  color: #ea580c;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

/* Форма */
.reviews-respond__form textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  min-height: 120px;
  font-size: 15px;
  resize: vertical;
  transition: border-color 0.3s;
}

.reviews-respond__form textarea:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(39,174,96,0.2);
}

/* Звёзды */
.rating-group {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 5px;
}

.rating-group label {
  width: 30px;
  height: 30px;
  cursor: pointer;
  fill: #ea580c;
  transition: fill 0.3s;
}

.rating-group input:checked ~ label svg,
.rating-group label:hover svg {
  fill: #ccc;
}

.half-number {
  margin-left: 10px;
  font-weight: bold;
  color: #ea580c;
  font-size: 16px;
}

/* Кнопка */
.submit_btn input.boxed-btn3 {
  background: linear-gradient(90deg, #f97316, #ea580c);
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit_btn input.boxed-btn3:hover {
  background: linear-gradient(90deg, #ea580c, #f97316);
  transform: translateY(-2px);
}


.icon-link svg {
  fill: #f97316; /* например, синий при наведении */
}

.icon-link:hover svg {
  fill: #2563eb; /* например, синий при наведении */
}


.icon-link:hover,
.icon-link:focus,
.icon-link svg:hover,
.icon-link svg:focus {
  all: unset!important; /* убирает все эффекты */
  cursor: pointer!important; /* если нужен курсор руки */
}



/* Container */
.rws-banner{
  box-sizing:border-box;
  width:100%;
  max-width:294px;
  aspect-ratio: 294 / 260; /* адаптивная высота; можно поменять */
  position:relative;
  border-radius:16px;
  overflow:hidden;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  color:#0b0b12;
  background:#0b0b12;
  box-shadow:0 12px 30px rgba(0,0,0,.15), inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Clickable area */
.rws-link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
  color:inherit;
  position:relative;
}

/* Gradient background */
.rws-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 0% 0%, #5b8cff 0%, rgba(91,140,255,0) 60%),
    radial-gradient(120% 80% at 100% 100%, #ff5bb0 0%, rgba(255,91,176,0) 60%),
    linear-gradient(135deg, #171726 0%, #0d0d18 100%);
  filter:saturate(110%);
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}
.rws-link:hover .rws-bg{ transform:scale(1.03);  }
.rws-link:hover {text-decoration:none;}

/* Content */
.rws-content{
  position:relative;
  z-index:2;
  height:100%;
  padding:14px 14px 12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Ribbon */
.rws-ribbon{
  position:absolute; top:12px; right:-42px; z-index:3;
  background:#ffbf3b;
  color:#231a00;
  font-weight:800; letter-spacing:.08em;
  padding:6px 54px;
  transform:rotate(35deg);
  text-transform:uppercase;
  font-size:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

/* Badge */
.rws-badge{
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.12);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  width:max-content;
  backdrop-filter:saturate(120%) blur(4px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}
.rws-stars{ color:#ffd66b; font-size:12px; letter-spacing:.1em }
.rws-badge-text{ font-size:11px; font-weight:700; letter-spacing:.02em }

/* Title & sub */
.rws-title{
  margin:10px 2px 4px;
  font-size:18px; line-height:1.2; color:#ffffff; font-weight:800;
  text-wrap:balance;
}
.rws-sub{
  margin:0 2px 8px;
  font-size:13px; line-height:1.35; color:#e9ecff;
  opacity:.9;
}

/* Points */
.rws-points{
  margin:0 0 8px 16px; padding:0; color:#f2f4ff;
  font-size:12.5px; line-height:1.4;
}
.rws-points li{ margin:2px 0; }

/* CTA */
.rws-cta{
  margin-top:4px;
  align-self:stretch;
  text-align:center;
  background:linear-gradient(90deg,#6df0c2 0%,#49d7ff 50%,#7c7cff 100%);
  color:#08121a;
  font-weight:900; letter-spacing:.02em;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(109,240,194,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.rws-link:hover .rws-cta{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(109,240,194,.45); }

/* Note */
.rws-note{
  margin-top:6px; text-align:center; color:#d7defa; font-size:11.5px; opacity:.95;
}

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  .rws-bg, .rws-link:hover .rws-cta{ transition:none }
}

/* Small heights (узкие места) */
@media (max-height:380px){
  .rws-points{ display:none; }
}

/* Tiny screens: немного увеличим читаемость */
@media (max-width:320px){
  .rws-title{ font-size:17px }
  .rws-sub{ font-size:12.5px }
}




.breadcrumbs {
  --gap: 8px;
  --sep: "›";           /* можно заменить на "/" или "→" */
  font-size: 14px;
  line-height: 1.4;
  color: #5b626a;
  margin: 12px 0 8px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.breadcrumbs__item:not(:first-child)::before {
  content: var(--sep);
  margin: 0 var(--gap);
  opacity: .6;
}

.breadcrumbs__link {
  color: inherit;
  text-decoration: none;
/*  white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs__link:hover { text-decoration: underline; }



.breadcrumbs__current {
  display: inline-block;
  max-width: 100%;
  white-space: normal;    /* разрешаем перенос */
  word-break: break-word; /* переносим длинные слова */
  line-height: 1.4;
}



/* На очень узких экранах слегка уменьшаем шрифт */
@media (max-width: 480px) {
  .breadcrumbs { font-size: 13px; }
}




/* Заголовок */
.comments_message_title {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #f97316; /* фирменный зеленый */
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Обёртка */
.wrapper-comments_message {
  background: #f8fdf9; /* очень светлый зеленый фон */
  border: 1px solid #f97316;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.wrapper-comments_message:hover {
  box-shadow: 0 6px 16px rgba(0,166,82,0.2);
  transform: translateY(-2px);
}

/* Заголовок внутри */
.wrapper-comments_message span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 8px;
}

/* Описание */
.partner-register__descr {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
}

/* Кнопки */
.partner-register__btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.partner-register__btn.btn {
  background: #f97316;
  color: #fff;
}

.partner-register__btn.btn:hover {
  background: #ea580c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.h2_podzag {
  font-size: 22px;
  font-weight: 700;
  color: #9a3412;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.h2_subtitle {
  font-size: 21px;
  margin-top: 10px;
  max-width: 600px;
  padding-bottom: 30px;
}


.um-register {
  margin:0 auto; 
}


.um-login {
  margin:0 auto;
}

.um-button {
 background-color:#00a65a;
}

.um-alt {
 background-color:#fed7aa;
}



/* Общий стиль формы */
.um-form {
    background: #f6fff9; /* очень светлый зелёный фон */
    border: 1px solid #c8e6c9; /* зелёная рамка */
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: "Inter", sans-serif;
}

/* Заголовки полей */
.um-field-label label {
    color: #9a3412; /* тёмно-зелёный */
    font-weight: 600;
    font-size: 14px;
}

/* Инпуты */
.um-form-field {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #fdba74; 
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}

.um-form-field:focus {
    border-color: #f97316;
    box-shadow: 0 0 5px rgba(102,187,106,0.3);
    outline: none;
}

/* Кнопка регистрации */
#um-submit-btn {
    background: #f97316;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px 20px;
    border: none;
    transition: 0.3s;
    width: 100%;
}

#um-submit-btn:hover {
    background: #ea580c;
}

/* Кнопка Войти (альтернативная) */
.um-button.um-alt {
    background: #ffffff;
    border: 1px solid #f97316;
    color: #9a3412;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: bold;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.um-button.um-alt:hover {
    background: #fff7ed;
}




@media (max-width: 1000px) {
  .small_hide_block {
    display: none;
  }
}




.large_hide_block {
  display: none; /* по умолчанию скрыт */
}



.mfo-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #fdba74; /* светло-оранжевая рамка */
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  gap: 20px;
  margin-bottom:12px; 
}

.mfo-card:hover {
  text-decoration:none;
}

.mfo-left {
  flex: 1;
  max-width: 250px;
}

.mfo-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.mfo-logo {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.mfo-name {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: bold;
  color: #9a3412; /* тёмно-оранжевый заголовок */
}

.mfo-meta {
  padding-top:20px;
}

.mfo-meta span {
  display: block;
  font-size: 15px;
  color: #9a3412;
}

.mfo-params {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.mfo-params span {
  background: #fff7ed; /* светло-оранжевый фон */
  border: 1px solid #fdba74;
  border-radius: 8px;
  padding: 6px 10px;
  color: #9a3412;
}

.mfo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mfo-tags span {
  border: 1px solid #f97316; /* ярко-оранжевый акцент */
  color: #ea580c; /* насыщенный оранжевый текст */
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  background: #fff3e6; /* светлый фон */
}

.mfo-tags span:hover {
  background: #f97316;
  color: #fff;
  transition: 0.3s;
}

.mfo-footer {
  text-align:left;
  margin-top: 12px;
  font-size: 14px;
  color: #9a3412;
}



@media (max-width: 600px) {

  .rws-banner {
    margin:0 auto;
  }

  .large_hide_block {
    padding-bottom:30px;
    margin:0 auto;
    display: block; /* показать на экранах меньше 1000px */
  }


 /* МОбильность карточки МФО на главной */

  .mfo-card {
    display:block;
  }

  .mfo-left {
    width:100%;
    max-width:100%!important;
    text-align:center;
    padding-bottom:12px;
  }


  .topbar {
    padding-left:20px;
    padding-right:20px;
  }

  .header {
    padding: 20px 20px 30px;
  }


}




