/*
Theme Name: Andy Kemp Tech Blog
Description: A modern, clean blog theme with white design and hero image layout. Features crisp typography, single column layout, and social media integration. Perfect for tech blogs and professional writing.
Version: 2.0.0
Author: Andy Kemp
Text Domain: andykemp-blog
Tags: blog, clean, modern, responsive, white, light-mode, minimal
*/

/* CSS Variables for Light Theme */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --accent-color: #3498db;
    --signature-color: #2980b9;
    --signature-hover: #1c5f8d;
    --overlay-bg: rgba(255, 255, 255, 0.95);
    --menu-bg: rgba(255, 255, 255, 0.98);
    --border-color: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--signature-hover);
}

/* Button Styles */
.btn, 
button, 
input[type="submit"], 
input[type="button"], 
.wp-block-button__link,
.read-more,
.button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.wp-block-button__link:hover,
.read-more:hover,
.button:hover {
    background-color: var(--signature-hover);
    border-color: var(--signature-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

/* Submenu styles */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 15px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    list-style: none;
    z-index: 1001;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    display: block;
    width: 100%;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 14px 25px;
    white-space: nowrap;
    border-radius: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.nav-menu .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding-left: 30px;
}

/* Nested submenus */
.nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 5px;
}

.nav-menu .menu-item-has-children > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.nav-menu .sub-menu .menu-item-has-children > a:after {
    content: "\f105";
    float: right;
    margin-left: 10px;
}

.nav-social-links {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: transparent;
}

.nav-social-link:hover {
    color: #ffffff;
    background: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    background-color: transparent;
    color: #ffffff;
    transform: translateX(2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
    overflow: hidden;
    background-color: #3498db;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
}

.site-branding {
    margin-bottom: 20px;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.site-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    max-width: 1400px;
    width: 85%;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    background: var(--primary-bg);
    border-radius: 12px;
    box-shadow: 0 2px 20px var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Blog Post Grid */
.blog-grid {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: var(--primary-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 200px;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.post-thumbnail {
    width: 320px;
    min-width: 320px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: stretch;
}

.post-thumbnail a {
    display: flex;
    height: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content-wrapper {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.entry-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.entry-title a {
    color: var(--text-primary);
}

.entry-title a:hover {
    color: var(--accent-color);
}

.entry-meta {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 10px;
    align-items: center;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta a {
    color: var(--text-secondary);
}

.entry-meta a:hover {
    color: var(--accent-color);
}

.entry-excerpt {
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 2px;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.entry-footer-link {
    margin-top: 0;
    text-align: right;
}

.read-more-link {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    color: var(--signature-hover);
}

/* Single Post */
.single-post-content {
    padding: 40px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.entry-content pre,
.entry-content code {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.entry-content pre {
    padding: 20px;
    overflow-x: auto;
    margin: 30px 0;
}

.entry-content pre code {
    background: none;
    border: none;
    padding: 0;
}

/* Tags and Categories */
.entry-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.post-tags,
.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.post-tags a,
.post-categories a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-bg);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.post-tags a:hover,
.post-categories a:hover {
    background: var(--accent-color);
    color: #ffffff;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: var(--secondary-bg);
    border-radius: 12px;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
}

.nav-next {
    text-align: right;
}

.nav-previous a,
.nav-next a {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--accent-color);
}

/* Pagination */
.posts-navigation,
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    display: inline-block;
    padding: 10px 16px;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

/* Footer */
.site-footer {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    text-align: center;
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.footer-social-link:hover {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Widgets */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation {
        height: 60px;
    }

    .nav-container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
        order: -1;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        align-items: stretch;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 10px;
        border-radius: 0;
    }
    
    /* Mobile submenu styles */
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu li.menu-open > .sub-menu {
        max-height: 500px;
    }
    
    .nav-menu .sub-menu a {
        padding-left: 30px;
        font-size: 0.95em;
    }
    
    .nav-menu .sub-menu .sub-menu a {
        padding-left: 50px;
    }
    
    .nav-menu .menu-item-has-children > a {
        position: relative;
    }
    
    .nav-menu .menu-item-has-children > a:after {
        position: absolute;
        right: 10px;
        transition: transform 0.3s ease;
    }
    
    .nav-menu li.menu-open > a:after {
        transform: rotate(180deg);
    }
    
    .nav-menu .sub-menu .menu-item-has-children > a:after {
        content: "\f107";
    }
    
    .nav-social-links {
        position: relative;
        right: auto;
        top: auto;
    }

    /* Hide carousel buttons on mobile */
    .carousel-btn {
        display: none !important;
    }
    
    /* Make carousel track scrollable on mobile */
    .carousel-track-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .carousel-track-container::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-track-horizontal {
        scroll-snap-type: x mandatory;
    }
    
    .carousel-card-horizontal {
        scroll-snap-align: start;
        flex: 0 0 85%;
    }

    .blog-post {
        flex-direction: column;
    }

    .post-thumbnail {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .hero-section {
        height: 50vh;
        min-height: 400px;
        margin-top: 60px;
        background-attachment: scroll !important;
    }

    .site-title {
        font-size: 2.5rem;
    }

    .site-description {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .post-thumbnail {
        height: 200px;
    }

    .single-post-content,
    .post-content-wrapper {
        padding: 20px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-next {
        text-align: left;
    }

    .entry-content {
        font-size: 16px;
    }
}

/* Latest Posts Carousel */
.latest-posts-carousel-section {
    max-width: 1400px;
    width: 85%;
    margin: 60px auto;
    padding: 40px 20px;
    background: var(--secondary-bg);
    border-radius: 12px;
    overflow: hidden;
}

.carousel-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.carousel-wrapper-horizontal {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 15px;
    overflow: hidden;
    padding: 20px 5px;
    margin: -20px -5px;
    width: 100%;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
    margin: -5px 0;
}

.carousel-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px var(--shadow-hover);
    z-index: 10;
    flex-shrink: 0;
    align-self: center;
    position: relative;
    min-width: 50px;
}

.carousel-btn-prev {
    order: 1;
}

.carousel-btn-next {
    order: 3;
}

.carousel-track-container {
    order: 2;
}

.carousel-btn:hover {
    background: var(--signature-hover);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-track-horizontal {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    padding: 0;
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card-horizontal {
    flex: 0 0 calc((100% - 30px) / 2.5);
    min-width: 0;
    background: var(--primary-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.carousel-card-horizontal:hover {
    transform: translateY(-8px) scale(1.01) translateZ(0);
    box-shadow: 0 15px 40px var(--shadow-hover);
    z-index: 10;
}

.carousel-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    border-radius: 8px 8px 0 0;
}

.carousel-card-image a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.carousel-card-horizontal:hover .carousel-card-image img {
    transform: scale(1.05);
}

.carousel-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carousel-card-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.carousel-card-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.carousel-card-title a:hover {
    color: var(--accent-color);
}

.carousel-card-meta {
    display: flex;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.carousel-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.carousel-card-meta span:not(.post-date) {
    display: none;
}

.carousel-card-meta i {
    font-size: 0.65rem;
}

.carousel-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.carousel-card-link {
    display: none;
}

@media (max-width: 1200px) {
    .carousel-track-horizontal {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .carousel-card-horizontal {
        flex: 0 0 calc((100% - 20px) / 1.8);
    }
}

@media (max-width: 768px) {
    .latest-posts-carousel-section {
        width: 100%;
        padding: 30px 15px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-wrapper-horizontal {
        gap: 0;
    }
    
    .carousel-track-horizontal {
        overflow-x: auto;
        gap: 20px;
        padding: 0;
    }
    
    .carousel-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .carousel-card-horizontal {
        flex: 0 0 calc(100% - 40px);
    }
    
    .carousel-card-image {
        height: 180px;
    }
    
    .carousel-card-content {
        padding: 15px;
    }
    
    .carousel-card-title {
        font-size: 0.95rem;
    }
    
    .carousel-card-meta {
        font-size: 0.7rem;
    }
    
    .carousel-card-excerpt {
        font-size: 0.8rem;
    }
    
    .carousel-card-horizontal:hover {
        transform: translateY(-5px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Print Styles */
@media print {
    .main-navigation,
    .hero-section,
    .social-media-links,
    .post-navigation,
    .site-footer {
        display: none;
    }
}