.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* TTSmalls-Regular.woff2 */

@font-face {
  font-family: 'TTSmalls-Regular';
  src: url('../fonts/TTSmalls-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Kazimir Bold */

@font-face {
  font-family: 'Kazimir';
  src: url('../fonts/Kazimir-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Light.woff') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

.site-main{ min-height: 50vh; }

/* Ч/Б минимализм */
:root{
  --bw-black: #000;
  --bw-white: #fff;
  --line: rgba(0,0,0,.10);
  --shadow: 0 10px 25px rgba(0,0,0,.12);
  --shadow-soft: 0 6px 16px rgba(0,0,0,.10);
}

.site-header{
  background: var(--bw-white);
  color: var(--bw-black);
}

/* 1) Баннер: высота НЕ задается. Контент определяет высоту */
.top-banner{
  border-bottom: 1px solid var(--line);
  background: var(--bw-white);
}
.top-banner img{
  display: block;
  width: 100%;
  height: auto; /* адаптивно, сохраняет пропорции */
}

/* ряды */
.header-row{
  border-bottom: 1px solid var(--line);
}
.header-row__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 10px;
}

.header-left, .header-right{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* лого */
.logo{
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
}
.logo--mobile{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* соц: ты вставишь img — дадим базовый стиль */
.socials{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.icon-img{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.icon-img img{
  display: block;
  width: 32px;
  height: 32px;
}

/* кнопка подписки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid #efc850;
    color: #262626;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .15s ease, box-shadow .15s ease;
    font-weight: 600;
    font-family: 'Montserrat';
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active{ transform: translateY(0); box-shadow: var(--shadow-soft); }
.btn:focus-visible{ outline: 2px solid var(--bw-black); outline-offset: 2px; }

/* меню */
.site-nav .menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}
.site-nav .menu a{
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.site-nav .menu a:hover{
}

/* кнопки-иконки (поиск/бургер) */
.icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bw-white);
  cursor: pointer;
  padding: 0;
}
.icon-btn img{
  display: block;
  max-width: 20px;
  max-height: 20px;
}
.icon-btn:focus-visible{
  outline: 2px solid var(--bw-black);
  outline-offset: 2px;
}

/* ===== Центруем логотип, правый блок остаётся справа ===== */
.header-row--top .header-row__inner{
  position: relative;
}

.header-row--top .header-left{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  width: max-content;
  z-index: 2;
}

.header-row--top .header-right{
  margin-left: auto; /* прижимаем соц+кнопку вправо */
}

/* ===== Центруем меню, поиск справа ===== */
.header-row--nav .header-row__inner{
  position: relative;
}

.header-row--nav .site-nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 2;
}

.header-row--nav .icon-btn.js-search-toggle{
  margin-left: auto; /* держим поиск справа */
}

/* выезжающая строка поиска */
.search-bar{
  background: var(--bw-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.search-bar.is-open{ max-height: 90px; }
.search-bar .container{ padding: 12px var(--gutter); }

.search-form{
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-form label{ flex: 1; }
.search-form .search-field {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 15px;
    border: 1px solid var(--line);
    outline: none;
    background: var(--bw-white);
    font-family: 'Montserrat';
}
.search-form .search-field:focus{ border-color: var(--bw-black); }
.search-form .search-submit {
    height: 44px;
    padding: 0 25px;
    border-radius: 15px;
    border: 1px solid #efc850;
    background: #ffffff;
    color: #292929;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat';
}

/* MOBILE */
.desktop-only{ display: block; }
.mobile-only{ display: none; }

/* бургер -> крестик */
.burger{
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
}
.burger::before,
.burger::after,
.burger span{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bw-black);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.burger::before{ top: 0; }
.burger::after{ top: 10px; }
.burger span{ top: 5px; }

body.is-mobile-menu-open .burger::before{
  top: 5px;
  transform: rotate(45deg);
}
body.is-mobile-menu-open .burger::after{
  top: 5px;
  transform: rotate(-45deg);
}
body.is-mobile-menu-open .burger span{ opacity: 0; }

/* full-screen моб меню */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--bw-white);
  z-index: 9999;
  display: none;
}
.mobile-menu.is-open{ display: block; }
.mobile-menu__inner{
  height: 100%;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.mobile-menu-list a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #ffcc36;
}

.mobile-menu__bottom{
  display: grid;
  gap: 14px;
}

/* моб. шапка — одна полоса */
.header-row__inner--mobile{ padding: 12px 10px; }

/* адаптив */
@media (max-width: 900px){
  .desktop-only{ display: none; }
  .mobile-only{ display: block; }
}



/* ===== Главная лента ===== */
.home-feed{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 26px 0 10px;
}

/* wide занимает 2 колонки */
.post-item--wide{ grid-column: 1 / -1; }

.post-card{
  display: grid;
  gap: 25px;
}

/* wide: текст слева, фото справа */
.post-item--wide .post-card{
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}

/* wide invert: фото слева, текст справа */
.post-item--wide.is-invert .post-card{
  grid-template-columns: .95fr 1.05fr;
}
.post-item--wide.is-invert .post-media{ order: 1; }
.post-item--wide.is-invert .post-body{ order: 2; }

.post-item--wide:not(.is-invert) .post-body{ order: 1; }
.post-item--wide:not(.is-invert) .post-media{ order: 2; }

/* two: карточка в колонке (фото сверху, текст снизу) */
.post-item--two .post-card{
  grid-template-columns: 1fr;
}

/* медиа 16:9 */
.post-media{
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.media-16x9{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
}
.media-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-placeholder{
  width: 100%;
  height: 100%;
}

/* бейджи рубрик на фото */
.post-badges{
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 0;
}
.badge{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* текст */
.post-title{
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  text-align: center;
}
.post-title a{
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-family: Kazimir;
  color: #222222;
}
.post-title a:hover{
  border-bottom-color: var(--bw-black);
}
.post-excerpt{
  margin: 8px 0 0;
  opacity: .8;
  font-size: 18px;
  line-height: 1.4;
  font-family: Cormorant;
  text-align: center;
}

/* "Показать больше" */
.home-more{
  padding: 22px 0 40px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.btn--loadmore{
  min-width: 220px;
  font-family: Montserrat;
}
.home-more__status{
  font-size: 14px;
  opacity: .75;
}

/* ===== Мобайл правила по ТЗ ===== */
@media (max-width: 900px){
  .home-feed{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* В мобилке все одинаковые: фото, ниже заголовок, ниже подзаголовок */
  .post-item--wide{ grid-column: auto; }
  .post-item--wide .post-card{
    grid-template-columns: 1fr;
  }
  .post-item--wide .post-media,
  .post-item--wide .post-body{
    order: initial;
  }

  /* Карточка с бордером и тенью */
  .post-card{
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    background: var(--bw-white);
  }

  .media-16x9{
    border-radius: 12px;
  }

  .post-title{
    font-size: 18px;
  }
}

/* FIX: бейджи привязываем к картинке */
.post-media { position: relative !important; }

.post-badges{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 0;
}

.post-badges { position: absolute !important; }


@media (max-width: 900px){
  /* жесткий порядок для всех карточек */
  .post-card{
    display: flex;
    flex-direction: column;
  }
  .post-media{
    order: 1 !important;
  }
  .post-body{
    order: 2 !important;
  }
}

.search-title{
  margin: 26px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}


/* ===== Subscribe Modal ===== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.modal.is-open{ display: block; }

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal__panel{
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.subscribe-modal__hero{
  background: #f3f3f3;
}
.subscribe-modal__hero img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.subscribe-modal__body{
  padding: 18px 18px 20px;
}

.subscribe-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.subscribe-input{
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  outline: none;
  margin-bottom: 12px;
  font-family: Montserrat;
}
.subscribe-input:focus{
  border-color: var(--bw-black);
}

.subscribe-submit{
  width: 100%;
  height: 46px;
}

.subscribe-error{
  margin-top: 10px;
  font-size: 14px;
  opacity: .85;
}

.subscribe-success{
  font-size: 18px;
  font-weight: 600;
  padding: 10px 2px;
}


/* tooltip описания меню */
/* tooltip только если есть data-desc */

.site-nav .menu li[data-desc]{
position: relative;
}

.site-nav .menu li[data-desc]{
  position: relative;
}

.site-nav .menu li[data-desc]::after{
  content: attr(data-desc);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);

  width: 390px;
  padding: 10px 12px;
  border-radius: 8px;

  background: #fff;
  color: #cc881b;
  border: 1px solid #dadada;

  font-size: 16px;
  line-height: 1.45;
  text-align: left;

  white-space: normal;
  word-break: break-word;

  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  margin-top: 8px;
  z-index: 9990;
  box-sizing: border-box;
}

.site-nav .menu li[data-desc]:hover::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-nav .menu li[data-desc]::before{

content:"";

position:absolute;

left:50%;
top:100%;

transform:translateX(-50%);

border-left:5px solid transparent;
border-right:5px solid transparent;
border-bottom:5px solid #000;

opacity:0;

transition:opacity .2s ease;

margin-top:1px;

}

.site-nav .menu li[data-desc]:hover::before{
opacity:1;
}









/* ===== Single ===== */
.single-article{
  padding: 26px 0 10px;
}

.single-head{
  margin-bottom: 14px;
}
.single-title{
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.05;
}
.single-meta{
  opacity: .75;
  font-size: 14px;
}

.single-hero{
  margin: 18px 0 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.single-hero__img{
  width: 100%;
  height: auto;
  display: block;
}

.single-content{
  font-size: 17px;
  line-height: 1.8;
}
.single-content img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.single-content p{
  margin: 0 0 16px;
}

.single-footerbar{
  margin-top: 22px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.reactions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.react-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.react-btn:hover{
  box-shadow: var(--shadow-soft);
}
.react-count{
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
.react-hint{
  font-size: 13px;
  opacity: .75;
  margin-left: 6px;
}

.views{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .85;
  font-weight: 600;
}
.views-icon{
  font-size: 18px;
}

/* ===== Comments ===== */
.comments-block{
  margin: 26px 0 50px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.comments-title{
  margin: 0 0 12px;
  font-size: 22px;
}
.comments-count{
  opacity: .7;
  font-weight: 600;
}

.comment-form-wrap{
  border: 1px solid #efc950;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}
.comment-form-field{
  margin: 0 0 12px;
}
.comment-form-field label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.comment-form-field input,
.comment-form-field textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
}
.comment-form-field input:focus,
.comment-form-field textarea:focus{
  border-color: #000;
}
.comment-form-submit{
  margin: 0;
}
.comment-form-submit .submit {
    width: 100%;
    max-width: 290px;
    font-family: 'Montserrat';
    height: 46px;
    border-radius: 999px;
    border: 1px solid #efc950;
    background: #ffffff;
    color: #1c1c1c;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

.comments-list{
  display: grid;
  gap: 12px;
}

.comment-item{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.comment-top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.comment-author{
  font-weight: 800;
}
.comment-date{
  opacity: .65;
  font-size: 13px;
}
.comment-text{
  opacity: .9;
  line-height: 1.6;
}

.comments-more{
  margin-top: 14px;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.comments-status{
  font-size: 14px;
  opacity: .75;
}

@media (max-width: 900px){
  .single-title{ font-size: 26px; font-family: Kazimir;}
  .single-footerbar{ flex-direction: column; align-items: flex-start; }
}

/* ===== Single header tweaks ===== */
.breadcrumbs{
  margin: 20px 0 10px;
  font-size: 13px;
  opacity: .75;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumbs__link{
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumbs__link:hover{
  border-bottom-color: #000;
}
.breadcrumbs__sep{
  opacity: .5;
}
.breadcrumbs__current{
  opacity: .9;
}

.single-head{
  margin-bottom: 14px;
}
.single-title{
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.05;
  font-family: Kazimir;
}

.single-meta-row{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.single-date{
  font-size: 14px;
  opacity: .75;
}

.single-cat-badge{
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px){
  .single-title{ font-size: 26px; }
}




/* FIX: мобильная шапка без перекрытий (бургер / лого / поиск) */
@media (max-width: 900px){
  .header-row--mobile .header-row__inner--mobile{
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 12px;
  }

  .header-row--mobile .js-mobile-menu-toggle{
    justify-self: start;
    z-index: 2;
  }

  .header-row--mobile .logo--mobile{
    justify-self: center;
    text-align: center;
    z-index: 1;
  }

  .header-row--mobile .js-search-toggle{
    justify-self: end;
    z-index: 2;
  }
}

@media (max-width: 900px){
  /* шапка должна быть выше full-screen меню */
  .header-row--mobile{
    position: relative;
    z-index: 9999;
  }

  /* само меню ниже шапки */
  .mobile-menu{
    z-index: 9999;
    margin-top: 150px;
  }
}

.single-author {
    display: inline-flex;
    align-items: center;
    height: 28px;
    font-size: 14px;
    font-weight: 400;
}


/* Мобильная горизонтальная навигация под шапкой */
.mobile-subnav{
  display: none;
}

@media (max-width: 900px){
  .mobile-subnav{
    display: block;
    border-bottom: 1px solid var(--line);
    background: var(--bw-white);
  }

  .mobile-subnav__inner{
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 12px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-subnav__inner::-webkit-scrollbar{
    display: none;
  }

  .mobile-subnav__inner a{
    flex: 0 0 auto;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    color: #ffd439;
    padding: 0 0 2px;
    border-bottom: 1px solid transparent;
  }

  .mobile-subnav__inner a:hover,
  .mobile-subnav__inner a:focus-visible{
    border-bottom-color: var(--bw-black);
  }
}

/* ============================= */
/* About page (конверт) */
/* ============================= */

.about-page{
padding:40px 0 60px;
}

.about-envelope{

border:2px solid #C9A227;

border-radius:6px;

padding:40px;

background:#fff;

position:relative;
}

.about-envelope__header{

display:flex;

justify-content:space-between;

align-items:flex-start;

margin-bottom:30px;
}

.about-envelope__address{

font-size:16px;

line-height:1.6;
}

.about-from{
margin-bottom:6px;
}

.about-envelope__logo img{

max-width:250px;

height:auto;
}

.about-envelope__content {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 20px;
    font-family: 'TTSmalls-Regular';
}

/* адаптив */

@media (max-width:768px){

.about-envelope{

padding:24px;
}

.about-envelope__header{

flex-direction:column;

gap:16px;
}

.about-envelope__logo{

align-self:flex-end;
}

.about-envelope__content{

font-size:16px;
}

}










.about-envelope__bottom{
  margin-top: 28px;
}

.about-write-link{
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  border-bottom: 1px solid #000;
}

.contact-modal__body{
  padding: 22px 20px 24px;
}

.contact-modal__title{
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.1;
}

.contact-form__field{
  margin: 0 0 14px;
}

.contact-form__field label{
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  outline: none;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus{
  border-color: #000;
}

.contact-form__submit{
  width: 100%;
  height: 46px;
}

.contact-form__error{
  margin-top: 10px;
  font-size: 14px;
  opacity: .85;
}

.contact-success{
  font-size: 18px;
  font-weight: 600;
  padding: 8px 2px;
}





.reactions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.react-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.react-btn:hover{
  box-shadow: var(--shadow-soft);
}

.react-btn.is-active{
  border-color: #fddb6b;
  color: #000;
}

.react-num{
  min-width: 10px;
}


.comment-top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.comment-top__right{
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-delete{
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  color: #000;
  opacity: .7;
  border-bottom: 1px solid #000;
}

.comment-delete:hover{
  opacity: 1;
}