/* ActionText 커스터마이징 - 이미지 캡션 숨기기 */

/* 에디터와 보기 페이지 모두에서 캡션 숨기기 */
.trix-content .attachment__caption,
.trix-content .attachment__name,
.trix-content .attachment__size,
.trix-content figcaption,
trix-editor .attachment__caption,
trix-editor .attachment__name,
trix-editor .attachment__size,
trix-editor figcaption,
action-text-attachment figcaption,
.attachment__caption-editor {
  display: none !important;
}

/* 첨부파일 메타데이터 숨기기 */
.trix-content .attachment__metadata,
trix-editor .attachment__metadata,
.attachment__metadata-container {
  display: none !important;
}

/* 이미지를 깔끔하게 표시 */
.trix-content .attachment--preview,
trix-editor .attachment--preview {
  margin: 1rem 0;
  text-align: center;
}

.trix-content .attachment img,
trix-editor .attachment img,
.trix-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* figure 요소 스타일링 */
.trix-content figure,
trix-editor figure {
  margin: 1rem 0;
  text-align: center;
}

/* Active Storage blob 이미지 스타일링 */
.trix-content action-text-attachment figure.attachment,
action-text-attachment figure.attachment {
  margin: 1rem 0;
}

/* 파일 첨부(문서) 스타일 유지 */
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}