.limitOneRows, .limitOneRows a{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limitTwoRows, .limitOneRows a{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.watch_more:hover {
    background: #0560FD;
}
.title_hover:hover,
.title_hover a:hover
 {
    color: #0560FD;
}

.img_container{
    overflow: hidden;
}
.image-hover{
    width: 100%;
    height: 100%;
}

.image-hover:hover {
    transform: scale(1.2);
    transition: transform 0.5s ease;
}


/* zoom image */

    /* Định dạng ảnh thu nhỏ */
    .main-achievement img {
        cursor: zoom-in;
    }


  /* Định dạng popup nền */
  .popup {
    display: none;
    /* Ẩn popup ban đầu */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Nền tối */
  }

  /* Định dạng ảnh trong popup */
  .popup-content {
    margin: auto;
    display: block;
    max-width: 100%;
    /* width: auto; */
    /* height: 100vh; */
  }

  /* Nút đóng */
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  .popup-content-container {
    max-height: 100vh;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    height: 100vh;
    scrollbar-width: none;
  }
  .popup-content-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, và Edge */
  }

