.post-interaction {
  padding: 0 19.2308rem;
  padding-top: 32px !important;

  h2 {
    font-size: 48px;
  }

  .load_more-btn:hover {
    font-weight: bold;
  }

  .title-comments {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #374151;
    margin-bottom: 20px;
  }

  .user-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;

    span {
      font-weight: 600;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0%;
      color: #1f2937;
    }
  }

  .likes,
  .comments {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  p img {
    border-radius: 16px;
    margin: 32px 0;
  }

  .interaction-summary {
    display: flex;
    gap: 16px;
    font-size: 16px;
    color: #555;
    padding-top: 16px;
    margin-bottom: 32px;
    border-top: 1px solid #eaecf0;
    margin-top: 32px;
  }

  .comments-section {
    padding: 28px;
    background-color: #ffffff;
    border-radius: 16px;
  }

  .comments-section .comment {
    padding-top: 16px;
    margin-top: 16px;
  }

  .comments-section .timestamp {
    float: right;
    font-size: 12px;
    color: #888;
  }

  .comments-section p {
    margin: 8px 0 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #374151;
  }

  .comment-input-container {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    /* padding: 12px; */
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    position: relative;
  }

  .comment-input-container:focus-within {
    border: 1px solid #4b5563;
  }

  .comment-box {
    border: none;
    outline: none;
    width: 100%;
    resize: none;
    overflow: hidden;
    line-height: 20px;
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #374151;
  }

  .comment-actions {
    justify-content: space-between;
    align-items: center;
    display: none;
    border-top: 1px solid #0000001a;
    margin: 15px 20px;
    padding-top: 15px;
    margin-top: 0;
  }

  .comment-input-container:focus-within .comment-actions,
  .comment-box:not(:placeholder-shown) + .comment-actions {
    display: flex;
  }

  .comment-icons {
    display: flex;
    gap: 12px;
  }

  .comment-icons .icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
  }

  .upload-icon {
    position: relative;
    cursor: pointer;
  }

  .upload-input {
    display: none;
  }

  .comment-preview {
    margin-top: 8px;
  }

  .comment-preview img,
  .comment-preview video {
    max-width: 200px;
    margin-top: 5px;
    border-radius: 6px;
  }
  .preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px;
  }

  .preview-container img,
  .preview-container video {
    max-height: 120px;
    border-radius: 6px;
    object-fit: cover;
  }

  .comment img,
  .comment video {
    margin-top: 32px;
    max-width: 100%;
    border-radius: 4px;
  }

  .preview-item {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    padding: 10px;
  }

  .preview-media {
    max-width: 120px;
    border-radius: 6px;
  }

  .remove-preview {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .comment-error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 8px;
    display: none;
    padding-left: 20px;
  }

  .icon-btn.liked span svg path {
    fill: #ef4444;
    color: #ef4444;
  }

  .post-interaction-description {
    font-size: var(--font-size-18);
    line-height: 28px;
    color: rgba(55, 65, 81, 1);
  }
}

@media (max-width: 1200px) {
  .post-interaction {
    padding: 0 7.3846rem !important;
  }
}

/* ≤ 1024px */
@media (max-width: 1024px) {
  .post-interaction {
    padding: 0 4.9231rem !important; /* 64px */
  }
}

@media (max-width: 768px) {
  .post-interaction {
    padding: 0 !important; /* 32px */
  }

  .post-interaction h2 {
    font-size: var(--font-size-32);
    line-height: var(--line-height-36);
  }

  .post-interaction .post-interaction-description {
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
  }

  .post-interaction .comments-section {
    padding: var(--mp20);
    border-radius: var(--border-radius-12);
  }

  .post-interaction .title-comments {
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
    margin-bottom: var(--mp16); /* 16px */
  }

  .post-interaction .comment-box {
    padding: var(--mp16); /* 16px */
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
  }

  .post-interaction .comment-actions {
    margin: var(--mp12) var(--mp16);
    padding-top: var(--mp12);
  }

  .post-interaction .preview-container {
    padding: 0 var(--mp16);
  }

  .post-interaction .preview-container img,
  .post-interaction .preview-container video {
    max-height: 7.6923rem; /* 100px */
  }
}

/* ≤ 480px (mobile) */
@media (max-width: 480px) {
  .post-interaction {
    padding: 0 var(--mp16); /* 16px */
  }

  .post-interaction h2 {
    font-size: var(--font-size-28);
    line-height: var(--line-height-32);
  }

  .post-interaction .post-interaction-description {
    font-size: var(--font-size-14);
    line-height: var(--line-height-20);
  }

  .post-interaction .comments-section {
    padding: var(--mp16); /* 16px */
  }

  .post-interaction .title-comments {
    font-size: var(--font-size-14);
    line-height: var(--line-height-20);
  }

  .post-interaction .comment-box {
    font-size: var(--font-size-14);
    line-height: var(--line-height-20);
  }

  .post-interaction .comment-icons {
    gap: var(--mp8);
  }

  .post-interaction .preview-container img,
  .post-interaction .preview-container video {
    max-height: 6.1538rem; /* 80px */
  }

  .post-interaction .remove-preview {
    width: 1.5384rem; /* 20px */
    height: 1.5384rem;
    font-size: var(--font-size-14);
  }
}
