/*
Theme Name: 檑声的创作笔记
Theme URI: https://example.com/
Author: 檑声
Author URI: https://example.com/
Description: 檑声的创作笔记 - 一个温暖优雅的个人博客主题，专注于 AI、媒体与商业思维的深度内容。采用编辑杂志风格设计，搭配衬线大标题与温暖米色配色。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leisheng
Tags: blog, one-column, two-columns, three-columns, custom-header, custom-menu, featured-images, threaded-comments, translation-ready, editor-style
*/

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --bg: #FDFBF7;
  --bg2: #F5F0E8;
  --ink: #1A1A1A;
  --muted: #7A7A7A;
  --rule: #E0DBD0;
  --accent: #1A1A1A;
  --accent2: #8B7355;
  --cream: #FDFBF7;
  --dark: #1A1A1A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
}

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent2);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-branding {
  flex-shrink: 0;
}

.site-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  margin: 0;
}

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

.site-description {
  display: none;
}

/* Primary Menu */
.primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, background-color 0.2s;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}

.primary-menu a:hover {
  color: var(--ink);
  background-color: var(--bg2);
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: #fff;
  background-color: var(--ink);
}

.nav-cta {
  background: var(--dark);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-size: 0.75rem !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent2) !important;
  color: #fff !important;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-icons a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: var(--accent2);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--ink);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   CATEGORY NAV
   ========================================= */
.category-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-label {
  font-family: 'Italiana', Georgia, serif;
  font-size: 1.3rem;
  color: var(--muted);
  margin-right: 0.5rem;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.4rem 1rem;
  border: 1px solid var(--rule);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Instrument Sans', sans-serif;
  border-radius: 2px;
}

.category-tab:hover,
.category-tab.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* =========================================
   FEATURED POST
   ========================================= */
.featured-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.featured-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 90px;
  height: 90px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.featured-content {
  padding-right: 1rem;
}

.featured-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.featured-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.featured-title a {
  color: var(--ink);
  text-decoration: none;
}

.featured-title a:hover {
  color: var(--accent2);
}

.featured-excerpt {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* =========================================
   BLOG GRID
   ========================================= */
.blog-grid-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  position: relative;
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.blog-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.blog-card-category a {
  color: var(--accent2);
  text-decoration: none;
}

.blog-card-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent2);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.read-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.read-more:hover {
  color: var(--accent2);
}

/* =========================================
   PAGINATION
   ========================================= */
.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}

.pagination .page-numbers:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.pagination .page-numbers.current {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter {
  background: var(--bg2);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--rule);
  background: #fff;
  font-size: 0.85rem;
  font-family: 'Instrument Sans', sans-serif;
  outline: none;
  border-radius: 2px;
}

.newsletter-form input:focus {
  border-color: var(--dark);
}

.newsletter-form button {
  padding: 0.7rem 1.5rem;
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  font-family: 'Instrument Sans', sans-serif;
}

.newsletter-form button:hover {
  background: var(--accent2);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

/* =========================================
   SINGLE POST
   ========================================= */
.single-post-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.single-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.single-post-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem 3rem;
}

.single-post-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.single-post-category a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.single-post-category a:hover {
  color: #fff;
}

.single-post-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.single-post-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.single-post-meta span {
  margin: 0 0.5rem;
}

.post-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content blockquote {
  border-left: 3px solid var(--accent2);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.15rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--accent2);
  text-decoration: underline;
}

.post-content img {
  border-radius: 4px;
  margin: 1.5rem 0;
}

.post-content .wp-caption {
  margin: 1.5rem 0;
}

.post-content .wp-caption-text {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Post tags */
.post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.post-tags a {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  margin: 0.25rem;
  background: var(--bg2);
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}

.post-tags a:hover {
  background: var(--dark);
  color: #fff;
}

/* Post navigation */
.post-navigation {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  min-width: 200px;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.post-navigation .nav-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent2);
  margin-bottom: 0.25rem;
}

.post-navigation .nav-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}

.post-navigation a:hover .nav-title {
  color: var(--accent2);
}

/* =========================================
   ARCHIVE / CATEGORY
   ========================================= */
.archive-header {
  background: var(--bg2);
  padding: 4rem 2rem;
  text-align: center;
}

.archive-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.archive-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.75rem;
}

.archive-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.archive-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   PAGE
   ========================================= */
.page-content-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.page-content {
  font-size: 1rem;
  line-height: 1.8;
}

.page-content p {
  margin-bottom: 1.25rem;
}

/* =========================================
   COMMENTS
   ========================================= */
.comments-area {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--rule);
}

.comments-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.comment-list {
  list-style: none;
  margin-bottom: 2rem;
}

.comment-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.comment-list li:last-child {
  border-bottom: none;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comment-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-author .fn {
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
}

.comment-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.comment-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.comment-reply-link {
  font-size: 0.75rem;
  color: var(--accent2);
  text-decoration: none;
}

.comment-reply-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.comment-form p {
  margin-bottom: 1rem;
}

.comment-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: 'Instrument Sans', sans-serif;
  outline: none;
  background: #fff;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--dark);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit input {
  padding: 0.7rem 1.5rem;
  background: var(--dark);
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  font-family: 'Instrument Sans', sans-serif;
}

.form-submit input:hover {
  background: var(--accent2);
}

/* =========================================
   404 PAGE
   ========================================= */
.error-404 {
  text-align: center;
  padding: 6rem 2rem;
}

.error-404 .error-code {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404 h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* =========================================
   WORDPRESS CORE
   ========================================= */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
}

.sticky {
  position: relative;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .primary-menu {
    gap: 1rem;
    flex-wrap: wrap;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu {
    display: none;
  }

  .primary-menu.toggled {
    display: flex;
  }

  .hero {
    height: 360px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    max-width: 300px;
  }

  .featured-post {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-image-wrap img {
    height: 280px;
  }

  .featured-title {
    font-size: 1.6rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .category-nav {
    justify-content: center;
  }

  .single-post-title {
    font-size: 2rem;
  }

  .single-post-hero {
    height: 320px;
  }

  .post-content-wrap {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 1rem;
  }

  .hero {
    height: 280px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .featured-section,
  .blog-grid-section {
    padding: 0 1rem 2rem;
  }

  .archive-title {
    font-size: 1.8rem;
  }

  .post-content-wrap {
    padding: 1.5rem 1rem;
  }
}
