/*
 Theme Name:     GeneratePress Child
 Theme URI:      https://generatepress.com
 Description:    Default GeneratePress child theme
 Author:         Tom Usborne
 Author URI:     https://tomusborne.com
 Template:       generatepress
 Version:        0.1
*/

/* 1. 기본 레이아웃 리셋 */
* { box-sizing: border-box !important; }

/* 2. 본문 너비 및 여백 강제 고정 */
.entry-content, .wp-block-group {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 15px !important;
    display: block !important;
}

/* 3. 모바일 글자 크기 강제 하향 (직접 박힌 스타일 제압) */
@media (max-width: 768px) {
    [style*="font-size: 20px"], .entry-content p, .entry-content li {
        font-size: 16px !important; 
        line-height: 1.6 !important;
    }
    .entry-content h2 { font-size: 20px !important; }
}

/* 4. 가로 스크롤 방지 */
body, html { overflow-x: hidden !important; }
}

/* 표 안의 그 어떤 태그(p, span, strong 등)가 와도 14px로 강제 고정 */
.entry-content table td *, 
.entry-content table th *,
.entry-content table td,
.entry-content table th {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 5px !important;
}