/*
Theme Name: TopNotch Blog
Theme URI: https://example.com/topnotch-blog
Author: Professional Theme Developer
Author URI: https://example.com
Description: A clean, modern, and SEO-optimized WordPress blog theme with exceptional performance and user experience.
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: topnotch-blog
Tags: blog, one-column, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks

TopNotch Blog WordPress Theme, Copyright 2025 Professional Theme Developer
TopNotch Blog is distributed under the terms of the GNU GPL
*/

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.5em;
    font-size: 1.0625rem;
    line-height: 1.8;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover,
a:focus {
    color: #1d4ed8;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-branding {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.site-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
}

.site-title a {
    color: #0a0a0a;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.2s ease;
}

.site-title a:hover,
.site-title a:focus {
    opacity: 0.8;
}

.site-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0.75rem 0 0;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    background-color: transparent;
    border-top: 1px solid #e5e7eb;
    border-bottom: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.menu-toggle:hover {
    background-color: #f3f4f6;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a {
    color: #2563eb;
    background-color: #eff6ff;
}

.primary-menu .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Main Content */
.site-main {
    padding: 3rem 0;
    min-height: 60vh;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.blog-post-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb;
}

.post-thumbnail {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.post-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.entry-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.3;
}

.entry-title a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-title a:hover,
.entry-title a:focus {
    color: #2563eb;
}

.entry-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.entry-meta a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.entry-meta a:hover {
    color: #2563eb;
}

.entry-content {
    flex-grow: 1;
}

.entry-content p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.75;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.read-more::after {
    content: '→';
    transition: transform 0.2s ease;
}

.read-more:hover,
.read-more:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    margin: 0;
    background-color: #ffffff;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-numbers:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.page-numbers.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.page-numbers.dots {
    border: none;
    background: transparent;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-widget-area {
    padding: 0;
}

.footer-widget-area .widget-title {
    color: #ffffff;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
}

.footer-widget-area ul li {
    margin-bottom: 0.75rem;
}

.footer-widget-area ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-widget-area ul li a:hover,
.footer-widget-area ul li a:focus {
    color: #ffffff;
    padding-left: 0.5rem;
}

.site-info {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.875rem;
}

.copyright {
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0 0.75rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Comments Section */
.comments-area {
    margin-top: 4rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comments-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: #0a0a0a;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-body {
    padding: 1.75rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.comment-body:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.comment-author {
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid #667eea;
}

.comment-metadata {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: #6b7280;
    text-decoration: none;
}

.comment-metadata a:hover {
    color: #2563eb;
}

.comment-content {
    line-height: 1.8;
    color: #374151;
}

.reply {
    margin-top: 1rem;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* Comment Form */
.comment-respond {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.comment-reply-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin: 0;
}

.comment-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1a1a1a;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-submit {
    margin: 0;
}

.comment-form input[type="submit"],
.form-submit .submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.comment-form input[type="submit"]:hover,
.form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.search-form label {
    flex: 1;
    margin: 0;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-form input[type="submit"] {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Widget Styling */
.widget {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667eea;
    color: #0a0a0a;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget ul li a:hover {
    color: #2563eb;
    padding-left: 0.5rem;
}

.widget ul li a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.2s ease;
}

.widget ul li a:hover::before {
    opacity: 1;
}

/* Single Post Styling */
.single-post {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.single-post .entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.single-post .entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-post .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: #6b7280;
}

.single-post .entry-meta > span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post .post-thumbnail {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.single-post .entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
}

.single-post .entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    font-style: italic;
    color: #4b5563;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post .entry-content li {
    margin-bottom: 0.75rem;
}

.single-post .entry-content code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e91e63;
}

.single-post .entry-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 2rem 0;
}

.single-post .entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.single-post .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.post-tags a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #374151;
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: #0a0a0a;
    font-size: 1.125rem;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    text-align: center;
}

.page-title {
    color: #ffffff;
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
}

.archive-description {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.no-results h2 {
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.no-results p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .site-branding {
        padding: 1.5rem 0 1rem;
    }
    
    .site-main {
        padding: 2rem 0;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .main-navigation.toggled .primary-menu {
        display: flex;
    }
    
    .primary-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .primary-menu li {
        width: 100%;
    }
    
    .primary-menu a {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .primary-menu .current-menu-item > a::after {
        display: none;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-widget-area {
        padding: 0;
    }
    
    .comments-area {
        padding: 1.5rem;
    }
    
    .comment-respond {
        padding: 1.5rem;
    }
    
    .single-post {
        padding: 2rem 1.5rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .post-content {
        padding: 1.25rem;
    }
    
    .post-thumbnail {
        height: 200px;
    }
    
    .read-more {
        width: 100%;
        justify-content: center;
    }
}