/* #wp_editor_content에만 reset.css 영향 차단 */
/* 기본 콘텐츠 컨테이너 */
#wp_editor_content {
    font-size: 1em;
    line-height: 1.6;
    /* 읽기 편한 줄 간격 */
    color: #333;
    /* 기본 텍스트 색상 */
    margin: 0 auto;
    /* 콘텐츠 중앙 정렬 */
}

#wp_editor_content::after {
    content: "";
    display: block;
    clear: both;
}


/* 텍스트 요소 */
#wp_editor_content p {
    padding-top: 1em;
    margin: 0;
    /* 기존 마진 제거 */
}

/* 리스트 스타일 */
#wp_editor_content ul,
#wp_editor_content ol {
    margin: 1em 0;
    padding-left: 40px;
    /* 들여쓰기 */
}

#wp_editor_content li {
    margin-bottom: 0.5em;
}

/* 링크 */
#wp_editor_content a {
    color: #0073aa;
    /* 워드프레스 기본 블루 */
    text-decoration: none;
}

#wp_editor_content a:hover {
    color: #005177;
    /* 더 어두운 블루 */
    text-decoration: underline;
}

/* 이미지 */
#wp_editor_content img {
    max-width: 100%;
    /* 반응형 이미지 */
    height: auto;
    display: block;
    margin: 1em auto;
    /* 가운데 정렬 */
}

/* 테이블 */
#wp_editor_content table {
    width: 100%;
    /* 전체 너비 */
    border-collapse: collapse;
    margin: 1em 0;
}

#wp_editor_content th,
#wp_editor_content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#wp_editor_content h1 {
    color: #0049b6;
    font-size: 32px;
}

#wp_editor_content th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* 인용문 */
#wp_editor_content blockquote {
    margin: 1em 0;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #ddd;
    font-style: italic;
    color: #555;
}

/* 코드 블록 */
#wp_editor_content pre {
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    overflow: auto;
    border-radius: 4px;
    font-family: Consolas, monospace;
}

#wp_editor_content code {
    background-color: #f9f9f9;
    padding: 2px 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: Consolas, monospace;
}

/* YouTube 및 비디오 임베드 */
#wp_editor_content .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}

#wp_editor_content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 1em auto;
}

/* 모바일 */
@media screen and (max-width: 600px) {
    #wp_editor_content .wp-block-embed__wrapper {
        margin: 0 auto;
        padding-bottom: 56.25%;
        /* 16:9 비율을 유지하기 위한 값 */
        height: 0;
    }

    #wp_editor_content iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 1em auto;
    }
}

/* 가독성 향상을 위한 여백 */
#wp_editor_content hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 2em 0;
}


/* 워드프레스의 특정 블록 스타일 유지 */
.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

/* 리스트 스타일 */
#wp_editor_content ul,
#wp_editor_content ol {
    margin: 1em 0;
    padding-left: 40px;
    /* 들여쓰기 */
    list-style-position: outside;
    /* 기본값 유지 */
    list-style-type: disc;
    /* 불릿 모양 추가 */
}

#wp_editor_content ul ul {
    list-style-type: circle;
    /* 하위 리스트는 동그라미 */
}

#wp_editor_content ul ul ul {
    list-style-type: square;
    /* 3단계는 네모 */
}

#wp_editor_content li {
    /* margin-bottom: 0.5em; */
}