@charset "utf-8";

/* 본문 콘텐츠 영역 - 사용자 입력 HTML 기본 스타일 */
#bo_v_con a { color: var(--hex-primary-600); text-decoration: underline; }
#bo_v_con a:hover { color: var(--hex-primary-700); }
#bo_v_con img { max-width: 100%; height: auto; }

/* 갤러리 이미지 기본 스타일 */
.gall_img img, .gall_img video { max-width: 100%; height: auto !important; }

/* 임시저장 콘텐츠 숨김 */
.autosave_content { display: none; }

/* 갤러리 그리드 반응형 */
@media (max-width: 768px) {
    #gall_ul { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    #gall_ul { grid-template-columns: repeat(1, 1fr) !important; }
}
