@import url("/assets/css/components/molecules/breadcrumb.css");
@import url("/assets/css/components/molecules/pagination.css");
.comments .boxes {
  column-count: 3; /* masaüstünde 3 sütun */
  column-gap: 32px; /* sütun aralığı */
  margin-bottom: 24px;
}
.comments .boxes .box {
  padding: 16px;
  border: 1px solid #0a0a0a0d;
  break-inside: avoid;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  break-inside: avoid;
}
.comments .boxes .box .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #0a0a0a0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments .boxes .box .user {
  border-top: 1px solid #0a0a0a0d;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments .boxes .box .user .left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comments .boxes .box .user .left .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.comments .boxes .box .user .left .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments .boxes .box .user .left span {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  line-height: var(--text-base-line-height);
  color: var(--neutral-950);
}
.comments .boxes .box .user .left span small {
  display: block;
  font-weight: var(--font-normal);
}
.comments .boxes .box p {
  font-weight: var(--font-normal);
  font-size: var(--text-sm);
  line-height: var(--text-sm-line-height);
  color: var(--neutral-950);
}
.comments .boxes .box:has(.video-img) .icon,
.comments .boxes .box:has(.video-img) p {
  display: none;
}
.comments .boxes .box:has(.video-img) .user {
  border-top-width: 0;
}
.comments .boxes .box .video-img {
  position: relative;
  margin: -16px;
  position: relative;
}
.comments .boxes .box .video-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.comments .boxes .box .video-img button {
  width: 56px;
  height: 56px;
  background-color: #ffffff6d;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
  transition: var(--transition-transform);
}
.comments .boxes .box .video-img button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.comments .boxes .box .image {
  width: 100%;
  height: 207px;
  border-radius: 4px;
  overflow: hidden;
}

.comments .boxes .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1150px) {
  .comments .boxes .box .user .left span {
    font-size: var(--text-sm);
    line-height: var(--text-sm-line-height);
  }
  .comments .boxes .box .user .left .avatar {
    width: 32px;
    height: 32px;
  }
  .comments .boxes .box .user svg {
    display: none;
  }
  .comments .boxes {
    column-gap: 24px;
  }
  .comments .boxes .box {
    margin-bottom: 24px;
  }
  .comments .container {
    gap: 32px;
  }
  .comments .boxes .box .icon {
    width: 20px;
    height: 20px;
    padding: 2px;
  }
}
@media screen and (max-width: 640px) {
  .comments .boxes .box:last-child {
    margin-bottom: 0;
  }
   .comments .boxes {
    column-count: 1;
    column-gap: 0;
  }
  .comments .boxes .box {
    margin-bottom: 12px;
  }
  .comments .boxes .box .user svg {
    display: inline-block;
    width: 70px;
  }
}