.comments-container {
  display: flex;
  font-family: var(--font-stack);
  overflow-x: auto;
  padding: 5px;
  margin-bottom: 50px;
  box-shadow: 0 2px 2px -2px #ccc;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
}

.comment {
  max-width: 1800px;
  width: 360px;
  padding: 14px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #f2f1f1;
  margin-right: 10px;
  flex-shrink: 0;
}

.comment:first-child {
  margin-left: 10px;
}

.comment h3 {
  font-size: 14px;
  font-family: var(--font-semi-bold);
  color: black;
  margin-bottom: 5px;
}

.content-button {
  display: flex;
  align-items: end;
  margin-bottom: 20px;
}

.date {
  font-size: 0.8em;
  color: var(--secondary-color);
}

.rating {
  font-size: 1em;
  color: #ffa500;
  margin-bottom: 10px;
}

.comment h4 {
  font-size: 13px;
  margin-bottom: 5px;
}

.comment-content,
.developer-response {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  line-height: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.developer-response {
  font-family: var(--font-semi-bold);
  font-size: 14px;
  margin-bottom: 10px;
}

.comment-author {
  color: var(--secondary-color);
}

.developer-content {
  font-size: 13px;
}

.full-comment-btn {
  color: #007bff;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.8em;
}

.close {
  cursor: pointer;
}

.rating-date-author {
  display: flex;
  justify-content: space-between;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-content {
  background-color: #ffffff;
  margin: 80% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
}

.modal .comment-content,
.modal .developer-response {
  overflow: visible;
  display: block;
}

.close {
  color: var(--secondary-color);
  float: right;
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .modal-content {
    margin: 20% auto;
  }

  .comment {
    width: 1800px;
  }
}
