:root {
    --primary: #1a3c5e;
    --text: #222;
    --light: #f8f9fa;
    --gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 18px 14px;
}

header {
    padding: 20px 0 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

h1 {
    font-size: 1.85rem;
    margin-bottom: 0.45em;
    color: var(--primary);
    line-height: 1.18;
}

.lead {
    font-size: 1.18rem;
    color: #444;
    margin: 0 0 1.4em;
    font-weight: 500;
}

.meta {
    font-size: 0.92rem;
    color: var(--gray);
    margin: 1.2em 0 2.2em;
}

.meta time {
    font-weight: 600;
}

article {
    font-size: 1.07rem;
}

h2 a,
h2 a:visited {
    color: var(--primary);
    text-decoration: none;          
}

h2 a:hover {
    color: var(--primary);
    text-decoration: underline;      
}

        .article-header h3 {
            font-size: 1.42rem;
            line-height: 1.35;
            margin: 0 0 8px 0;
            font-weight: 600;
            color: #1a3c5e;
        }

        .article-header h3 a,
        .article-header h3 a:visited {
            color: #1a3c5e;
            text-decoration: none;          
        }

        .article-header h3 a:hover {
            text-decoration: underline;      
        }

        @media (min-width: 768px) {
            .article-header h3 {
                font-size: 1.58rem;
            }
        }
        
p {
    margin-bottom: 1.35em;
}

blockquote {
    margin: 2em 0;
    padding: 0 18px;
    border-left: 4px solid #ccc;
    color: #444;
    font-style: italic;
    font-size: 1.05rem;
}

strong {
    color: #000;
}

.highlight {
    background: #fff9e6;
    padding: 14px 16px;
    border-left: 4px solid #f1c40f;
    margin: 1.8em 0;
}

.sources {
    margin-top: 2.5em;
    padding-top: 1.2em;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--gray);
}

img.article-header {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
    border-radius: 6px;
}

article img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 1.4em auto;
    border-radius: 6px;
    box-sizing: border-box;
}

article img[align="center"],
article p img,
article div img,
article .highlight img,
article blockquote img {
    margin-left: auto;
    margin-right: auto;
}

.zonesamui-social { 
    text-align:center; 
    margin:25px 0 10px 0; 
    padding:0; 
}
.zonesamui-social ul { 
    list-style:none; 
    padding:0; 
    margin:0 auto; 
    display:flex; 
    width:100%; 
    max-width:420px;
    border-radius:6px; 
    overflow:hidden; 
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.zonesamui-social li { 
    flex:1; 
    margin:0; 
}
.zonesamui-social a { 
    display:block; 
    height:48px; 
    line-height:48px; 
    color:#fff !important; 
    font-size:19px; 
    transition:all 0.25s ease-out;
}
.zonesamui-social a:hover { 
    opacity:0.85; 
    transform:scale(1.08);
}

.zonesamui-social .fb a    { background:#3b5998; }
.zonesamui-social .x a     { background:#000000; }
.zonesamui-social .wa a    { background:#25d366; }
.zonesamui-social .li a    { background:#00c300; }
.zonesamui-social .tg a    { background:#229ed9; }

figure.wp-caption,
figure.aligncenter,
figure.alignleft,
figure.alignright {
    margin: 1.5em 0;         
}

figcaption,
.wp-caption-text {
    font-weight: bold !important;      
    font-size: 0.85em !important;     
    color: #555;                       
    text-align: center;                
    margin-top: 0.2em;                 
    line-height: 1.0;                  
    padding: 0 10px;                  
}

figcaption,
.wp-caption-text {
    font-style: italic;
    font-weight: 600;                  
}

@media (min-width: 768px) {
    .container { padding: 24px 32px; }
    h1 { font-size: 2.4rem; }
}

.article-navigation a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.article-navigation a:hover {
    text-decoration: underline;
}

.nav-prev {
    padding-left: 1.2em;
}
.nav-next {
    padding-right: 1.2em;
}

@media (max-width: 480px) {
    .article-navigation {
        flex-direction: column;
        gap: 1.2em;
    }
    .nav-left, .nav-right {
        text-align: center !important;
    }
}
