/*
Theme Name: Themefy News Grid
Theme URI: https://example.com/
Author: Themefy
Author URI: https://example.com/
Description: A responsive editorial news theme with sticky header, category mosaics, story grids, article pages, archive templates and tabbed popular content.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: themefy-news-grid
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: news, magazine, blog, custom-logo, custom-menu, featured-images, sticky-post, threaded-comments
*/

:root {
    --tng-accent: #0798ee;
    --tng-logo-width: 235px;
    --tng-header-position: sticky;
    --tng-black: #080808;
    --tng-text: #111;
    --tng-muted: #777;
    --tng-border: #dedede;
    --tng-shell: 1180px;
    --tng-head: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
    --tng-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--tng-text);
    font-family: var(--tng-body);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--tng-accent); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
    background: #fff; clip: auto !important; clip-path: none; color: #111;
    display: block; font-size: 14px; height: auto; left: 6px; padding: 12px 18px;
    top: 6px; width: auto; z-index: 100000;
}
.tng-shell { width: min(calc(100% - 32px), var(--tng-shell)); margin-inline: auto; }

/* Header */
.tng-site-header {
    position: var(--tng-header-position);
    top: 0;
    z-index: 9990;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
    backdrop-filter: saturate(160%) blur(8px);
}
.admin-bar .tng-site-header { top: 32px; }
.tng-header-main {
    min-height: 76px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 12px;
}
.tng-brand { justify-self: center; max-width: var(--tng-logo-width); }
.tng-brand .custom-logo-link { display: block; }
.tng-brand .custom-logo { width: min(var(--tng-logo-width), 100%); max-height: 56px; object-fit: contain; }
.tng-text-logo {
    display: inline-block;
    font-family: var(--tng-head);
    font-weight: 900;
    font-stretch: condensed;
    font-size: clamp(25px, 3vw, 38px);
    letter-spacing: -1.8px;
    text-transform: uppercase;
    line-height: 1;
}
.tng-icon-button {
    width: 40px; height: 40px; border: 0; background: transparent; padding: 9px;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: #111;
}
.tng-icon-button svg { width: 22px; height: 22px; stroke: currentColor; }
.tng-menu-button { justify-self: start; }
.tng-search-button { justify-self: end; }
.tng-primary-nav {
    border-top: 1px solid #ececec;
    min-height: 43px;
}
.tng-primary-nav > .tng-shell { min-height: 43px; display: flex; justify-content: center; }
.tng-menu,
.tng-menu ul { list-style: none; margin: 0; padding: 0; }
.tng-menu { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.tng-menu > li { position: relative; }
.tng-menu > li > a {
    min-height: 43px; display: flex; align-items: center; padding: 0 14px;
    font-family: var(--tng-head); font-size: 12px; font-weight: 800; letter-spacing: .35px; text-transform: uppercase;
}
.tng-menu > li.current-menu-item > a,
.tng-menu > li.current-category-ancestor > a,
.tng-menu > li > a:hover { color: var(--tng-accent); }
.tng-menu .sub-menu {
    position: absolute; left: 0; top: 100%; width: 320px; background: #fff;
    border-top: 3px solid var(--tng-accent); box-shadow: 0 12px 32px rgba(0,0,0,.16);
    padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: .18s ease; z-index: 20;
}
.tng-menu li:hover > .sub-menu,
.tng-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.tng-menu .sub-menu a {
    display: block; padding: 9px 15px; border-bottom: 1px solid #f0f0f0;
    font-size: 13px; line-height: 1.35; font-weight: 700;
}
.tng-menu .sub-menu li:last-child a { border-bottom: 0; }

.tng-drawer,
.tng-search-panel {
    position: fixed; inset: 0 auto 0 0; width: min(390px, 92vw); background: #fff;
    z-index: 10010; transform: translateX(-105%); transition: transform .25s ease;
    overflow-y: auto; box-shadow: 8px 0 30px rgba(0,0,0,.22);
}
.tng-drawer.is-open { transform: none; }
.tng-search-panel { inset: 0 0 auto 0; width: 100%; height: auto; transform: translateY(-110%); }
.tng-search-panel.is-open { transform: none; }
.tng-panel-head {
    min-height: 74px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #e7e7e7;
}
.tng-panel-head strong { font-family: var(--tng-head); font-size: 18px; text-transform: uppercase; }
.tng-panel-close { border: 0; background: none; font-size: 32px; line-height: 1; cursor: pointer; }
.tng-drawer-nav { padding: 8px 18px 28px; }
.tng-drawer .tng-menu { display: block; }
.tng-drawer .tng-menu > li { border-bottom: 1px solid #ededed; }
.tng-drawer .tng-menu > li > a { min-height: 46px; padding: 0; justify-content: space-between; }
.tng-drawer .sub-menu { position: static; width: auto; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 12px; }
.tng-drawer .sub-menu a { padding: 7px 0; border-bottom: 0; font-size: 12px; font-weight: 600; }
.tng-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.56); z-index: 10000;
    opacity: 0; visibility: hidden; transition: .2s ease;
}
.tng-overlay.is-open { opacity: 1; visibility: visible; }
.tng-search-inner { width: min(calc(100% - 32px), 760px); margin: 0 auto; padding: 26px 0 34px; }
.tng-search-form { display: flex; border-bottom: 2px solid #111; }
.tng-search-form input { flex: 1; border: 0; padding: 14px 4px; font-size: 22px; outline: 0; }
.tng-search-form button { border: 0; background: transparent; font-weight: 800; cursor: pointer; }

/* Generic image treatment */
.tng-no-image { display: block; width: 100%; height: 100%; min-height: 90px; background: #050505; }
.tng-image-wrap { overflow: hidden; background: #050505; }
.tng-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
a:hover .tng-image-wrap img,
.tng-card:hover img { transform: scale(1.025); }

/* Homepage */
.tng-home { padding: 26px 0 0; }
.tng-top-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 22px;
    margin-bottom: 38px;
}
.tng-top-card .tng-image-wrap { aspect-ratio: 16 / 9; }
.tng-top-card h2 {
    font-family: var(--tng-head); font-size: clamp(17px, 2vw, 24px); line-height: 1.05;
    letter-spacing: -.25px; margin: 7px 0 0; font-weight: 900;
}
.tng-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 8px; color: #8a8a8a; font-size: 10px; text-transform: uppercase; letter-spacing: .55px; font-weight: 700; }
.tng-meta a { color: var(--tng-accent); }
.tng-meta span:not(:first-child)::before { content: "•"; margin-right: 7px; color: #bbb; }
.tng-meta--compact { margin-top: 0; font-size: 9px; }

.tng-section { margin-bottom: 44px; }
.tng-section-heading {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
    margin: 0 0 16px;
}
.tng-section-heading::before,
.tng-section-heading::after { content: ""; height: 2px; background: #222; }
.tng-section-heading h2 {
    margin: 0; padding: 4px 12px 3px; background: var(--tng-accent); color: #fff;
    transform: skew(-8deg); font-family: var(--tng-head); font-size: 13px; line-height: 1;
    letter-spacing: .6px; text-transform: uppercase; font-weight: 900; box-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.tng-section-heading h2 span { display: block; transform: skew(8deg); }

.tng-mosaic {
    display: grid; grid-template-columns: minmax(0, 2fr) minmax(180px, .9fr); gap: 16px;
    min-height: 440px;
}
.tng-hero-card,
.tng-side-card { position: relative; overflow: hidden; background: #050505; min-height: 0; }
.tng-hero-card .tng-image-wrap,
.tng-side-card .tng-image-wrap { position: absolute; inset: 0; }
.tng-hero-card::after,
.tng-side-card::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.92)); pointer-events: none; }
.tng-hero-copy,
.tng-side-copy { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.tng-hero-copy h3 { margin: 6px 0 6px; font-family: var(--tng-head); font-size: clamp(28px, 4vw, 51px); line-height: .98; letter-spacing: -1.3px; font-weight: 900; }
.tng-hero-copy p { max-width: 760px; margin: 0; color: rgba(255,255,255,.88); font-size: 13px; }
.tng-side-column { display: grid; grid-template-rows: repeat(2, minmax(0,1fr)); gap: 16px; }
.tng-side-copy { left: 13px; right: 13px; bottom: 12px; }
.tng-side-copy h3 { margin: 4px 0 0; font-family: var(--tng-head); font-size: clamp(17px, 2vw, 23px); line-height: 1; font-weight: 900; }
.tng-side-copy .tng-meta { color: #ccc; }

.tng-small-list { margin-top: 17px; display: grid; gap: 10px; }
.tng-small-item { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 12px; align-items: center; }
.tng-small-thumb { display: block; width: 72px; height: 54px; background: #050505; overflow: hidden; }
.tng-small-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tng-small-item h3 { margin: 2px 0 0; font-family: var(--tng-head); font-size: 15px; line-height: 1.08; font-weight: 900; }
.tng-more-link { display: table; margin: 18px auto 0; color: var(--tng-accent); font-family: var(--tng-head); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }

.tng-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 22px; }
.tng-grid-card .tng-image-wrap { aspect-ratio: 16 / 9; }
.tng-grid-card h3 { font-family: var(--tng-head); font-size: 20px; line-height: 1.04; margin: 6px 0 0; font-weight: 900; }

.tng-more-news { display: grid; gap: 20px; }
.tng-more-item { display: grid; grid-template-columns: 34% minmax(0,1fr); gap: 18px; padding-bottom: 18px; border-bottom: 1px solid #e5e5e5; }
.tng-more-item .tng-image-wrap { aspect-ratio: 16 / 9; }
.tng-more-item h3 { margin: 3px 0 5px; font-family: var(--tng-head); font-size: clamp(22px, 2.7vw, 34px); line-height: 1; letter-spacing: -.45px; font-weight: 900; }
.tng-more-item p { margin: 0; color: #606060; font-size: 13px; }
.tng-more-button {
    display: block; width: min(100%, 620px); margin: 25px auto 0; padding: 10px 20px;
    border: 1px solid #333; text-align: center; font-family: var(--tng-head); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 1px;
}
.tng-more-button:hover { background: #111; color: #fff; }

.tng-tabs { margin: 45px 0 0; border-top: 1px solid #e3e3e3; padding-top: 18px; }
.tng-tab-buttons { display: flex; justify-content: center; gap: 22px; margin-bottom: 20px; }
.tng-tab-button { border: 0; background: transparent; padding: 4px 0; cursor: pointer; color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: .8px; font-weight: 800; }
.tng-tab-button.is-active { color: var(--tng-accent); border-bottom: 2px solid var(--tng-accent); }
.tng-tab-panel[hidden] { display: none !important; }
.tng-tab-list { display: grid; gap: 10px; }
.tng-tab-item { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 12px; align-items: center; }
.tng-tab-thumb { display: block; width: 72px; height: 55px; background: #050505; overflow: hidden; }
.tng-tab-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tng-tab-meta { color: #999; font-size: 9px; text-transform: uppercase; letter-spacing: .5px; }
.tng-tab-item h3 { margin: 2px 0 0; font-family: var(--tng-head); font-size: 14px; line-height: 1.08; font-weight: 900; }

/* Archive, search, page and single */
.tng-content-shell { width: min(calc(100% - 32px), var(--tng-shell)); margin: 34px auto 60px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 42px; }
.tng-page-header { margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid #111; }
.tng-page-header .tng-kicker { color: var(--tng-accent); font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: 1px; }
.tng-page-title { margin: 4px 0 0; font-family: var(--tng-head); font-size: clamp(34px, 5vw, 62px); line-height: .98; letter-spacing: -1.4px; font-weight: 900; }
.tng-archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 22px; }
.tng-archive-card .tng-image-wrap { aspect-ratio: 16/10; }
.tng-archive-card h2 { margin: 6px 0 5px; font-family: var(--tng-head); font-size: 24px; line-height: 1.02; font-weight: 900; }
.tng-archive-card p { margin: 0; color: #666; font-size: 13px; }
.navigation.pagination { margin-top: 34px; }
.nav-links { display: flex; gap: 7px; flex-wrap: wrap; }
.page-numbers { min-width: 34px; height: 34px; padding: 0 9px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #d8d8d8; font-size: 12px; font-weight: 800; }
.page-numbers.current,
.page-numbers:hover { background: var(--tng-accent); border-color: var(--tng-accent); color: #fff; }

.tng-article-header { margin-bottom: 22px; }
.tng-article-header .tng-meta { margin-top: 12px; }
.tng-article-title { margin: 8px 0 0; font-family: var(--tng-head); font-size: clamp(38px, 6vw, 72px); line-height: .96; letter-spacing: -1.8px; font-weight: 900; }
.tng-featured-image { margin: 20px 0 26px; background: #050505; }
.tng-featured-image img { width: 100%; height: auto; }
.tng-share { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; }
.tng-share a { padding: 7px 12px; background: #111; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.tng-share a:hover { background: var(--tng-accent); }
.entry-content { font-family: Georgia, "Times New Roman", serif; font-size: 18px; line-height: 1.78; }
.entry-content > * { max-width: 100%; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { font-family: var(--tng-head); line-height: 1.08; margin-top: 1.5em; }
.entry-content h2 { font-size: 34px; }
.entry-content h3 { font-size: 26px; }
.entry-content a { color: var(--tng-accent); text-decoration: underline; }
.entry-content img { height: auto; }
.entry-content blockquote { margin: 28px 0; padding: 18px 22px; border-left: 4px solid var(--tng-accent); background: #f5f5f5; font-size: 20px; }
.tng-post-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.tng-post-tags a { border: 1px solid #ddd; padding: 5px 9px; font-size: 11px; text-transform: uppercase; }
.tng-author-box { display: grid; grid-template-columns: 70px 1fr; gap: 16px; margin-top: 34px; padding: 22px; background: #f4f4f4; }
.tng-author-box img { border-radius: 50%; }
.tng-author-box h3 { margin: 0; font-family: var(--tng-head); font-size: 22px; }
.tng-author-box p { margin: 5px 0 0; color: #666; }
.tng-related { margin-top: 40px; }
.tng-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.tng-related-card .tng-image-wrap { aspect-ratio: 16/10; }
.tng-related-card h3 { margin: 5px 0 0; font-family: var(--tng-head); font-size: 17px; line-height: 1.04; }
.tng-post-nav { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tng-post-nav a { padding: 15px; border: 1px solid #ddd; font-family: var(--tng-head); font-weight: 900; line-height: 1.1; }
.tng-post-nav .nav-next { text-align: right; }

.tng-sidebar { min-width: 0; }
.widget { margin-bottom: 30px; }
.widget-title { margin: 0 0 14px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; font-family: var(--tng-head); font-size: 15px; text-transform: uppercase; }
.widget-title::after { content: ""; height: 2px; background: #111; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid #ececec; font-size: 13px; font-weight: 700; }
.widget img { height: auto; }
.tng-sidebar-tabs { border-top: 2px solid #111; padding-top: 12px; }

/* Page and comments */
.tng-page-article .entry-content { font-size: 17px; }
.comments-area { margin-top: 42px; }
.comments-title, .comment-reply-title { font-family: var(--tng-head); }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-body { padding: 18px 0; border-bottom: 1px solid #e4e4e4; }
.comment-meta { font-size: 12px; color: #777; }
.comment-content { margin-top: 8px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; border: 1px solid #ddd; padding: 12px; }
.comment-form .submit { border: 0; background: #111; color: #fff; padding: 11px 18px; cursor: pointer; font-weight: 800; }

/* Footer */
.tng-footer { background: #0a0a0a; color: #fff; margin-top: 60px; }
.tng-footer-main { padding: 44px 0 30px; text-align: center; }
.tng-footer-brand { display: inline-block; max-width: min(360px, 85vw); }
.tng-footer-brand .custom-logo { max-width: 100%; max-height: 72px; width: auto; filter: none; }
.tng-footer-brand .tng-text-logo { color: #fff; border: 4px solid var(--tng-accent); padding: 3px 7px 2px; box-shadow: inset 0 0 0 2px #111; }
.tng-footer-description { width: min(680px, 100%); margin: 16px auto 0; color: #aaa; font-size: 12px; }
.tng-social-links { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.tng-social-links a { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #292929; color: #fff; font-weight: 900; }
.tng-footer-menu { margin-top: 18px; }
.tng-footer-menu ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin: 0; padding: 0; }
.tng-footer-menu a { color: #ccc; font-size: 11px; text-transform: uppercase; letter-spacing: .7px; }
.tng-footer-widgets { width: min(calc(100% - 32px), var(--tng-shell)); margin: 0 auto; padding-bottom: 28px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; text-align: left; }
.tng-footer .widget-title::after { background: #444; }
.tng-footer .widget li { border-color: #242424; }
.tng-footer-bottom { border-top: 1px solid #222; padding: 15px 0; text-align: center; color: #777; font-size: 10px; }

@media (max-width: 980px) {
    .tng-primary-nav { display: none; }
    .tng-content-shell { grid-template-columns: 1fr; }
    .tng-sidebar { border-top: 1px solid #ddd; padding-top: 28px; }
    .tng-mosaic { min-height: 390px; }
}

@media (max-width: 782px) {
    .admin-bar .tng-site-header { top: 46px; }
}

@media (max-width: 720px) {
    .tng-shell { width: min(calc(100% - 20px), var(--tng-shell)); }
    .tng-home { padding-top: 14px; }
    .tng-header-main { min-height: 58px; grid-template-columns: 36px 1fr 36px; }
    .tng-icon-button { width: 34px; height: 34px; padding: 7px; }
    .tng-brand .custom-logo { max-height: 42px; }
    .tng-text-logo { font-size: 25px; }
    .tng-top-grid { gap: 12px 10px; margin-bottom: 28px; }
    .tng-top-card h2 { font-size: 15px; }
    .tng-top-card .tng-meta { font-size: 8px; gap: 4px; }
    .tng-section { margin-bottom: 34px; }
    .tng-section-heading { margin-bottom: 10px; gap: 7px; }
    .tng-section-heading h2 { font-size: 10px; padding: 4px 9px 3px; }
    .tng-mosaic { grid-template-columns: minmax(0, 1.9fr) minmax(104px, .85fr); gap: 8px; min-height: 330px; }
    .tng-side-column { gap: 8px; }
    .tng-hero-copy { left: 12px; right: 12px; bottom: 10px; }
    .tng-hero-copy h3 { font-size: clamp(25px, 7vw, 38px); }
    .tng-hero-copy p { display: none; }
    .tng-side-copy { left: 8px; right: 8px; bottom: 7px; }
    .tng-side-copy h3 { font-size: 14px; }
    .tng-side-card .tng-meta span { display: none; }
    .tng-small-item { grid-template-columns: 54px 1fr; gap: 9px; }
    .tng-small-thumb { width: 54px; height: 42px; }
    .tng-small-item h3 { font-size: 12px; }
    .tng-story-grid { gap: 14px 10px; }
    .tng-grid-card h3 { font-size: 15px; }
    .tng-grid-card .tng-meta { font-size: 8px; }
    .tng-more-item { grid-template-columns: 36% 1fr; gap: 11px; padding-bottom: 12px; }
    .tng-more-item h3 { font-size: 19px; }
    .tng-more-item p { font-size: 11px; line-height: 1.4; }
    .tng-content-shell { width: min(calc(100% - 20px), var(--tng-shell)); margin-top: 22px; gap: 28px; }
    .tng-archive-grid { gap: 18px 10px; }
    .tng-archive-card h2 { font-size: 18px; }
    .tng-archive-card p { display: none; }
    .tng-article-title { font-size: 42px; }
    .entry-content { font-size: 17px; }
    .tng-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .tng-footer-widgets { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
    .tng-mosaic { min-height: 270px; }
    .tng-hero-copy h3 { font-size: 27px; }
    .tng-side-copy h3 { font-size: 12px; }
    .tng-more-item h3 { font-size: 16px; }
    .tng-more-item p { display: none; }
    .tng-article-title { font-size: 36px; }
    .tng-page-title { font-size: 38px; }
    .entry-content h2 { font-size: 28px; }
    .entry-content h3 { font-size: 23px; }
}
