.lt-request-page {
  .lt-comments {
    border: none;
    padding: 0;
    margin-bottom: 0.75rem;

    @media (min-width: 768px) {
      margin-bottom: 1.5rem;
    }

    @media (min-width: 992px) {
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 1200px) {
    padding: 3rem 7.5rem;
  }
}

.request-page-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .lt-request-page .lt-row {
    display: flex;
    flex-direction: column;
  }

  .lt-request-page .lt-col-md-4 {
    order: -1;
  }
}

.lt-request-id {
  font-weight: var(--regular);
  font-size: var(--Small-Body-font-size);
  line-height: var(--Small-Body-line-weight);
}

.lt-request-separator {
  padding: 0 0.25rem;
}

.lt-request-number {
  padding-top: 1.5rem;
  font-weight: var(--semibold);
  font-size: var(--Small-Body-font-size);
  line-height: var(--Small-Body-line-weight);
}

.lt-request-subject {
  padding-bottom: 1.5rem;
  font-weight: var(--semibold);
  font-size: var(--H4-font-size);
  line-height: var(--H4-line-weight);
}

.request-column {
  background-color: #fff;
  padding: 1rem;
  border: 0.5px solid var(--stonegrey-400);
  border-radius: 0.75rem;

  @media (min-width: 768px) {
    padding: 1.5rem;
  }
}

.user-request {
  .lt-entry-info {
    flex-direction: row;
  }

  .lt-comment__header {
    margin-bottom: 0;
  }

  .lt-comment__body p {
    font-weight: var(--regular);
    font-size: var(--Body-font-size);
    line-height: var(--Body-line-weight);
    padding-top: 0.25rem;
  }

  .lt-comments__list {
    padding-block: 0.75rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.lt-request-sidebar {
    padding: 0.75rem;
    border: 1px solid var(--stonegrey-400);
    border-radius: 0.5rem;
  
    @media (min-width: 992px)  {
      padding: 1rem;
    }
  }
  
  .request-details {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    margin-top: 0.75rem;
  }
  
  .request-info {
    font-weight: var(--semibold);
    font-size: var(--Small-Body-font-size);
    line-height: var(--Small-Body-line-weight);
  }
  
  .request-detail-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  
    &.attachments-container {
      display: none;
      align-items: flex-start;
      flex-direction: column;
  
      @media (min-width: 1200px) {
        display: flex;
      }
    }
  }
  
  .detail-item-name {
    color: var(--stonegrey-900-p);
    font-weight: var(--medium);
    font-size: var(--Small-Body-font-size);
    line-height: var(--Small-Body-line-weight);
  }
  
  .detail-items-container {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    max-width: 100%;
  }
  
  .detail-items-container a.detail-item-description {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    cursor: pointer;
  }
  
  .custom-tooltip {
    position: absolute;
    background-color: var(--stonegrey-1100-p);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 99999;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
  }
  
  .custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--stonegrey-1100-p);
  }
  
  .custom-tooltip.show {
    opacity: 1;
  }
  
  .detail-item-description {
    background-color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1000px;
    font-weight: var(--regular);
    font-size: var(--Captions-font-size);
    line-height: var(--Captions-line-weight);
    color: var(--stonegrey-900-p);
  }
  
  .lt-request-status {
  font-weight: var(--semibold);
  } 
  
  .lt-request-status--solved,
  .lt-request-status--open,
  .lt-request-status--answered {
    color: var(--avocado-800-p);
  }
  
  .lt-request-status--closed {
    color: var(--stonegrey-900-p);
  }
  
  .lt-request-status--new {
    color: var(--blueberry-1000);
  }
  
  .collaborators-container {
    background-color: var(--stonegrey-300);
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
  
  .collaborators-header {
    color: var(--stonegrey-900-p);
    font-weight: var(--medium);
  font-size: var(--Small-Body-font-size);
  line-height: var(--Small-Body-line-weight);
  }
  
  .collaborators-details {
    color: var(--stonegrey-900-p);
    font-weight: var(--regular);
  font-size: var(--Captions-font-size);
  line-height: var(--Captions-line-weight);
  }
  
  .request-comment-attachments {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .request-comment-attachment {
    display: flex;
    gap: 0.25rem;
    font-weight: var(--regular);
    font-size: var(--Captions-font-size);
    line-height: var(--Captions-line-weight);
    color: var(--stonegrey-900-p);
    background-color: var(--stonegrey-100);
    padding: 0.25rem;
    max-width: 150px;
    cursor: pointer;
    border-radius: 1000px;
    align-items: center;
  
    img {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
    }
  
    .attachment-text {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }
  }