/*
Theme Name: Citilization
Theme URI: https://citilization.com
Author: Citilization
Author URI: https://citilization.com
Description: A clean, editorial WordPress theme inspired by Monocle — built for urban journalism. Features a hero + article grid homepage, serif headlines, and newspaper-style layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: citilization
Tags: blog, news, magazine, editorial, clean, minimal
*/

/* ============================================================
   GOOGLE FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #555555;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: #111111;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; }

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  border-left: 3px solid #111;
  padding-left: 24px;
  margin: 2rem 0;
  color: #333;
}

/* ============================================================
   LAYOUT
============================================================ */
.site {
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-full {
  width: 100%;
}

/* ============================================================
   TOP UTILITY BAR
============================================================ */
.site-topbar {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.site-topbar a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.site-topbar a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  border-bottom: 2px solid #111111;
  background: #ffffff;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px 0;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.site-header-meta {
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
  font-style: italic;
  min-width: 200px;
}

.site-branding {
  text-align: center;
  flex: 1;
}

.site-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #111111;
  line-height: 1;
}

.site-title a {
  color: #111111;
  text-decoration: none;
}

.site-title a:hover {
  color: #111111;
}

.site-description {
  font-size: 11px;
  color: #888888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  justify-content: flex-end;
}

.btn-subscribe {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-subscribe:hover {
  background: #333333;
  color: #ffffff;
}

.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  color: #111111;
  font-size: 18px;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  border-top: 1px solid #111111;
  border-bottom: none;
}

.site-nav .nav-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-menu li {
  border-right: 1px solid #dddddd;
}

.site-nav .nav-menu li:last-child {
  border-right: none;
  margin-left: auto;
}

.site-nav .nav-menu a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  padding: 12px 16px;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}

.site-nav .nav-menu a:hover,
.site-nav .nav-menu .current-menu-item a {
  background: #f5f5f5;
  color: #111111;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 12px 16px;
  color: #111111;
}

/* ============================================================
   DATE BAR
============================================================ */
.site-datebar {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

.site-datebar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   TICKER
============================================================ */
.site-ticker {
  background: #111111;
  color: #ffffff;
  padding: 10px 0;
  overflow: hidden;
}

.site-ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.25);
  padding-right: 20px;
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-items {
  display: flex;
  gap: 40px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-items span {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  flex-shrink: 0;
}

.ticker-items span::before {
  content: '· ';
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  border-bottom: 2px solid #111111;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
}

.hero-image {
  overflow: hidden;
  background: #e0e0e0;
  min-height: 480px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.hero-image img:hover {
  opacity: 0.92;
}

.hero-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(180deg, #d5d5d5 0%, #c0c0c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  padding: 40px;
  border-left: 2px solid #111111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 2px solid #111111;
  padding-bottom: 2px;
  margin-bottom: 18px;
  text-decoration: none;
}

.hero-tag:hover {
  color: #555555;
  border-color: #555555;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: #111111;
  margin-bottom: 18px;
}

.hero-title a {
  color: #111111;
  text-decoration: none;
}

.hero-title a:hover {
  color: #444444;
}

.hero-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 28px;
}

.hero-read-more {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: 28px;
}

.hero-read-more:hover {
  color: #555555;
  border-color: #555555;
}

.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px solid #e0e0e0;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header {
  border-bottom: 1px solid #111111;
  border-top: none;
}

.section-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111111;
}

.section-view-all {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s;
}

.section-view-all:hover {
  color: #111111;
}

/* ============================================================
   ARTICLE GRID
============================================================ */
.articles-grid {
  border-bottom: 2px solid #111111;
}

.articles-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  border-right: 1px solid #e0e0e0;
  padding: 28px;
  transition: background 0.15s;
  cursor: pointer;
}

.article-card:last-child {
  border-right: none;
}

.article-card:hover {
  background: #fafafa;
}

.article-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #e0e0e0;
  margin-bottom: 18px;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.article-card:hover .article-card-image img {
  opacity: 0.88;
}

.article-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 1px;
  margin-bottom: 10px;
  text-decoration: none;
}

.article-card-tag:hover {
  color: #555555;
  border-color: #555555;
}

.article-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #111111;
}

.article-card-title a {
  color: #111111;
  text-decoration: none;
}

.article-card-title a:hover {
  color: #444444;
}

.article-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 14px;
}

.article-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============================================================
   SINGLE POST
============================================================ */
.single-post-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.single-post-content {
  min-width: 0;
}

.single-post-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 2px solid #111111;
  padding-bottom: 2px;
  margin-bottom: 16px;
  text-decoration: none;
}

.single-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #111111;
  margin-bottom: 20px;
}

.single-post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
}

.single-post-featured-image {
  width: 100%;
  margin-bottom: 36px;
}

.single-post-featured-image img {
  width: 100%;
  height: auto;
}

.single-post-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #222222;
}

.single-post-body p {
  margin-bottom: 1.5rem;
}

.single-post-body h2 {
  font-size: 28px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.single-post-body h3 {
  font-size: 22px;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

/* Sidebar */
.single-post-sidebar {
  border-left: 1px solid #e0e0e0;
  padding-left: 40px;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.sidebar-widget-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 2px solid #111111;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.sidebar-post {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.sidebar-post:last-child {
  border-bottom: none;
}

.sidebar-post-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 6px;
  display: block;
}

.sidebar-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}

.sidebar-post-title a {
  color: #111111;
  text-decoration: none;
}

.sidebar-post-title a:hover {
  color: #444444;
}

/* ============================================================
   BLOG / ARCHIVE PAGE
============================================================ */
.archive-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
}

.archive-posts {
  min-width: 0;
}

.archive-post-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 28px;
  margin-bottom: 28px;
  align-items: start;
}

.archive-post-thumb {
  width: 200px;
  height: 130px;
  overflow: hidden;
  background: #e0e0e0;
  flex-shrink: 0;
}

.archive-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.archive-post-thumb:hover img {
  opacity: 0.88;
}

.archive-post-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 1px;
  margin-bottom: 8px;
  text-decoration: none;
}

.archive-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #111111;
}

.archive-post-title a {
  color: #111111;
  text-decoration: none;
}

.archive-post-title a:hover { color: #444444; }

.archive-post-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 10px;
}

.archive-post-meta {
  font-size: 11px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  font-size: 13px;
  color: #111111;
  text-decoration: none;
  transition: background 0.15s;
}

.pagination a:hover,
.pagination .current {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  border-top: 2px solid #111111;
  background: #ffffff;
}

.site-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111111;
  border-bottom: 1px solid #111111;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111111;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  border-right: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  color: #111111;
}

.footer-newsletter-input::placeholder {
  color: #aaaaaa;
}

.footer-newsletter-btn {
  padding: 10px 16px;
  background: #111111;
  color: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.footer-newsletter-btn:hover {
  background: #333333;
}

.site-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 12px;
  color: #888888;
  letter-spacing: 0.3px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #111111;
}

/* ============================================================
   SEARCH FORM
============================================================ */
.search-form-wrap {
  display: none;
  background: #111111;
  padding: 20px 40px;
}

.search-form-wrap.is-open {
  display: block;
}

.search-form-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 18px;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
}

.search-submit {
  padding: 14px 24px;
  background: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border-left: 1px solid #e0e0e0;
  color: #111111;
}

/* ============================================================
   CATEGORY PAGE HEADER
============================================================ */
.category-header {
  border-bottom: 2px solid #111111;
  background: #111111;
  color: #ffffff;
}

.category-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
}

.category-header-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.category-header-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
}

.category-header-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   UTILITIES
============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-muted { color: #888888; }
.text-upper { text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .site-header-inner { padding: 20px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { border-left: none; border-top: 2px solid #111111; }
  .hero-image { min-height: 300px; }
  .articles-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .article-card:nth-child(2) { border-right: none; }
  .article-card:nth-child(3) { border-right: none; border-top: 1px solid #e0e0e0; }
  .single-post-wrap { grid-template-columns: 1fr; }
  .single-post-sidebar { border-left: none; border-top: 1px solid #e0e0e0; padding-left: 0; padding-top: 40px; }
  .archive-wrap { grid-template-columns: 1fr; }
  .site-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-title { font-size: 36px; }
  .site-header-top { flex-direction: column; gap: 16px; text-align: center; }
  .site-header-meta { min-width: auto; }
  .site-header-actions { min-width: auto; }
  .site-nav .nav-menu { display: none; flex-direction: column; }
  .site-nav .nav-menu.is-open { display: flex; }
  .site-nav .nav-menu li { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .nav-toggle { display: block; }
  .articles-grid-inner { grid-template-columns: 1fr; }
  .article-card { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .archive-post-item { grid-template-columns: 1fr; }
  .archive-post-thumb { width: 100%; height: 200px; }
  .single-post-title { font-size: 32px; }
  .site-footer-main { grid-template-columns: 1fr; }
  .site-datebar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .site-header-inner { padding: 16px 20px 0; }
  .section-header-inner,
  .site-datebar-inner,
  .site-ticker-inner { padding-left: 20px; padding-right: 20px; }
  .single-post-wrap,
  .archive-wrap { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .site-title { font-size: 28px; letter-spacing: -0.5px; }
  .hero-title { font-size: 24px; }
  .hero-content { padding: 24px 20px; }
  .article-card { padding: 20px; }
}

.page .single-post-wrap {
    grid-template-columns: 1fr;
}

.page .single-post-sidebar {
    display: none;
}