/*
Theme Name: Brainy Lemons Guides
Description: A beautiful, responsive WordPress theme for Brainy Lemons guides section with modern design and optimized user experience.
Version: 1.0
Author: Brainy Lemons
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- CSS Variables --- */
:root {
    /* Brainy Lemons Brand Colors */
    --primary: #ffd500;
    --primary-dark: #e6b400;
    --secondary: #ff9a00;
    --accent: #5ce3ba;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #f9f9f9;
    --bg-dark: #222222;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-small: 8px;
    --transition: all 0.3s ease;
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    
    /* Layout */
    --container-max-width: 1000px;
    --content-max-width: 800px;
    --sidebar-width: 300px;
    --header-height: 80px;
}

.wp-block-heading {

    font-size: 19pt;

}


/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: var(--font-size-h1); font-weight: 700; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4 { font-size: var(--font-size-h4); font-weight: 500; }

p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    background: var(--bg-white);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
    font-style: italic;
}

code {
    background: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--radius-small);
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* --- Layout Components --- */
.container {

    max-width: 1152px !important;
    margin: 0 auto;
    padding: 0 1rem;

}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 20px;
    margin-top: 2rem;
}

.main-content {
    min-width: 0; /* Prevents grid blowout */
}

.sidebar {
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* --- Header (Main Website Style) --- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1100; /* Higher than mobile sidebar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobileHeader,
.desktopHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mobileHeader {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.logo-img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.desktopHeader ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktopHeader ul a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
    transition: var(--transition);
}

.desktopHeader ul a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.desktopHeader ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.desktopHeader ul a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loginButton {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.loginButton:hover {
    background: var(--secondary);
    color: var(--text-light);
    text-decoration: none;
}

/* Mobile Menu */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 60px 20px 20px 20px;
}

.mobile-sidebar.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-dark);
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn span::before {
    content: '✕';
    font-size: 18px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .menu-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu .menu-item a {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu .menu-item a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.mobile-sidebar .loginButton {
    margin-top: 20px;
    text-align: center;
}

.mobile-sidebar .loginButton a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--secondary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-small);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-sidebar .loginButton a:hover {
    background: #e08000;
    color: var(--text-light);
    text-decoration: none;
}

.mobile-menu .menu-item a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu .menu-item a:hover {
    background-color: var(--bg-light);
    color: var(--secondary);
    text-decoration: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive for Header */
@media (max-width: 768px) {
    .desktopHeader {
        display: none;
    }
    
    .mobileHeader {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-img img {
        width: 35px;
        height: 35px;
    }
    
    .header {
        padding: 10px 15px;
    }
}

/* --- Article/Post Styles --- */
.article-hero-section {
    background: #FFEFBC;
    color: var(--text-light);
    padding: 2rem 0 4rem;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.article-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: #FFEA9A;
    border-radius: 50%;
    z-index: 1;
}

.article-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #E7F2D3;
    border-radius: 50%;
    z-index: 1;
}

.article-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-breadcrumbs {
    margin-bottom: 2rem;
}

.hero-breadcrumbs #breadcrumbs {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-breadcrumbs #breadcrumbs a {
    color: #333333;
    text-decoration: none;
}

.hero-breadcrumbs #breadcrumbs a:hover {
    color: var(--primary);
    text-decoration: none;
}

.hero-breadcrumbs #breadcrumbs .current {
    color: var(--text-light);
    font-weight: 500;
}

.hero-breadcrumbs #breadcrumbs .fas {
    color: rgba(255, 255, 255, 0.6);
}

.article-hero-section .article-title {


    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #333333;
}

.article-hero-section .article-meta {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    font-size: var(--font-size-small);
    opacity: 0.9;
    flex-wrap: wrap;
}

.article-hero-section a, .article-hero-section .current, .time, .reading-time, .article-hero-section i, .article-hero-section time {

    color: #333333 !important;


}

.article-hero-section i {

    color: #333333 !important;

}


.article-hero-section .article-meta span {
    color: var(--text-light);
}

.article-hero-section .article-meta a {
    color: var(--primary);
    text-decoration: none;
}

.article-hero-section .article-meta a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.article-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: var(--font-size-small);
    opacity: 0.9;
}

.article-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    padding: 30px !important;

}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-small);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);

}

/* --- Card Components --- */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card-title {
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

.read-more:hover {
    background: var(--secondary);
    color: var(--text-light);
    text-decoration: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-small);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #e08000;
    color: var(--text-light);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* --- Breadcrumbs --- */
#breadcrumbs {
    background: var(--bg-white);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
}

#breadcrumbs a {
    color: var(--secondary);
    text-decoration: none;
}

#breadcrumbs a:hover {
    text-decoration: underline;
}

#breadcrumbs .current {
    font-weight: 500;
}

/* --- Archive/Category Pages --- */
.archive-hero-section {
    background: #FFEFBC;
    color: var(--text-light);
    padding: 2rem 0 4rem;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.archive-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: #FFEA9A;
    border-radius: 50%;
    z-index: 1;
}

.archive-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #E7F2D3;
    border-radius: 50%;
    z-index: 1;
}

.archive-hero-section .container {
    position: relative;
    z-index: 2;
}

.archive-hero-breadcrumbs {
    margin-bottom: 2rem;
}

.archive-hero-breadcrumbs #breadcrumbs {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.archive-hero-breadcrumbs #breadcrumbs a {
    color: #333333;
    text-decoration: none;
}

.archive-hero-breadcrumbs #breadcrumbs a:hover {
    color: var(--primary);
    text-decoration: none;
}

.archive-hero-breadcrumbs #breadcrumbs .current {
    color: var(--text-light);
    font-weight: 500;
}

.archive-hero-breadcrumbs #breadcrumbs .fas {
    color: rgba(255, 255, 255, 0.6);
}

.archive-hero-section .archive-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #333333;
}

.archive-hero-section .archive-description {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #333333;
    margin-bottom: 0;
}

.archive-hero-section .archive-meta {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    font-size: var(--font-size-small);
    opacity: 0.9;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.archive-hero-section a, .archive-hero-section .current, .archive-hero-section i {
    color: #333333 !important;
}

/* Archive page layout with sidebar */

.archive-content-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 10px !important;
    margin-top: 2rem;
}

.archive-main-content {
    min-width: 0; /* Prevents grid blowout */
}

.archive-sidebar {
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.post-card-inner {
    display: flex;
    gap: 2rem;
    min-height: 250px;
    align-items: flex-start;
}

.post-card .post-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-small);
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 1.5rem 0 0 1.5rem;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card .post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 1rem 2rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.post-card .card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.post-card .card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.post-card .card-title a:hover {
    color: var(--secondary);
}

.post-card .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: var(--font-size-small);
    color: var(--text-muted);
}

.post-card .entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-card .entry-meta i {
    color: var(--secondary);
}

.post-card .entry-meta a {
    color: var(--text-muted);
    text-decoration: none;
}

.post-card .entry-meta a:hover {
    color: var(--secondary);
}

.post-card .card-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-small);
    transition: var(--transition);
    align-self: flex-start;
}

.post-card .read-more:hover {
    background: var(--secondary);
    color: var(--text-light);
    text-decoration: none;
    transform: translateX(4px);
}

/* --- Single Post Layout with Sidebar --- */
.single-content-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 3rem;
    margin-top: 2rem;
}

.single-main-content {
    min-width: 0; /* Prevents grid blowout */
}

.single-sidebar {
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* --- Footer --- */
.site-footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

/* --- Social Sharing --- */
.social-share {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-align: center;
}

.social-share h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-small);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-light);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0d8bd9;
    color: var(--text-light);
    text-decoration: none;
}

.share-facebook {
    background: #4267b2;
}

.share-facebook:hover {
    background: #365899;
    color: var(--text-light);
    text-decoration: none;
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005885;
    color: var(--text-light);
    text-decoration: none;
}

.share-email {
    background: var(--text-dark);
}

.share-email:hover {
    background: #555;
    color: var(--text-light);
    text-decoration: none;
}

/* --- Post Navigation --- */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.nav-previous,
.nav-next {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    height: 100%;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--secondary);
}

.nav-content {
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    line-height: 1.3;
}

.nav-next .nav-link {
    text-align: right;
}

/* --- Post Tags --- */
.post-tags {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-tags .tag {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.post-tags .tag:hover {
    background: var(--primary);
    color: var(--text-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

/* --- Comments Styles --- */
.comments-area {
    margin-top: 3rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comments-title {
    margin-bottom: 2rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-small);
}

.comment-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comment-content p {
    margin-bottom: 0.5rem;
}

/* --- Pagination Enhancement --- */
.pagination-wrapper {
    margin: 3rem 0;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-numbers li {
    margin: 0;
}

.page-numbers a,
.page-numbers span {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-small);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    min-width: 44px;
    text-align: center;
}

.page-numbers a:hover {
    background: var(--primary);
    color: var(--text-dark);
    text-decoration: none;
}

.page-numbers .current {
    background: var(--secondary);
    color: var(--text-light);
    font-weight: 600;
}

/* --- Widget Enhancements --- */
.widget {
    background: var(--bg-white);
    padding: 20px !important;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.widget a:hover {
    color: var(--secondary);
    text-decoration: none;

}

/* --- Recent Posts Widget --- */
.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.recent-posts-list .post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Table Styles --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-white);
    border-radius: var(--radius-small);
    overflow: hidden;
    box-shadow: var(--shadow);
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
}

tr:hover {
    background: var(--bg-light);
}

/* --- Form Styles --- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-small);
    font-family: var(--body-font);
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-row {
    margin-bottom: 1.5rem;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }

/* --- Additional Mobile Styles --- */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.3rem;
        --header-height: 70px;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 1rem;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .content-wrapper,
    .archive-content-wrapper,
    .single-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar,
    .archive-sidebar,
    .single-sidebar {
        position: static;
        order: 2;
    }
    
    .mobile-sidebar {
        width: 280px;
        right: -280px;
    }
    
    .article-hero-section {
        padding: 1.5rem 0 3rem;
    }
    
    .article-hero-section .article-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .article-hero-section .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .archive-hero-section {
        padding: 1.5rem 0 3rem;
    }
    
    .archive-hero-section .archive-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .archive-hero-section .archive-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .archive-hero-breadcrumbs {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .hero-breadcrumbs {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .article-header {
        padding: 2rem 0;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .posts-grid .post-card .post-card-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .posts-grid .post-card .post-content {
        order: 2;
        padding: 1.5rem;
    }
    
    .posts-grid .post-card .post-thumbnail {
        order: 1;
        height: 200px;
    }
    
    .posts-grid .post-card .post-thumbnail img {
        height: 200px;
        object-fit: cover;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Mobile sidebar widget adjustments */
.sidebar .widget,
.archive-sidebar .widget,
.single-sidebar .widget {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar .widget-title,
.archive-sidebar .widget-title,
.single-sidebar .widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.widget_search .search-form {
    flex-direction: column;
    gap: 0.75rem;
}

.widget_search .search-submit {
    padding: 0.875rem 1rem;
}

.widget_tag_cloud .tagcloud {
    gap: 0.375rem;
}

.widget_tag_cloud .tagcloud a {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem !important;
}

/* --- High DPI Display Support --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* --- Dark Mode Support (Future Enhancement) --- */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here in the future */
}

/* --- Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Large Screen Optimizations --- */
@media (min-width: 1400px) {
    :root {
        --container-max-width: 1400px;
        --font-size-h1: 3rem;
        --font-size-h2: 2.5rem;
    }
    
    .article-title {
        font-size: 3.5rem;
    }
    
    .posts-grid .card .post-thumbnail img {
        width: 100%;
        height: 180px;
    }
}

/* --- WordPress Sidebar Widgets --- */
.sidebar .widget,
.archive-sidebar .widget,
.single-sidebar .widget {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.sidebar .widget:hover,
.archive-sidebar .widget:hover,
.single-sidebar .widget:hover {

    box-shadow: var(--shadow-hover);
}

.sidebar .widget:last-child,
.archive-sidebar .widget:last-child,
.single-sidebar .widget:last-child {
    margin-bottom: 0;
}

/* Widget Titles */
.sidebar .widget-title,
.archive-sidebar .widget-title,
.single-sidebar .widget-title {
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    position: relative;
}

.sidebar .widget-title::after,
.archive-sidebar .widget-title::after,
.single-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Search Widget */
.widget_search .search-form {
    position: relative;
    display: flex;
    gap: 0.5rem;
}

.widget_search .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-small);
    font-size: 1rem;
    transition: var(--transition);
}

.widget_search .search-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
}

.widget_search .search-submit {
    padding: 0.75rem 1.5rem;
    background: var(--secondary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.widget_search .search-submit:hover {
    background: #e08000;

}

/* Recent Posts Widget */
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_entries li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.widget_recent_entries li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_recent_entries a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    transition: var(--transition);
}

.widget_recent_entries a:hover {
    color: var(--secondary);

}

.widget_recent_entries .post-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Categories Widget */
.widget_categories ul,
.widget_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_categories li,
.widget_archive li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.widget_categories li:last-child,
.widget_archive li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_categories a,
.widget_archive a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    font-weight: 500;
}

.widget_categories a:hover,
.widget_archive a:hover {
    color: var(--secondary);

}

.widget_categories .count,
.widget_archive .count {
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.widget_tag_cloud .tagcloud a {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem !important;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.widget_tag_cloud .tagcloud a:hover {
    background: var(--primary);
    color: var(--text-dark);

    box-shadow: var(--shadow);
}

/* Text Widget */
.widget_text .textwidget {
    line-height: 1.6;
}

.widget_text .textwidget p:last-child {
    margin-bottom: 0;
}

/* Custom HTML Widget */
.widget_custom_html .textwidget {
    line-height: 1.6;
}

/* Meta Widget */
.widget_meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_meta li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.widget_meta li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_meta a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.widget_meta a:hover {
    color: var(--secondary);

}

.widget_meta a::before {
    content: '→';
    color: var(--accent);
    font-weight: bold;
}

/* Calendar Widget */
.widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: var(--bg-light);
    border-radius: var(--radius-small);
    overflow: hidden;
}

.widget_calendar th,
.widget_calendar td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.widget_calendar th {
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.widget_calendar td {
    font-size: 0.9rem;
}

.widget_calendar a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.widget_calendar a:hover {
    color: var(--primary-dark);
}

.widget_calendar #today {
    background: var(--accent);
    font-weight: 600;
}

/* RSS Widget */
.widget_rss ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_rss li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.widget_rss li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_rss .rsswidget {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.widget_rss .rsswidget:hover {
    color: var(--secondary);
}

.widget_rss .rss-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.widget_rss cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Pages Widget */
.widget_pages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_pages li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.widget_pages li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_pages a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.widget_pages a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.widget_pages a::before {
    content: '📄';
    font-size: 0.9rem;
}

/* Navigation Menu Widget */
.widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_nav_menu li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.widget_nav_menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_nav_menu a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.widget_nav_menu a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

/* Submenu styles */
.widget_nav_menu .sub-menu {
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
}

.widget_nav_menu .sub-menu li {
    border-bottom: none;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.widget_nav_menu .sub-menu a {
    font-size: 0.9rem;
    font-weight: 400;
}

/* --- Mobile Menu JavaScript Support --- */
/* Add this JavaScript to your theme's script file or footer.php */
/*
document.addEventListener('DOMContentLoaded', function() {
    const menuToggle = document.querySelector('.menu-toggle');
    const mobileSidebar = document.querySelector('.mobile-sidebar');
    const overlay = document.querySelector('.overlay');
    const closeBtn = document.querySelector('.close-btn');
    
    // Open mobile menu
    if (menuToggle) {
        menuToggle.addEventListener('click', function() {
            mobileSidebar.classList.add('active');
            overlay.classList.add('active');
            document.body.style.overflow = 'hidden';
        });
    }
    
    // Close mobile menu
    function closeMobileMenu() {
        mobileSidebar.classList.remove('active');
        overlay.classList.remove('active');
        document.body.style.overflow = '';
    }
    
    if (closeBtn) {
        closeBtn.addEventListener('click', closeMobileMenu);
    }
    
    if (overlay) {
        overlay.addEventListener('click', closeMobileMenu);
    }
    
    // Close on escape key
    document.addEventListener('keydown', function(e) {
        if (e.key === 'Escape') {
            closeMobileMenu();
        }
    });
});
*/

/* Blog Post Cards Layout */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-header {
    margin-bottom: 15px;
}

.blog-post-breadcrumb {
    color: var(--text-muted);
    font-size: var(--font-size-small);
    font-family: var(--body-font);
    text-transform: none;
}

.blog-post-title {
    margin: 0 0 10px 0;
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post-title a:hover {
    color: var(--primary-dark);
}

.blog-post-meta {
    color: var(--text-muted);
    font-size: var(--font-size-small);
    font-family: var(--body-font);
    margin: 0 0 15px 0;
    font-weight: 400;
}

.blog-post-excerpt {
    flex-grow: 1;
    margin-bottom: 20px;
}

.blog-post-excerpt p {
    color: var(--text-dark);
    font-family: var(--body-font);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin: 0;
}

.blog-post-footer {
    margin-top: auto;
    text-align: right;
}

.read-more-btn {
    background: #FF6B35;
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: var(--font-size-body);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #E55A2B;
    color: var(--text-light);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Archive Hero Section */
.archive-hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0 40px;
    margin-bottom: 50px;
}

.archive-hero-breadcrumbs {
    margin-bottom: 20px;
}

.archive-title {
    color: var(--text-light);
    font-family: var(--heading-font);
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.archive-description {
    color: var(--text-light);
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Archive Content Wrapper */
.archive-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.archive-main-content {
    min-width: 0;
}

.archive-sidebar {
    position: sticky;
    top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .archive-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .archive-sidebar {
        order: 2;
        position: static;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .archive-hero-section {
        padding: 40px 0 30px;
        margin-bottom: 30px;
    }
    
    .archive-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.25rem;
    }
}

/* No Content Section */
.no-content {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.no-content h1 {
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin: 0 0 20px 0;
}

.no-content p {
    color: var(--text-muted);
    font-family: var(--body-font);
    font-size: var(--font-size-body);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

@media (max-width: 768px) {
    .no-content {
        padding: 40px 20px;
    }
    
    .no-content h1 {
        font-size: 1.5rem;
    }
}
