/*
Theme Name: Aceh Today
Theme URI: https://acehtoday.id
Author: Aceh Today Editorial
Author URI: https://acehtoday.id
Description: Tema berita bisnis & ekonomi bergaya editorial internasional untuk Aceh Today. Layout bersih, tipografi serif untuk judul, struktur artikel berbasis data dan analisis, dengan tampilan homepage multi-kolom per kategori.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acehtoday
Tags: news, business, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, grid-layout, two-columns
*/

/* ==========================================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
    /* Colors — white / grey / blue accent */
    --color-bg: #ffffff;
    --color-bg-alt: #f5f6f7;
    --color-border: #e2e4e7;
    --color-border-strong: #cfd3d8;
    --color-text: #1a1d21;
    --color-text-muted: #5b6169;
    --color-text-faint: #8a8f97;
    --color-accent: #1a4fa0;
    --color-accent-dark: #123a78;
    --color-accent-light: #eef3fb;
    --color-tag-bg: #eef3fb;

    /* Typography */
    --font-headline: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-meta: "Source Sans Pro", sans-serif;

    /* Layout */
    --max-width: 1200px;
    --gutter: 28px;
    --radius: 2px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5em;
    color: var(--color-text);
}

p { margin: 0 0 1.2em; }

ul, ol { padding-left: 1.4em; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

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

/* ==========================================================================
   3. TOP UTILITY BAR
   ========================================================================== */

.top-bar {
    background: var(--color-accent-dark);
    color: #d8e3f5;
    font-size: 12.5px;
    letter-spacing: 0.02em;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
}

.top-bar .top-date { text-transform: uppercase; letter-spacing: 0.06em; }

.top-bar a { color: #d8e3f5; }
.top-bar a:hover { color: #ffffff; }

.top-bar .top-links { display: flex; gap: 18px; }

/* ==========================================================================
   4. SITE HEADER
   ========================================================================== */

.site-header {
    border-bottom: 1px solid var(--color-border-strong);
    background: var(--color-bg);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.site-branding { display: flex; flex-direction: column; }

.site-title {
    font-family: var(--font-headline);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0;
}

.site-title a { color: var(--color-text); }
.site-title a:hover { text-decoration: none; color: var(--color-accent); }

.site-description {
    font-family: var(--font-meta);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-faint);
    margin-top: 4px;
}

.header-search-form { display: flex; align-items: center; }
.header-search-form input[type="search"] {
    border: 1px solid var(--color-border-strong);
    border-right: none;
    padding: 9px 12px;
    font-size: 14px;
    font-family: var(--font-body);
    width: 220px;
    background: var(--color-bg-alt);
}
.header-search-form button {
    border: 1px solid var(--color-border-strong);
    background: var(--color-text);
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
    font-size: 14px;
}
.header-search-form button:hover { background: var(--color-accent); }

/* ==========================================================================
   5. PRIMARY NAVIGATION
   ========================================================================== */

.main-navigation {
    background: var(--color-text);
    border-top: 3px solid var(--color-accent);
}

.main-navigation .container { display: flex; }

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.main-navigation li { position: relative; }

.main-navigation a {
    display: block;
    padding: 13px 16px;
    color: #f2f3f4;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: var(--color-text);
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* ==========================================================================
   6. HERO / FEATURED SECTION
   ========================================================================== */

.hero-section {
    padding: 36px 0;
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--gutter);
}

.hero-main { position: relative; }

.hero-main .post-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9.5;
    object-fit: cover;
}

.hero-main .eyebrow { margin-top: 18px; }

.hero-main .entry-title {
    font-size: 34px;
    margin: 10px 0 12px;
}

.hero-main .entry-title a { color: var(--color-text); }
.hero-main .entry-title a:hover { color: var(--color-accent); text-decoration: none; }

.hero-main .entry-excerpt {
    font-size: 16.5px;
    color: var(--color-text-muted);
}

.hero-side { display: flex; flex-direction: column; gap: 18px; }

.hero-side-item {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}
.hero-side-item:last-child { border-bottom: none; padding-bottom: 0; }

.hero-side-item .post-thumbnail {
    flex: 0 0 108px;
    width: 108px;
    height: 78px;
    overflow: hidden;
}
.hero-side-item .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.hero-side-item .entry-title { font-size: 15.5px; margin: 0 0 6px; line-height: 1.35; }
.hero-side-item .entry-title a { color: var(--color-text); }

/* ==========================================================================
   7. TYPOGRAPHY HELPERS — eyebrow / meta / tag
   ========================================================================== */

.eyebrow {
    display: inline-block;
    font-family: var(--font-meta);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    background: var(--color-tag-bg);
    padding: 3px 8px;
    border-radius: var(--radius);
}

.entry-meta {
    font-family: var(--font-meta);
    font-size: 12.5px;
    color: var(--color-text-faint);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.entry-meta a { color: var(--color-text-faint); }
.entry-meta .sep { color: var(--color-border-strong); }

/* ==========================================================================
   8. MULTI-COLUMN CATEGORY SECTIONS (Homepage)
   ========================================================================== */

.category-sections { padding: 8px 0 20px; }

/* ==========================================================================
   8b. TRENDING TOPICS SECTION
   ========================================================================== */

.trending-section { padding: 34px 0; border-bottom: 1px solid var(--color-border); }

.section-heading {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

.trending-card .trending-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--color-bg-alt);
}
.trending-card .trending-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trending-card .trending-thumb .trending-label {
    position: absolute;
    left: 0; bottom: 0;
    background: rgba(26,29,33,.82);
    color: #fff;
    font-family: var(--font-meta);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    border-top: 2px solid var(--color-accent);
}

.trending-card ul { list-style: none; margin: 0; padding: 0; }
.trending-card li {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 0;
    border-top: 1px solid var(--color-border);
}
.trending-card li:first-child { border-top: none; padding-top: 0; }
.trending-card li a { color: var(--color-text); }
.trending-card li a:hover { color: var(--color-accent); text-decoration: none; }

/* ==========================================================================
   8c. NEWS BY LOCATION SECTION
   ========================================================================== */

.location-section { padding: 34px 0; border-bottom: 1px solid var(--color-border); }

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
}

.location-card .location-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--color-bg-alt);
}
.location-card .location-thumb img { width: 100%; height: 100%; object-fit: cover; }
.location-card .location-label {
    position: absolute;
    left: 0; top: 0;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-meta);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 5px 10px;
}

.location-card .location-title {
    font-size: 15.5px;
    line-height: 1.35;
    margin: 0 0 8px;
}
.location-card .location-title a { color: var(--color-text); }
.location-card .location-title a:hover { color: var(--color-accent); text-decoration: none; }

.location-card .location-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    padding-top: 8px;
    border-top: 1px solid var(--color-border);
}
.location-card .location-sub a { color: var(--color-text-muted); }
.location-card .location-sub a:hover { color: var(--color-accent); }

/* ==========================================================================
   8d. EDITOR'S PICKS SECTION
   ========================================================================== */

.editors-picks-section { padding: 34px 0; border-bottom: 1px solid var(--color-border); }

.editors-picks-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text);
}
.editors-picks-header h2 { font-size: 20px; text-transform: uppercase; letter-spacing: 0.03em; margin: 0; }
.editors-picks-header .view-all { font-family: var(--font-meta); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent); }

.editors-picks-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gutter);
}

.editors-feature {
    position: relative;
    display: block;
    background: var(--color-accent-dark);
    color: #fff;
    min-height: 300px;
    overflow: hidden;
}
.editors-feature img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; position: absolute; inset: 0; }
.editors-feature .editors-feature-content { position: relative; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 300px; }
.editors-feature .eyebrow { background: rgba(255,255,255,.15); color: #fff; }
.editors-feature .entry-title { color: #fff; font-size: 26px; margin: 12px 0 8px; }
.editors-feature .entry-title a { color: #fff; }
.editors-feature .entry-excerpt { color: #dce6f7; font-size: 14.5px; }

.editors-side-list { display: flex; flex-direction: column; }
.editors-side-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.editors-side-item:first-child { padding-top: 0; }
.editors-side-item:last-child { border-bottom: none; }
.editors-side-item .thumb { flex: 0 0 90px; width: 90px; height: 66px; overflow: hidden; }
.editors-side-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.editors-side-item .entry-title { font-size: 14px; margin: 0; line-height: 1.35; }
.editors-side-item .entry-title a { color: var(--color-text); }

/* ==========================================================================
   8e. WE RECOMMEND / READ NEXT (single article footer)
   ========================================================================== */

.recommend-section { margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--color-text); }
.recommend-section .section-heading { font-size: 17px; }
.recommend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.recommend-card .thumb { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 10px; background: var(--color-bg-alt); }
.recommend-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recommend-card p { font-size: 13.5px; line-height: 1.4; margin: 0; }
.recommend-card a { color: var(--color-text); }
.recommend-card a:hover { color: var(--color-accent); text-decoration: none; }

.read-next-section { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.read-next-item { display: flex; gap: 18px; align-items: center; }
.read-next-item .thumb { flex: 0 0 160px; width: 160px; height: 110px; overflow: hidden; }
.read-next-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.read-next-item .entry-title { font-size: 19px; margin: 6px 0; }
.read-next-item .entry-title a { color: var(--color-text); }

/* ==========================================================================
   8f. SIDEBAR — LATEST HEADLINES WIDGET
   ========================================================================== */

.widget_latest_headlines ul { list-style: none; margin: 0; padding: 0; }
.widget_latest_headlines li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}
.widget_latest_headlines li:first-child { padding-top: 0; }
.widget_latest_headlines li:last-child { border-bottom: none; }
.widget_latest_headlines .entry-title { font-size: 14px; line-height: 1.4; margin: 0 0 4px; }
.widget_latest_headlines .entry-title a { color: var(--color-text); }
.widget_latest_headlines .entry-title a:hover { color: var(--color-accent); text-decoration: none; }
.widget_latest_headlines .entry-meta { font-size: 11.5px; color: var(--color-text-faint); }

.category-block {
    padding: 34px 0;
    border-bottom: 1px solid var(--color-border);
}

.category-block-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 10px;
}

.category-block-header h2 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.category-block-header h2 a { color: var(--color-text); }
.category-block-header h2 a:hover { color: var(--color-accent); text-decoration: none; }

.category-block-header .view-all {
    font-family: var(--font-meta);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    white-space: nowrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

.category-card .post-thumbnail {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--color-bg-alt);
}
.category-card .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-card:hover .post-thumbnail img { transform: scale(1.04); }

.category-card .entry-title {
    font-size: 17px;
    margin: 0 0 6px;
    line-height: 1.35;
}
.category-card .entry-title a { color: var(--color-text); }
.category-card .entry-title a:hover { color: var(--color-accent); text-decoration: none; }

.category-card .entry-excerpt {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.category-card--list {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--color-border);
}
.category-card--list:first-child { border-top: none; padding-top: 0; }
.category-card--list .post-thumbnail {
    flex: 0 0 92px; width: 92px; height: 68px; margin-bottom: 0;
}
.category-card--list .entry-title { font-size: 14.5px; }

/* ==========================================================================
   9. MAIN CONTENT LAYOUT (single/archive)
   ========================================================================== */

.site-main-wrap { padding: 36px 0 50px; }

.content-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 44px;
}

.breadcrumbs {
    font-family: var(--font-meta);
    font-size: 12.5px;
    color: var(--color-text-faint);
    margin-bottom: 18px;
}
.breadcrumbs a { color: var(--color-text-faint); }

/* Archive / category listing */
.archive-header { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--color-text); }
.archive-header .page-title { font-size: 30px; margin-bottom: 6px; }
.archive-header .archive-description { color: var(--color-text-muted); font-size: 15px; }

.post-list-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--color-border);
}
.post-list-item .post-thumbnail { aspect-ratio: 4/3; overflow: hidden; }
.post-list-item .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.post-list-item .entry-title { font-size: 21px; margin: 8px 0 8px; }
.post-list-item .entry-title a { color: var(--color-text); }
.post-list-item .entry-excerpt { color: var(--color-text-muted); font-size: 15px; }

.pagination {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    font-family: var(--font-meta);
    font-size: 13.5px;
}
.pagination a, .pagination span {
    padding: 8px 13px;
    border: 1px solid var(--color-border-strong);
    color: var(--color-text);
}
.pagination .current { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.pagination a:hover { border-color: var(--color-accent); color: var(--color-accent); text-decoration: none; }

/* ==========================================================================
   10. SINGLE ARTICLE
   ========================================================================== */

.single-article .entry-header { margin-bottom: 22px; }
.single-article .entry-title { font-size: 38px; margin: 12px 0 14px; }
.single-article .entry-summary {
    font-size: 18px;
    color: var(--color-text-muted);
    font-style: italic;
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
    margin: 0 0 18px;
}

.single-article .entry-meta { font-size: 13px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); }

.single-article .post-thumbnail { margin-bottom: 22px; }
.single-article .post-thumbnail figcaption {
    font-family: var(--font-meta);
    font-size: 12.5px;
    color: var(--color-text-faint);
    padding-top: 8px;
}

.entry-content { font-size: 17.5px; line-height: 1.75; color: #232629; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content h2 { font-size: 25px; margin-top: 1.6em; }
.entry-content h3 { font-size: 21px; margin-top: 1.4em; }
.entry-content blockquote {
    margin: 1.8em 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--color-accent);
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 18.5px;
}
.entry-content img { margin: 0.6em 0; }
.entry-content a { text-decoration: underline; }
.entry-content ul, .entry-content ol { margin-bottom: 1.4em; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 15px; }
.entry-content table th, .entry-content table td { border: 1px solid var(--color-border); padding: 8px 10px; text-align: left; }
.entry-content table th { background: var(--color-bg-alt); }

.entry-tags {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.entry-tags a {
    font-family: var(--font-meta);
    font-size: 12.5px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    padding: 5px 11px;
    border-radius: 12px;
}
.entry-tags a:hover { background: var(--color-accent); color: #fff; text-decoration: none; }

.author-box {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    padding: 20px;
    background: var(--color-bg-alt);
    align-items: center;
}
.author-box img { border-radius: 50%; width: 56px; height: 56px; }
.author-box .author-name { font-weight: 700; margin-bottom: 3px; }
.author-box .author-bio { font-size: 13.5px; color: var(--color-text-muted); }

/* ==========================================================================
   11. SIDEBAR / WIDGETS
   ========================================================================== */

.widget { margin-bottom: 36px; }
.widget-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-text);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }

.widget_popular_posts .popular-post-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.widget_popular_posts .popular-post-item:last-child { border-bottom: none; }
.widget_popular_posts .rank {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-border-strong);
    line-height: 1;
}
.widget_popular_posts .entry-title { font-size: 13.5px; margin: 0; line-height: 1.4; }
.widget_popular_posts .entry-title a { color: var(--color-text); }

.newsletter-widget {
    background: var(--color-accent);
    color: #fff;
    padding: 22px;
}
.newsletter-widget .widget-title { color: #fff; border-color: rgba(255,255,255,.35); }
.newsletter-widget p { font-size: 13.5px; color: #dce6f7; }
.newsletter-widget input[type="email"] {
    width: 100%;
    padding: 10px;
    border: none;
    margin-bottom: 10px;
    font-size: 14px;
}
.newsletter-widget button {
    width: 100%;
    padding: 10px;
    background: var(--color-text);
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.newsletter-widget button:hover { background: #000; }

/* ==========================================================================
   12. COMMENTS
   ========================================================================== */

.comments-area { margin-top: 44px; padding-top: 26px; border-top: 2px solid var(--color-text); }
.comments-title { font-size: 22px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--color-border); }
.comment-author { font-weight: 700; font-size: 14px; }
.comment-meta { font-size: 12px; color: var(--color-text-faint); margin-bottom: 8px; }
.comment-content p { font-size: 14.5px; margin-bottom: 0.8em; }
.comment-reply-link { font-size: 12.5px; font-weight: 700; text-transform: uppercase; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--color-border-strong);
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 14px;
    background: var(--color-bg-alt);
}
.comment-form textarea { min-height: 130px; }
.comment-form .form-submit input {
    width: auto;
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 11px 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
}
.comment-form .form-submit input:hover { background: var(--color-accent-dark); }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.site-footer {
    background: var(--color-text);
    color: #c7cbd1;
    margin-top: 40px;
}

.footer-widgets {
    padding: 44px 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
    border-bottom: 1px solid #33373d;
}

.footer-widgets .widget-title { color: #fff; border-color: #33373d; }
.footer-widgets a { color: #c7cbd1; }
.footer-widgets a:hover { color: #fff; }
.footer-widgets .widget ul li { border-color: #33373d; }

.site-footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-nav ul { list-style: none; display: flex; gap: 16px; padding: 0; margin: 0; }
.footer-nav a { color: #9aa0a8; }
.footer-nav a:hover { color: #fff; }

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #454a52;
    color: #c7cbd1;
    border-radius: 50%;
    font-size: 13px;
}
.social-links a:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* ==========================================================================
   14. UTILITIES
   ========================================================================== */

.alignwide { max-width: 1000px; }
.alignfull { width: 100%; max-width: none; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.has-text-align-center { text-align: center; }

.button, .wp-block-button__link {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 10px 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.03em;
}
.button:hover, .wp-block-button__link:hover { background: var(--color-accent-dark); color: #fff; text-decoration: none; }

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
    .content-layout { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .trending-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
    .editors-picks-layout { grid-template-columns: 1fr; }
    .recommend-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .site-header-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .header-search-form input[type="search"] { width: 100%; }
    .header-search-form { width: 100%; }

    .menu-toggle { display: block; width: 100%; text-align: left; }
    .main-navigation ul { display: none; flex-direction: column; width: 100%; }
    .main-navigation ul.is-open { display: flex; }
    .main-navigation .container { flex-direction: column; }

    .category-grid { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; padding: 30px 0; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; }

    .post-list-item { grid-template-columns: 1fr; }
    .single-article .entry-title { font-size: 28px; }
    .site-title { font-size: 26px; }
    .trending-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .recommend-grid { grid-template-columns: 1fr; }
    .read-next-item { flex-direction: column; align-items: flex-start; }
    .read-next-item .thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
}
