/*
Theme Name: Orange Prompt Theme
Description: A professional WordPress theme with orange gradient color scheme inspired by promptseen.com
Version: 1.0
Author: Your Name
*/

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Orange Gradient Color Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    --secondary-gradient: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --orange-light: #fff5f0;
    --shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.25);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 220px;
    z-index: 9999;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
    list-style: none;
}


.nav-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    color: var(--text-dark);
    display: block;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    background: var(--orange-light);
    color: var(--text-dark);
    transform: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Search Section */
.search-section {
    background: var(--white);
    padding: 1.5rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border: 2px solid #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), 0 4px 25px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--text-dark);
}

.search-field::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

.search-submit {
    background: var(--primary-gradient);
    border: none;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.search-submit:hover {
    background: var(--secondary-gradient);
    transform: scale(1.05);
}

.search-submit i {
    transition: transform 0.3s ease;
}

.search-submit:hover i {
    transform: rotate(15deg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: #ff6b35;
    transform: translateY(-3px);
}

/* Posts Grid */
.posts-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}


.post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-category-top {
    padding: 1rem;
    text-align: center;
    background: var(--light-bg);
}

.category-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.post-image {
    width: 100%;
    height: auto;
    aspect-ratio: 768/1024;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-content {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-text-content {
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-title a {
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.post-title a:hover {
    color: #ff6b35 !important;
    text-decoration: none;
}

.post-title a:visited {
    color: var(--text-dark) !important;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.9rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 3rem 0;
}

.load-more-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Single Post */
.single-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
    max-width: 100%;
    overflow-x: hidden;
}

.post-main {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    min-width: 0;
    overflow-wrap: break-word;
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-category {
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.post-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-featured-image {
    margin: 2rem 0;
    text-align: center;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    aspect-ratio: 768/1024;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: #f8f9fa;
    margin: 0 auto;
    display: block;
}

.post-content-full {
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
}

.post-content-full h2,
.post-content-full h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.post-content-full p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Category Page Styles */
.category-header {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-top: 2rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comments Section Styles */
.comments-area {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.comment-respond {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-form-comment {
    margin-bottom: 1rem;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.submit {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.comment-notes {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.required {
    color: #e74c3c;
}

/* Footer Styles */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 769px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .post-image {
        aspect-ratio: 768/1024;
        object-fit: contain;
        max-height: 350px;
    }
    
    .post-featured-image img {
        max-width: 500px;
        aspect-ratio: 768/1024;
        object-fit: contain;
    }
}

/* Mobile and Tablet Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--orange-light);
        margin-left: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-section {
        padding: 1.5rem 0;
    }
    
    .search-container {
        max-width: 600px;
    }
    
    .search-field {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .search-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-image {
        aspect-ratio: 768/1024;
        object-fit: contain;
        max-height: 400px;
        background: #f8f9fa;
    }
    
    .single-post-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .post-main {
        padding: 1rem;
        margin: 0;
    }
    
    .post-title {
        font-size: 1.8rem;
        min-height: auto;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
    
    .post-excerpt {
        min-height: auto;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .post-featured-image {
        margin: 1rem 0;
    }
    
    .post-featured-image img {
        border-radius: 15px;
        max-width: 100%;
        aspect-ratio: 768/1024;
        object-fit: contain;
        background: #f8f9fa;
    }
    
    .sidebar {
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Search bar mobile responsive */
    .search-section {
        padding: 1rem 0;
        margin-top: 70px;
    }
    
    .search-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .search-input-wrapper {
        border-radius: 25px;
    }
    
    .search-field {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-field::placeholder {
        font-size: 0.85rem;
    }
    
    .search-submit {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .posts-section {
        padding: 2rem 0;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-main {
        padding: 1rem;
    }
    
    .post-image {
        max-height: 300px;
        aspect-ratio: 768/1024;
        object-fit: contain;
    }
    
    .post-featured-image img {
        max-width: 100%;
        aspect-ratio: 768/1024;
        object-fit: contain;
    }
    
    .post-title {
        font-size: 1rem;
        min-height: auto;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .post-excerpt {
        font-size: 0.85rem;
        min-height: auto;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Page-specific Styles */
.page-links {
    margin: 2rem 0;
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.page-links-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 1rem;
}

.page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.page-links .current {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--text-dark);
    color: var(--white);
    border-radius: 5px;
}

/* Page Content Styling */
.post-content-full h1,
.post-content-full h2,
.post-content-full h3,
.post-content-full h4,
.post-content-full h5,
.post-content-full h6 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content-full h1 {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-content-full h2 {
    font-size: 1.8rem;
}

.post-content-full h3 {
    font-size: 1.5rem;
}

.post-content-full ul,
.post-content-full ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content-full li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.post-content-full blockquote {
    border-left: 4px solid #ff6b35;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--light-bg);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-light);
}

.post-content-full table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-content-full th,
.post-content-full td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.post-content-full th {
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 600;
}

.post-content-full tr:hover {
    background: var(--light-bg);
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .load-more-container {
        display: none;
    }
    
    .single-post-container {
        grid-template-columns: 1fr;
    }
}
