/*
Theme Name: Shelly
Theme URI: https://shelleythody.com
Author: Shelley Thody
Author URI: https://shelleythody.com
Description: A beautiful, elegant WordPress theme designed for Christian author Shelley Thody. Fully compatible with Elementor page builder for complete visual editing control.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shelly
Tags: elementor, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, blog

Shelly - Elementor WordPress Theme for Christian Author Shelley Thody
*/

/* ===== CSS Custom Properties ===== */
:root {
    --background: #faf8f5;
    --foreground: #3d3228;
    --card: #f5f0ea;
    --card-foreground: #3d3228;
    --primary: #b8860b;
    --primary-foreground: #faf8f5;
    --secondary: #d6e4f0;
    --secondary-foreground: #3d566b;
    --muted: #ede8e1;
    --muted-foreground: #7e7167;
    --accent: #c9952e;
    --accent-foreground: #faf8f5;
    --border: #ddd5ca;
    --gold: #c9952e;
    --gold-light: #d4b87a;
    --gold-dark: #cfaa4e;
    --calm-blue: #7ba3c9;
    --calm-blue-light: #d6e4f0;
    --warm-cream: #faf8f5;
    --warm-cream-dark: #ede8e1;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 0.5rem;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--foreground);
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1em;
    line-height: 1.625;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
}

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	--tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    background: #faf8f5cc;
	    --tw-backdrop-blur: blur(12px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    border-bottom-color: #e7e1da80;
	
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--primary);
}
.shelly-about-book-desc {
	font-size: 18px;
}
/* Custom Logo Image */
.custom-logo-link img {
    max-height: 50px;
    width: auto;
}

/* ===== Navigation ===== */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation .menu li a {
    font-size: 14px;
    font-weight: 400;
    color: #7e7167;
    text-decoration: none;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
    position: relative;
}
.main-navigation .menu li a:hover{
	color: var(--primary)
}


/* Mobile Navigation Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.menu-toggle .hamburger::before {
    top: -7px;
}

.menu-toggle .hamburger::after {
    top: 7px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
	gap:8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--gold-dark);
	color: var(--primary-foreground);
}

.btn-outline {
    font-weight: 500;
	border: 1px solid;
    background: transparent;
    color: var(--foreground);
    border-color: #b8860b63;
}
.btn-outline:hover {
    background: #ececec;
}

/* ===== Text Gradient Gold ===== */
.text-gradient-gold {
    background: linear-gradient(135deg, #d1a347, #96732c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Alternate Background ===== */
.bg-section-alt {
    background-color: var(--warm-cream-dark);
}

/* ===== Shadow Gold ===== */
.shadow-gold {
    box-shadow: 0 4px 20px -4px rgba(209, 163, 71, 0.3);
}

/* ===== Cards ===== */
.book-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(209, 163, 71, 0.2);
}

.book-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.book-card-content {
    padding: 1.5rem;
}

.book-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.book-card-content p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== Testimonial ===== */
.testimonial-card {
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold-light);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ===== Footer ===== */
.site-footer {
    background: #f6f4ee;
    padding: 3rem 0 1.5rem;
	border-top: 1px solid #e7e1da;
    text-align: center;
}

.site-footer .footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.site-footer .footer-copyright {
    font-size: 0.75rem;
	color: #7e7167;
    margin-bottom: 0.5rem;
}

.site-footer .footer-disclaimer {
    font-size: 0.75rem;
	color: #7e7167;
}

/* ===== Elementor Overrides ===== */
.elementor-page .site-main {
    padding: 0;
}

/* Ensure Elementor sections are full width */
.elementor-section.elementor-section-full_width {
    max-width: 100%;
}

/* Elementor responsive typography override */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-display);
}

.elementor-widget-text-editor {
    font-family: var(--font-body);
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.3em;
}

.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

.italic {
    font-style: italic;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .main-navigation .menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
		display:none;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-navigation.is-active {
        right: 0;
		display:flex;
    }

    .main-navigation .menu {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .main-navigation .menu li a {
        font-size: 1.1rem;
    }

    .header-inner {
        padding: 0.75rem 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ===== WordPress Specific ===== */
.wp-block-image img {
    border-radius: var(--radius);
}

.wp-block-quote {
    font-family: var(--font-display);
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Page content padding for header */
body:not(.elementor-page) .site-content {
    padding-top: 80px;
}

/* Elementor pages - no top padding since Elementor handles layout */
.elementor-page .site-content {
    padding-top: 0;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    z-index: 100000;
    font-size: 1rem;
}





/* ===== Single Blog Post ===== */
.single-post .site-main {
    padding: 0;
}

.single-post .entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.single-post .entry-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.single-post .entry-meta {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.single-post .entry-meta time {
    color: var(--muted-foreground);
}

.single-post .entry-meta .byline {
    color: var(--primary);
    font-weight: 600;
}

/* Featured Image */
.single-post .entry-thumbnail {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.single-post .entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Post Content */
.single-post .entry-content {
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--foreground);
}

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

.single-post .entry-content h2 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--foreground);
    margin: 2.5rem 0 1rem;
}

.single-post .entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--foreground);
    margin: 2rem 0 0.75rem;
}

.single-post .entry-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.75rem 0 0.5rem;
}

.single-post .entry-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(184, 134, 11, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.single-post .entry-content a:hover {
    text-decoration-color: var(--primary);
}

.single-post .entry-content blockquote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--foreground);
    border-left: 3px solid var(--gold-light);
    padding: 1rem 0 1rem 1.75rem;
    margin: 2rem 0;
    line-height: 1.6;
    background: var(--warm-cream-dark);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem 1.5rem 1.75rem;
}

.single-post .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

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

.single-post .entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.single-post .entry-content li::marker {
    color: var(--primary);
}

.single-post .entry-content img {
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.single-post .entry-content figure {
    margin: 2rem 0;
}

.single-post .entry-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-top: 0.5rem;
}

.single-post .entry-content pre {
    background: var(--foreground);
    color: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 2rem 0;
}

.single-post .entry-content code {
    background: var(--warm-cream-dark);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

.single-post .entry-content pre code {
    background: none;
    padding: 0;
}

.single-post .entry-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem auto;
    max-width: 120px;
}

/* Entry Footer — Categories & Tags */
.single-post .entry-footer {
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.single-post .entry-footer .cat-links,
.single-post .entry-footer .tags-links {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.single-post .entry-footer .cat-links a,
.single-post .entry-footer .tags-links a {
    background: var(--warm-cream-dark);
    color: var(--primary);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.single-post .entry-footer .cat-links a:hover,
.single-post .entry-footer .tags-links a:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Post Navigation */
.post-navigation {
    margin: 3rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    display: flex;
    flex-direction: column;
}

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

.post-navigation .nav-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.35rem;
}

.post-navigation .nav-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--foreground);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-navigation a {
    text-decoration: none;
}

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

/* ===== Comments Section ===== */
.comments-area {
    margin: 3rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.comments-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.comment-author .fn {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.95rem;
}

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

.comment-metadata a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary);
}

.comment-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--foreground);
}

.reply a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reply a:hover {
    color: var(--gold-dark);
}

/* Comment Form */
.comment-respond .comment-reply-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.comment-form label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--foreground);
    display: block;
    margin-bottom: 0.35rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--foreground);
    background: var(--warm-cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(201, 149, 46, 0.1);
}

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

.comment-form .form-submit .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .form-submit .submit:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

/* ===== Blog Listing / Archive — Post Cards ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--card);
    border-radius: 8px;
    border-top: 3px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(209, 163, 71, 0.15);
}

.post-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 1.75rem;
}

.post-card .entry-header {
    margin-bottom: 0.75rem;
}

.post-card .entry-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--foreground);
    margin-bottom: 0.4rem;
}

.post-card .entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card .entry-title a:hover {
    color: var(--primary);
}

.post-card .entry-meta {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.post-card .entry-summary {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.post-card .entry-summary p {
    margin-bottom: 0;
}

.post-card .read-more {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.post-card .read-more:hover {
    color: var(--gold-dark);
    gap: 0.5rem;
}

/* Posts Navigation (pagination) */
.posts-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.posts-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.posts-navigation .nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.posts-navigation .nav-links a:hover {
    color: var(--gold-dark);
}

/* ===== Page Header for Archives ===== */
.page-header {
    text-align: center;
    padding-bottom: 0;
}

.page-header .page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--foreground);
}

.page-header .archive-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ===== Single Post Responsive ===== */
@media (max-width: 768px) {
    .single-post .entry-thumbnail {
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .single-post .entry-content {
        font-size: 1rem;
    }

    .single-post .entry-content blockquote {
        font-size: 1.1rem;
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    }

    .single-post .entry-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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