.wrapper{max-width:1000px;width:100%;margin:0 auto}body{margin:0;padding:0;background-color:#f7f9fa;font-family:Arial,Helvetica,sans-serif}a{cursor:pointer;text-decoration:none}.header__wrapper{display:flex;justify-content:space-between;align-items:center;padding:24px 8px 40px;box-sizing:border-box;position:relative}.header__geo{display:flex;align-items:center}.geoCity{color:#0070c0}.header__btn{background-color:#e5f2f9;color:#0070c0;height:28px;padding:0 12px;box-sizing:border-box;border:none;border-radius:4px}.header__btn:focus,.header__btn:hover{background-color:#d1e8f4;color:#0070c0;cursor:pointer;transition:all .3s}.header__search{display:flex;justify-content:space-between;align-items:center;padding:0 8px;box-sizing:border-box;position:absolute;top:75%;left:0}.header__search input{height:56px;width:100%;margin-right:16px;border-radius:4px;border:1px solid #000;padding:0 12px;box-sizing:border-box;outline:none}.header__search button{height:56px;background-color:#ec2327;color:#fff;padding:0 16px;border:none;border-radius:4px;flex:0 0 130px;cursor:pointer}@media (max-width:768px){.header__search{display:none}.header__wrapper{padding:24px 8px}}@media (max-width:425px){.header__geo{display:none}}
.comments-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .comment__item,
    .reply__item {
      display: flex;
      gap: 16px;
      background: #fff;
      border-radius: 10px;
      padding: 16px;
      margin-bottom: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .comment__img-wrapper,
    .reply__img-wrapper {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
    }

    .comment__img-wrapper img,
    .reply__img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .comment__name,
    .reply__name {
      font-weight: bold;
      margin-bottom: 6px;
      color: #2c3e50;
    }

    .comment__text,
    .reply__text {
      font-size: 15px;
      color: #444;
    }

    .comment__text a,
    .reply__text a {
      color: #2980b9;
      text-decoration: none;
    }

    .comment__text a:hover,
    .reply__text a:hover {
      text-decoration: underline;
    }
    .reply__name{
        margin-top: 0;
    }
    .res-im img {
      max-width: 100%;
      margin-top: 10px;
      border-radius: 6px;
    }

    /* Стиль для прихованого коментаря */
    .comment-hide {
      opacity: 0.6;
    }

    /* Відступ між коментарем і відповіддю */
    .reply__item {
      background-color: #e7e7e8;
      border-left: 4px solid #b92e29;
    }