@charset "utf-8";
/* view.css - 게시글 상세 페이지 스타일 (모바일 및 PC 최적화) */

/* ===== 기본 설정 및 컨테이너 ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f3f4f6;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 960px; /* PC에서 적절한 최대 너비 */
    margin: 0 auto;
    padding: 1rem; /* 모바일에서 좌우 패딩 */
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); /* 그림자 강화 */
    border-radius: 12px;
    box-sizing: border-box;
}

/* ===== 게시글 제목 및 정보 ===== */
h1.title {
    font-size: 1.8rem; /* 모바일에서 제목 크기 */
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 1rem; /* 상단 여백 추가 */
    color: #2c3e50;
    line-height: 1.3;
    word-break: break-word; /* 긴 단어 줄바꿈 */
}

.post-info-top {
    display: flex;
    flex-wrap: wrap; /* 모바일에서 요소들이 줄바꿈되도록 */
    align-items: center;
    gap: 0.8rem; /* 요소 간 간격 */
    font-size: 0.9rem; /* 정보 텍스트 크기 */
    color: #6c757d;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee; /* 상단 구분선 */
    padding-bottom: 0.5rem;
}

.post-info-top .board-type,
.post-info-top .board-category {
    font-weight: 600;
    color: #007bff; /* 강조 색상 */
    background-color: #e9f5ff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem; /* 뱃지 크기 */
}



/* tinymce의 글쓰기의 글과 간격을 위해서 margin-bottom을 조절함. */
.info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: -3rem; /* 본문 상단 여백 */
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* 정보 항목 간 간격 */
    align-items: center;
}

.info span {
    white-space: nowrap; /* 정보 항목 줄바꿈 방지 */
}

.info .media-info {
    color: #007bff;
    font-weight: 500;
}

/* ===== 본문 내용 (TinyMCE 콘텐츠) ===== */
.content.blog-content {
    white-space: pre-wrap; /* TinyMCE 내용의 줄바꿈 유지 */
    margin-bottom: 2rem; /* 본문 하단 여백 */
    line-height: 1.8; /* 가독성을 위한 줄 간격 */
    font-size: 1rem; /* 본문 폰트 크기 */
    color: #343a40;
    word-break: break-word; /* 긴 단어 줄바꿈 */
}


/* 마진을 마이너스값으로 주니까 상하 간격이 조절된다. */
/*
.content.blog-content p {
	margin-top: -3rem;
	margin-bottom: -3rem;
}
*/
/* 마진을 마이너스값으로 주니까 상하 간격이 조절된다. */


/* 정확한 답을 찾을때까지 아래코드를 사용한다. 이부분을 다 주석처리하고 .info에서 마진을 조절하다. 2025.08.08*/
/*
.content.blog-content p,
.content.blog-content h1,
.content.blog-content h2,
.content.blog-content h3,
.content.blog-content h4,
.content.blog-content h5,
.content.blog-content h6 {
    margin-top: -1.5rem;  
    margin-bottom: -0.5rem;
  line-height: 1.5;    
}
*/



/* TinyMCE로 삽입된 이미지 반응형 처리 */
.content.blog-content img {
    max-width: 100%; /* 부모 요소의 너비를 초과하지 않도록 설정 */
    height: auto;    /* 가로세로 비율 유지 */
    display: block;  /* 이미지 아래 불필요한 공백 제거 */
    margin: 1.5rem auto; /* 중앙 정렬 및 상하 여백 추가 */
    border-radius: 8px; /* 부드러운 모서리 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* 그림자 효과 강화 */
    object-fit: contain; /* 이미지가 잘리지 않고 비율 유지 */
}

/* TinyMCE로 삽입된 비디오/iframe (예: YouTube 임베드) 반응형 처리 */
.content.blog-content iframe,
.content.blog-content video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #000; /* 비디오 배경색 */
}

/* TinyMCE에서 삽입된 테이블 반응형 처리 */
.content.blog-content table {
    width: 100% !important; /* 테이블 너비를 부모에 맞춤 */
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    display: block; /* 모바일에서 가로 스크롤 가능하게 */
    overflow-x: auto; /* 내용이 넘치면 가로 스크롤바 생성 */
    -webkit-overflow-scrolling: touch; /* iOS에서 부드러운 스크롤 */
    border: 1px solid #ddd; /* 테이블 전체 테두리 */
    border-radius: 8px; /* 테이블 모서리 둥글게 */
}

.content.blog-content table th,
.content.blog-content table td {
    padding: 10px 12px; /* 셀 패딩 증가 */
    border: 1px solid #eee; /* 셀 테두리 색상 연하게 */
    text-align: left;
    white-space: nowrap; /* 셀 내용이 줄바꿈되지 않도록 */
    font-size: 0.95rem;
}

.content.blog-content table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #555;
}

/* TinyMCE에서 삽입된 코드 블록 반응형 처리 */
.content.blog-content pre {
    background-color: #2d2d2d; /* 어두운 배경색 */
    color: #f8f8f8; /* 밝은 글자색 */
    padding: 1.2rem;
    border-radius: 8px;
    overflow-x: auto; /* 내용이 넘치면 가로 스크롤바 생성 */
    -webkit-overflow-scrolling: touch;
    white-space: pre-wrap; /* 긴 텍스트 줄바꿈 */
    word-wrap: break-word; /* 단어 단위 줄바꿈 */
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace; /* 코드 폰트 */
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* 인용문 스타일 */
.content.blog-content blockquote {
    border-left: 4px solid #007bff;
    padding: 0.5rem 1rem;
    margin: 1.5rem 0;
    background-color: #f8faff;
    color: #555;
    font-style: italic;
    border-radius: 4px;
}

/* 리스트 스타일 */
.content.blog-content ul,
.content.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content.blog-content li {
    margin-bottom: 0.5rem;
}

/* ===== 첨부 미디어 섹션 (본문 하단) ===== */
.media-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2.5rem; /* 본문과의 간격 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.media-section h3 {
    font-size: 1.3rem;
    color: #343a40;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.media-section h3 .fa {
    color: #007bff;
    font-size: 1.2rem;
}

/* 이미지 갤러리 */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* 모바일: 최소 140px, PC: 유동적 */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.image-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.image-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-item img {
    width: 100%;
    height: 120px; /* 고정 높이로 통일 */
    object-fit: cover; /* 이미지가 잘리지 않도록 채움 */
    display: block;
}

.image-caption {
    font-size: 0.8rem;
    color: #555;
    padding: 0.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 오디오/비디오/문서 리스트 공통 스타일 */
.audio-list, .video-list, .document-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audio-item, .video-item, .document-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column; /* 모바일: 세로 정렬 */
    align-items: flex-start;
    gap: 0.8rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.audio-item .audio-info,
.video-item .video-info,
.document-item .document-info {
    flex-grow: 1; /* 정보 부분이 공간을 채우도록 */
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.audio-item strong, .video-item strong, .document-item strong {
    font-size: 0.95rem;
    color: #333;
    word-break: break-all;
}

.file-size {
    font-size: 0.8rem;
    color: #777;
}

.audio-item audio, .video-item video {
    width: 100%;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.document-item .document-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-right: 0.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #28a745; /* 초록색 버튼 */
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
    align-self: flex-end; /* 우측 하단 정렬 */
}

.download-btn:hover {
    background-color: #218838;
}

/* YouTube 리스트 */
.youtube-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.youtube-item {
    background-color: #fff;
    border: 1px solid #ffe082;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 1px 5px rgba(255,193,7,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.youtube-info strong {
    font-size: 1rem;
    color: #333;
    word-break: break-all;
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 (9 / 16 * 100) */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #dc3545; /* 빨간색 버튼 */
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
    align-self: flex-end;
}

.youtube-link:hover {
    background-color: #c82333;
}

/* ===== 좋아요 버튼 ===== */
.likes {
    margin: 2rem 0;
    text-align: center;
}

.likes .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px; /* 둥근 버튼 */
    background-color: #ffc107; /* 노란색 */
    color: #333;
    box-shadow: 0 4px 10px rgba(255,193,7,0.3);
    transition: all 0.2s ease;
}

.likes .btn:hover:not(:disabled) {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,193,7,0.4);
}

.likes .btn:disabled {
    background-color: #cccccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

/* ===== 목록, 수정, 삭제 버튼 ===== */
p.btn-group { /* 기존 p 태그에 클래스 추가 */
    text-align: center;
    margin: 2rem 0;
}

p.btn-group .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin: 0.5rem; /* 모바일에서 버튼 간 여백 */
    display: inline-block; /* 버튼 정렬 */
}

p.btn-group .btn.delete-btn {
    background: #dc3545; /* 삭제 버튼 빨간색 */
}

p.btn-group .btn.delete-btn:hover {
    background: #c82333;
}


/* ===== 댓글 영역 (comment.css로 분리되어 있다면 해당 파일에 적용) ===== */
/* 여기서는 view.css에 포함된 댓글 관련 스타일을 최적화합니다. */
.comments-section { /* 댓글 섹션 전체 컨테이너 */
    margin-top: 3rem;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comments-section h2 {
    font-size: 1.5rem;
    color: #343a40;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-section h2 .fa {
    color: #007bff;
    font-size: 1.4rem;
}

.comments { padding: 0; margin: 0; }
.comment {
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column; /* 모바일 기본: 세로 정렬 */
    gap: 0.5rem;
}
.comment:last-child {
    border-bottom: none; /* 마지막 댓글 하단 선 제거 */
}

.comment-author {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.2rem;
}
.comment .info {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}
.comments .text {
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: left;
    word-break: break-word; /* 긴 단어 줄바꿈 */
    margin-left: 0; /* 모바일에서 들여쓰기 제거 */
}
.comment .actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: flex-end; /* 모바일에서 우측 정렬 */
}
.comment .actions .vote-btn {
    background: #eee;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.comment .actions .vote-btn:hover {
    background: #ddd;
}

.comment-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column; /* 모바일 기본: 세로 정렬 */
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.comment-form textarea {
    resize: vertical;
    min-height: 80px;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.comment-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
.comment-form .btn {
    align-self: stretch; /* 모바일에서 버튼 너비 100% */
    background: #007bff;
    color: white;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.comment-form .btn:hover {
    background: #0056b3;
}

/* ===== 반응형 미디어 쿼리 ===== */

/* 태블릿 (min-width: 768px) */
@media (min-width: 768px) {
    .container {
        padding: 1.5rem 2rem;
    }

    h1.title {
        font-size: 2.2rem; /* 태블릿에서 제목 크기 증가 */
    }

    .post-info-top {
        font-size: 1rem; /* 정보 텍스트 크기 증가 */
        gap: 1.5rem;
    }

    .post-info-top .board-type,
    .post-info-top .board-category {
        font-size: 0.9rem;
    }

    .info {
        font-size: 0.9rem;
        gap: 1rem;
    }

	
	
	
	
	
	
	
	
	
    .content.blog-content {
        font-size: 1.05rem; /* 본문 폰트 크기 증가 */
/*		background-color:aqua;*/
		padding: 0px;
    }
	
/*	이미지가 밖으로 나가는 것 해결 */
	.content.blog-content::after {
    content: "";
    display: table;
    clear: both;
}
/*	이미지가 밖으로 나가는 것 해결 */

/*
	.content.blog-content p {
    margin: 0 !important;
}

	
	div#originalContent.content.blog-content {
    margin: 0 !important;
    padding: 0 !important;
    background-color: aqua;
    overflow: hidden;
}
	
div#originalContent.content.blog-content * {
    margin: 0 !important;
    padding: 0 !important;
}
*/
	
	
	
	
	
	
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* 태블릿: 최소 180px */
        gap: 1.2rem;
    }

    .image-item img {
        height: 150px; /* 태블릿에서 이미지 높이 증가 */
    }

    .audio-item, .video-item, .document-item {
        flex-direction: row; /* 가로 정렬 */
        align-items: center;
        gap: 1.5rem;
    }

    .audio-item audio, .video-item video {
        width: auto; /* 자동 너비 */
        flex-grow: 1; /* 남은 공간 채우기 */
    }

    .audio-item .download-btn,
    .video-item .download-btn,
    .document-item .download-btn {
        align-self: center; /* 중앙 정렬 */
        margin-left: auto; /* 우측 정렬 */
    }

    .youtube-item {
        padding: 1.5rem;
    }

    .youtube-info strong {
        font-size: 1.1rem;
    }

    .likes .btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    p.btn-group .btn {
        margin: 0 0.8rem; /* 버튼 간 여백 조정 */
    }

    .comment {
        flex-direction: row; /* 댓글 가로 정렬 */
        align-items: flex-start;
        gap: 1rem;
    }
    .comment-author {
        flex: 0 0 120px; /* 작성자 너비 고정 */
    }
    .comment .info, .comments .text {
        flex: 1; /* 정보 및 텍스트가 남은 공간 채움 */
    }
    .comment .actions {
        flex: 0 0 auto;
        align-self: center;
    }

    .comment-form {
        flex-direction: row; /* 댓글 폼 가로 정렬 */
        align-items: flex-end; /* 버튼 하단 정렬 */
        gap: 1rem;
    }
    .comment-form textarea {
        flex: 1;
    }
    .comment-form .btn {
        align-self: flex-end; /* 버튼 우측 하단 정렬 */
        width: auto; /* 버튼 너비 자동 */
    }
}

/* 데스크탑 (min-width: 1024px) */
@media (min-width: 1024px) {
    .container {
        max-width: 900px; /* 더 좁게 하여 가독성 확보 */
        padding: 2rem 2.5rem;
    }

    h1.title {
        font-size: 2.5rem; /* 데스크탑에서 제목 크기 증가 */
        margin-top: 1.5rem;
    }

    .post-info-top {
        font-size: 1.05rem;
        gap: 1.8rem;
    }

    .post-info-top .board-type,
    .post-info-top .board-category {
        font-size: 0.95rem;
    }

    .info {
        font-size: 0.95rem;
        gap: 1.2rem;
    }

    .content.blog-content {
        font-size: 1.1rem; /* 본문 폰트 크기 추가 증가 */
        line-height: 1.9;
    }
    
    .content.blog-content img {
        margin: 2rem auto; /* PC에서 이미지 상하 여백 증가 */
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* PC: 최소 200px */
        gap: 1.5rem;
    }

    .image-item img {
        height: 180px; /* PC에서 이미지 높이 증가 */
    }

    .audio-item, .video-item, .document-item {
        padding: 1.2rem 1.5rem; /* PC에서 아이템 패딩 증가 */
    }

    .youtube-item {
        padding: 1.5rem 1.8rem;
    }
    
    .youtube-info strong {
        font-size: 1.15rem;
    }

    .likes .btn {
        padding: 1.1rem 2.2rem;
        font-size: 1.3rem;
    }

    p.btn-group .btn {
        margin: 0 1rem;
    }

    .comments-section {
        padding: 2rem;
    }

    .comments-section h2 {
        font-size: 1.6rem;
    }

    .comment {
        padding: 1.5rem 0;
    }
    .comment-author {
        font-size: 1.05rem;
    }
    .comments .text {
        font-size: 1rem;
    }
    .comment-form textarea {
        min-height: 100px;
    }
}

/* 대형 데스크탑 (min-width: 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1000px; /* 더 넓은 화면에서 최대 너비 */
    }
    
    h1.title {
        font-size: 3rem;
    }

    .content.blog-content {
        font-size: 1.15rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* 더 넓은 화면에서 이미지 크기 조정 */
        gap: 1.8rem;
    }

    .image-item img {
        height: 200px;
    }
}

/* ===== 기타 유틸리티 및 기존 스타일 재정의 (필요시) ===== */
/* 기존 .post-img는 TinyMCE 외부의 썸네일/첨부 이미지에 사용될 수 있으므로,
   .content.blog-content img와 분리하여 관리하는 것이 좋습니다.
   만약 .post-img가 본문 내 이미지에 사용되지 않는다면 제거해도 무방합니다. */
.post-img {
    max-width: 100%; /* 기존 800px 제한 제거, 부모에 맞춤 */
    height: auto;
    cursor: pointer;
    border-radius: 8px; /* 통일성 유지 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 통일성 유지 */
}

textarea { margin-bottom: 1rem; }

.btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn:hover { background: #0056b3; }

.menu-wrapper { position: absolute; top: 1rem; right: 1rem; }
.menu-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.menu-list { display: none; position: absolute; top: 2rem; right: 0; list-style: none; margin: 0; padding: 0.5rem 0; background: white; border: 1px solid #ccc; border-radius: 5px; z-index: 100; }
.menu-list li a { display: block; padding: 0.4rem 1rem; text-decoration: none; color: #333; font-size: 0.9rem; }
.menu-list li a:hover { background: #f1f1f1; }
.pagination { text-align: center; margin: 1.5rem 0; }
.pagination a, .pagination span { display: inline-block; padding: 0.4rem 0.8rem; margin: 0 0.2rem; text-decoration: none; border: 1px solid #ccc; border-radius: 3px; font-size: 0.9rem; color: #333; }
.pagination .active { background: #007bff; color: white; border-color: #007bff; }
.vote-btn { padding: 0.2rem 0.5rem; margin-right: 0.5rem; background: #eee; border: none; border-radius: 4px; font-size: 0.85rem; cursor: pointer; }
.vote-btn:hover { background: #ddd; }
.likes { margin: 1rem 0; text-align: center; }

/* 기존 댓글 관련 스타일 (comment.css에서 가져왔을 가능성) */
/* 이 부분은 comment.css에 있다면 view.css에서 제거하는 것이 좋습니다. */
/* 만약 comment.css가 없고 view.css에만 있다면 이대로 유지합니다. */
/* 위에서 .comments-section 컨테이너를 추가하고 내부 스타일을 재정의했습니다. */
/* 따라서 아래 중복되는 스타일은 제거하거나, comment.css에 있는 경우 해당 파일을 수정하는 것이 좋습니다. */
/*
.comments { padding: 0; margin: 0; }
.comment { padding: 1rem; border-bottom: 1px solid #eee; display: flex; flex-direction: column; gap: 0.5rem; }
.comment-author { font-weight: bold; font-size: 1rem; color: #333; }
.comment .info { font-size: 0.85rem; color: #777; }
.comments .text { font-size: 0.95rem; line-height: 1.4; white-space: pre-wrap; text-align: left; margin-left: 1rem;}
.comment .actions { display: flex; gap: 0.5rem; }
.comment .actions .vote-btn { background: #eee; border: none; border-radius: 4px; padding: 0.4rem 0.8rem; font-size: 0.9rem; cursor: pointer; }
.comment .actions .vote-btn:hover { background: #ddd; }
.comment-form { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.comment-form textarea { resize: vertical; min-height: 80px; }
.comment-form .btn { align-self: flex-end; background: #007bff; color: white; padding: 0.6rem 1.2rem; border: none; border-radius: 4px; cursor: pointer; }
.comment-form .btn:hover { background: #0056b3; }
*/

/* 기존 미디어 쿼리 (view.css에 있었다면) */
@media (max-width: 480px) {
    /* .wrap { padding: 1rem 0.7rem; } */ /* .wrap 클래스가 HTML에 없다면 제거 */
    .menu-wrapper { top: 0.5rem; right: 0.5rem; }
}

/* 기존 768px 미디어 쿼리 (view.css에 있었다면) */
/* 이 부분은 위에서 통합하여 재정의했습니다. */
/*
@media (min-width: 768px) {
    .comment { flex-direction: row; align-items: flex-start; }
    .comment-author { flex: 0 0 120px; }
    .comment .info, .comment .text { flex: 1; }
    .comment .actions { flex: 0 0 auto; align-self: center; }
    .comment-form { flex-direction: row; align-items: flex-start; }
    .comment-form textarea { flex: 1; }
    .comment-form .btn { margin-left: 1rem; align-self: center; }
}
*/

/* media.css 또는 view.css 파일 내의 @media (min-width: 768px) 섹션 */
@media (min-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* PC: 최소 200px */
        gap: 1.5rem;
    }

    .image-item {
        /* 이미지 컨테이너의 비율을 16:9로 설정 (원하는 비율로 조절 가능) */
        /* 이 비율은 갤러리 이미지들이 일관된 크기를 가지도록 돕습니다. */
        aspect-ratio: 16 / 9; 
        overflow: hidden; /* 이미지가 컨테이너를 벗어나는 경우 잘라냄 */
        border-radius: 8px; /* 둥근 모서리 유지 */
    }

    .image-item img {
        width: 100%; /* 부모 컨테이너 너비에 꽉 채움 */
        height: 100%; /* 부모 컨테이너 높이에 꽉 채움 */
        object-fit: cover; /* 이미지가 컨테이너를 채우도록 비율 유지하며 잘라냄 */
        display: block; /* 이미지 하단의 불필요한 공백 제거 */
    }

    .audio-item, .video-item, .document-item {
        padding: 1.2rem 1.5rem; /* PC에서 아이템 패딩 증가 */
    }
}

/* 모바일 화면을 위한 기본 스타일 (예시) */
@media (max-width: 767px) {
    .image-gallery {
        grid-template-columns: 1fr; /* 모바일: 한 줄에 하나씩 */
        gap: 1rem;
    }
    .image-item {
        aspect-ratio: 4 / 3; /* 모바일에서는 다른 비율을 사용할 수 있습니다. */
        overflow: hidden;
        border-radius: 8px;
    }
    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}






/* TinyMCE 멀티미디어 스타일 */
/* 미디어 위치 설정 (이미지, 비디오, iframe 공통) */
.align-left-wrap,
img.align-left-wrap,
video.align-left-wrap,
iframe.align-left-wrap { 
  float: left !important; 
  margin: 0 15px 10px 0 !important; 
}
.align-right-wrap,
img.align-right-wrap,
video.align-right-wrap,
iframe.align-right-wrap { 
  float: right !important; 
  margin: 0 0 10px 15px !important; 
}
.align-center-block,
img.align-center-block,
video.align-center-block,
iframe.align-center-block { 
  display: block !important; 
  margin: 10px auto !important; 
  text-align: center !important; 
}

/* 미디어 여백 설정 (이미지, 비디오, iframe 공통) */
.margin-small,
img.margin-small,
video.margin-small,
iframe.margin-small { 
  margin: 5px !important; 
}
.margin-medium,
img.margin-medium,
video.margin-medium,
iframe.margin-medium { 
  margin: 10px !important; 
}
.margin-large,
img.margin-large,
video.margin-large,
iframe.margin-large { 
  margin: 20px !important; 
}

/* 이미지 전용 효과 설정 */
.image-border,
img.image-border { 
  border: 1px solid #ddd !important; 
}
.image-rounded,
img.image-rounded { 
  border-radius: 8px !important; 
}
.image-shadow,
img.image-shadow { 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important; 
}

/* 미디어 요소 기본 스타일 */
/* 오디오 기본 렌더링 보장 */
audio {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 100% !important;
}

video {
  max-width: 100% !important;
  height: auto !important;
}

iframe {
  max-width: 100% !important;
  border: 0 !important;
  height: auto !important;
}

/* 오디오 위치 설정 (클래스가 있을 때만) */
audio.align-left-wrap { 
  float: left !important; 
  margin: 0 15px 10px 0 !important; 
  display: block !important;
}
audio.align-right-wrap { 
  float: right !important; 
  margin: 0 0 10px 15px !important; 
  display: block !important;
}
audio.align-center-block { 
  display: block !important; 
  margin: 10px auto !important; 
  text-align: center !important; 
}

/* 오디오 여백 설정 (클래스가 있을 때만) */
audio.margin-small { margin: 5px !important; }
audio.margin-medium { margin: 10px !important; }
audio.margin-large { margin: 20px !important; }

/* YouTube iframe 전용 스타일 */
iframe[src*="youtube.com"] {
  aspect-ratio: 16/9 !important;
}

/* YouTube iframe 정렬 강화 */
iframe[src*="youtube.com"].align-left-wrap {
  float: left !important;
  margin: 0 15px 10px 0 !important;
  aspect-ratio: 16/9 !important;
}

iframe[src*="youtube.com"].align-right-wrap {
  float: right !important;
  margin: 0 0 10px 15px !important;
  aspect-ratio: 16/9 !important;
}

iframe[src*="youtube.com"].align-center-block {
  display: block !important;
  margin: 10px auto !important;
  aspect-ratio: 16/9 !important;
}

/* iframe 크기별 스타일 - aspect-ratio 제거하고 고정 크기 */
iframe.size-small {
  width: 300px !important;
  height: 169px !important;
  aspect-ratio: unset !important;
}

iframe.size-medium {
  width: 560px !important;
  height: 315px !important;
  aspect-ratio: unset !important;
}

iframe.size-large {
  width: 800px !important;
  height: 450px !important;
  aspect-ratio: unset !important;
}

/* iframe 정렬 시 추가 스타일 */
iframe.align-left-wrap,
iframe.align-right-wrap {
  clear: both !important;
}

iframe.align-center-block {
  clear: both !important;
}

/* TinyMCE 멀티미디어 스타일 */
/* 미디어 위치 설정 (이미지, 비디오, iframe 공통) */