:root {
    --container: 1100px;
    --border: #e6e6e6;
    --text: #111;
    --muted: #666;
    --accent: #df1022;
    --bg-soft: #fafafa;
    --footer: #262626;
    --shadow: 0 6px 20px rgba(0,0,0,.04);
}

* { box-sizing: border-box; }
html { margin: 0; }
body {
    margin: 0;
    font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
iframe { max-width: 100%; }
table { width: 100%; border-collapse: collapse; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.topbar {
    border-bottom: 1px solid var(--border);
    background: #fbfbfb;
    font-size: 12px;
    color: var(--muted);
}
.topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-menu, .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.branding { padding: 24px 0 18px; }
.branding-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.site-brand {
    display: flex;
    justify-content: center;
}
.text-logo {
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -2px;
}
.custom-logo { max-height: 72px; width: auto; }
.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.social-chip {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    font-size: 12px;
    font-weight: 700;
}
.social-chip.outline {
    width: auto;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.mainnav-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.primary-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    min-height: 48px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}
.primary-menu .current-menu-item a,
.primary-menu a:hover { color: var(--accent); }

.site-main { padding-top: 18px; }

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}
.hero-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.hero-card {
    position: relative;
    overflow: hidden;
    background: #ddd;
}
.hero-card a { display: block; position: relative; min-height: 100%; }
.hero-card-lg { min-height: 420px; }
.hero-card-sm { min-height: 205px; }
.hero-thumb,
.hero-thumb img,
.feature-thumb img,
.list-thumb img,
.archive-thumb img,
.thumb img,
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-thumb { position: absolute; inset: 0; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.12) 50%, rgba(0,0,0,0));
}
.hero-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
}
.hero-card-lg h2 {
    margin: 10px 0 0;
    font-size: 31px;
    line-height: 1.26;
    letter-spacing: -1px;
}
.hero-card-sm h3 {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -.4px;
}
.cat-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(223, 16, 34, .95);
    border-radius: 2px;
}
.cat-badge.solid { margin-bottom: 10px; }

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
}
.main-column { min-width: 0; }

.news-section { margin-bottom: 30px; }
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #111;
}
.section-heading h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.5px;
}
.section-layout {
    display: grid;
    grid-template-columns: 1fr;
}
.section-feature {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}
.feature-post {
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}
.feature-post a { display: block; }
.feature-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ececec;
}
.feature-copy h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -1px;
}
.feature-copy p,
.list-copy p,
.archive-copy p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 14px;
}
.meta-row {
    display: flex;
    gap: 14px;
    color: #8a8a8a;
    font-size: 12px;
}
.section-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.list-post {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.list-post:last-child { border-bottom: 0; }
.list-post-link {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: start;
}
.list-thumb {
    width: 112px;
    height: 78px;
    overflow: hidden;
    background: #eee;
}
.list-copy h4 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: -.3px;
}
.list-copy p { font-size: 13px; }

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.widget-box {
    border: 1px solid var(--border);
    background: #fff;
    padding: 16px;
}
.widget-title {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    letter-spacing: -.3px;
}
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rank-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: start;
}
.rank-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}
.demo-banner {
    background: linear-gradient(135deg, #0a5bd8, #15a2ff);
    color: #fff;
    height: 250px;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 800;
}
.thumb-list.compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.thumb-list-link {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
}
.thumb.tiny {
    width: 86px;
    height: 64px;
    overflow: hidden;
    background: #efefef;
}
.thumb-copy strong {
    display: block;
    font-size: 14px;
    line-height: 1.45;
}

.basic-archive .archive-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.archive-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.archive-link {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
}
.archive-thumb {
    aspect-ratio: 16/9;
    background: #efefef;
    overflow: hidden;
}
.archive-copy h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: -1px;
}

.site-footer {
    margin-top: 42px;
    background: var(--footer);
    color: #d6d6d6;
    padding: 24px 0 36px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
}
.footer-copy {
    padding-top: 16px;
    font-size: 12px;
    color: #aaa;
}
.footer-copy p { margin: 6px 0; }

.screen-reader-text {
    position: absolute;
    clip: rect(1px,1px,1px,1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
    .section-feature { grid-template-columns: 1fr; }
    .archive-link { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .branding-inner { grid-template-columns: 1fr; gap: 14px; }
    .branding-spacer, .header-actions { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card-lg { min-height: 360px; }
}

@media (max-width: 640px) {
    .container { width: min(var(--container), calc(100% - 20px)); }
    .topbar-inner,
    .top-menu,
    .topbar-right,
    .primary-menu { gap: 10px; }
    .primary-menu { justify-content: flex-start; overflow-x: auto; white-space: nowrap; padding: 0 0 6px; }
    .hero-side-grid { grid-template-columns: 1fr; }
    .hero-card-sm { min-height: 180px; }
    .hero-card-lg h2 { font-size: 24px; }
    .feature-copy h3,
    .archive-copy h3 { font-size: 20px; }
    .list-post-link,
    .thumb-list-link { grid-template-columns: 96px 1fr; }
    .list-thumb { width: 96px; height: 72px; }
}

.single-post-box {
    border: 1px solid var(--border);
    padding: 24px;
    background: #fff;
}
.single-title {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -1.4px;
}
.single-meta { margin-bottom: 18px; }
.single-thumb {
    margin-bottom: 22px;
    overflow: hidden;
    background: #efefef;
}
.single-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.single-content {
    font-size: 17px;
    line-height: 1.85;
    color: #222;
}
.single-content p { margin: 0 0 1.2em; }
.single-content img { margin: 1.2em auto; }
@media (max-width: 640px) {
    .single-post-box { padding: 16px; }
    .single-title { font-size: 28px; }
}


/* ----- 1.1 layout fixes ----- */
body.home .site-main,
body.blog .site-main,
body.archive .site-main,
body.single .site-main {
    max-width: none;
}

.top-links .menu,
.mainnav .menu,
.top-links ul,
.mainnav ul {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-links .menu li,
.mainnav .menu li,
.top-links ul li,
.mainnav ul li {
    list-style: none;
}

.mainnav .menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    min-height: 48px;
}

.widget-box ul,
.widget-box ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    line-height: 1.5;
}

.widget-box li:last-child {
    border-bottom: 0;
}

.sidebar .wp-block-group,
.sidebar .widget {
    margin: 0;
}

.hero-grid > .empty-state {
    grid-column: 1 / -1;
}

.empty-state {
    padding: 40px 24px;
    border: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    background: #fafafa;
}

.feature-post,
.section-list {
    min-width: 0;
}

.hero-card .hero-thumb:empty,
.feature-thumb:empty,
.list-thumb:empty,
.archive-thumb:empty,
.thumb.tiny:empty {
    background: linear-gradient(135deg, #e9e9e9, #d9d9d9);
    min-height: 100%;
}

.feature-thumb:empty { min-height: 280px; }
.list-thumb:empty { min-height: 78px; }
.thumb.tiny:empty { min-height: 64px; }
.archive-thumb:empty { min-height: 180px; }

.sidebar .widget_recent_entries ul li a,
.sidebar .widget_categories ul li a,
.sidebar .widget_archive ul li a,
.sidebar .widget_meta ul li a,
.sidebar .widget_recent_comments ul li a {
    color: #222;
}

.sidebar .widget_recent_entries ul li,
.sidebar .widget_categories ul li,
.sidebar .widget_archive ul li,
.sidebar .widget_meta ul li,
.sidebar .widget_recent_comments ul li {
    display: block;
}

.site-brand img {
    max-width: 100%;
}

.topbar-right a:hover,
.footer-links a:hover,
.widget-box a:hover,
.list-copy h4:hover,
.archive-copy h3:hover,
.feature-copy h3:hover {
    color: var(--accent);
}

@media (min-width: 1200px) {
    :root {
        --container: 1120px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-side-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-feature {
        grid-template-columns: 1fr;
    }
    .hero-side-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }
    .hero-grid {
        gap: 8px;
    }
    .hero-side-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .content-grid {
        gap: 16px;
    }
    .section-heading h2 {
        font-size: 18px;
    }
}

/* ===== article page redesign inspired by original newsroom layout ===== */
.article-page-wrap {
    padding-top: 18px;
}

.article-view-page {
    max-width: 1080px;
    margin: 0 auto;
}

.custom-article-header {
    margin-bottom: 22px;
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #777;
}

.article-breadcrumbs a:hover { color: var(--accent); }
.article-breadcrumbs .sep { color: #bbb; }

.article-title-xl {
    margin: 0;
    font-size: 38px;
    line-height: 1.34;
    letter-spacing: -1.7px;
    word-break: keep-all;
}

.article-meta-bar {
    margin-top: 18px;
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.article-meta-left,
.article-meta-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip {
    font-size: 13px;
    color: #666;
}

.tool-btn {
    height: 34px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.tool-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.custom-article-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 364px;
    gap: 64px;
    align-items: start;
}

.article-main-grid,
.body-grid {
    min-width: 0;
}

.article-side-grid,
.side-grid {
    min-width: 0;
}

.article-sticky-sidebar {
    position: sticky;
    top: 18px;
}

.article-subheading {
    margin: 0 0 26px;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -1px;
    word-break: keep-all;
}

.article-featured-figure {
    margin: 0 0 28px;
    text-align: center;
}

.article-featured-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.article-featured-figure figcaption,
.article-content-body figcaption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

.article-content-body {
    font-size: 20px;
    line-height: 1.95;
    color: #222;
    word-break: keep-all;
}

.article-content-body > *:first-child { margin-top: 0; }
.article-content-body p {
    margin: 0 0 1.45em;
}

.article-content-body h2,
.article-content-body h3 {
    margin: 2.1em 0 0.9em;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: -1px;
    font-weight: 800;
}

.article-content-body h4 {
    margin: 1.8em 0 0.8em;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.8px;
}

.article-content-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.article-content-body figure {
    margin: 24px auto 28px;
    text-align: center;
}

.article-content-body ul,
.article-content-body ol {
    margin: 0 0 1.4em 1.4em;
    padding: 0;
}

.article-content-body blockquote {
    margin: 1.6em 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: #faf7f7;
    color: #333;
}

.article-content-body #tem-type-2 h2,
.article-content-body .section-title-box {
    margin-top: 2.1em;
}

.article-content-body #tem-type-2 h2 {
    padding-left: 14px;
    border-left: 5px solid var(--accent);
}

.article-content-body .adsbygoogle,
.article-content-body .ad-template {
    margin: 28px auto;
}

.article-copyline {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: #666;
    font-size: 13px;
}

.article-author-box {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f11d29;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
}

.author-copy strong {
    display: block;
    font-size: 17px;
}

.author-copy p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}

.author-more {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
}

.author-more:hover { color: var(--accent); }

.box-skin-like,
.article-widget {
    border: 1px solid var(--border);
    background: #fff;
}

.box-title-row {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 20px;
}

.related-list {
    list-style: none;
    margin: 0;
    padding: 8px 16px 14px;
}

.related-list li {
    border-bottom: 1px solid #f0f0f0;
}

.related-list li:last-child { border-bottom: 0; }
.related-list a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
}
.related-list a:hover { color: var(--accent); }

.article-widget .widget-title {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 24px;
    letter-spacing: -1px;
}

.article-widget .widget-title .accent {
    color: var(--accent);
}

.article-rank-list,
.article-latest-list {
    list-style: none;
    margin: 0;
    padding: 0 16px 12px;
}

.article-rank-list li {
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
}
.article-rank-list li:last-child { border-bottom: 0; }

.article-rank-list li a {
    display: grid;
    grid-template-columns: 26px 1fr 90px;
    gap: 12px;
    align-items: start;
}

.article-rank-list .num {
    font-size: 22px;
    font-weight: 800;
    color: #666;
    line-height: 1;
}
.article-rank-list .num.top { color: var(--accent); }

.article-rank-list .title {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.4px;
}

.article-rank-list .thumb {
    width: 90px;
    height: 60px;
    overflow: hidden;
    background: #eee;
}

.article-rank-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-latest-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}
.article-latest-list li:last-child { border-bottom: 0; }
.article-latest-list a {
    font-size: 14px;
    line-height: 1.6;
}
.article-latest-list a:hover,
.article-rank-list a:hover .title {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .custom-article-content-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 36px;
    }
    .article-title-xl {
        font-size: 34px;
    }
    .article-content-body {
        font-size: 19px;
    }
}

@media (max-width: 1024px) {
    .custom-article-content-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .article-sticky-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .article-title-xl {
        font-size: 28px;
    }
    .article-subheading {
        font-size: 22px;
    }
    .article-meta-bar,
    .article-author-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-content-body {
        font-size: 17px;
        line-height: 1.85;
    }
    .article-content-body h2,
    .article-content-body h3 {
        font-size: 23px;
    }
    .article-rank-list li a {
        grid-template-columns: 24px 1fr 76px;
    }
    .article-rank-list .thumb {
        width: 76px;
        height: 54px;
    }
}

/* ===== noteconomy refinements ===== */
.site-shell {
    overflow-x: clip;
}

.site-main.container {
    padding-bottom: 10px;
}

.mainnav > div,
.mainnav > ul,
.top-links > div,
.top-links > ul {
    width: 100%;
}

.top-links .menu,
.top-links .menu > ul,
.mainnav .menu,
.mainnav .menu > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mainnav .menu,
.mainnav .menu > ul {
    justify-content: center;
    min-height: 48px;
}

.primary-menu li,
.mainnav .menu li,
.top-links .menu li {
    list-style: none;
}

.topbar-right,
.footer-links,
.meta-row,
.article-meta-left,
.article-meta-right {
    word-break: keep-all;
}

.hero-card,
.feature-thumb,
.list-thumb,
.archive-thumb,
.thumb,
.article-rank-list .thumb {
    border-radius: 2px;
}

.feature-copy h3,
.archive-copy h3,
.list-copy h4,
.article-rank-list .title,
.article-latest-list a,
.related-list a {
    transition: color .18s ease;
}

.widget-title .accent {
    color: var(--accent);
}

.pagination-wrap {
    margin-top: 22px;
    padding-top: 6px;
}

.pagination-wrap .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-wrap .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 13px;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.article-share-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.share-link {
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
}

.share-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.article-content-body .wp-caption,
.article-content-body .wp-block-image,
.article-content-body figure {
    max-width: 100%;
}

.article-content-body .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.article-content-body .alignleft {
    float: left;
    margin: 0 24px 18px 0;
}

.article-content-body .alignright {
    float: right;
    margin: 0 0 18px 24px;
}

.article-content-body table th,
.article-content-body table td {
    border: 1px solid #ececec;
    padding: 10px 12px;
    font-size: 16px;
}

.article-content-body iframe,
.article-content-body video {
    width: 100%;
    border: 0;
}

.article-content-body::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 820px) {
    .article-content-body .alignleft,
    .article-content-body .alignright {
        float: none;
        margin: 24px auto;
    }
}
