html {
    background-color: #faf1e2;
    height: 100%;
    width: auto;
    overflow-x: hidden;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

h1, h2, h3, h4, h5, p, a {
    font-family: 'Jost', sans-serif;
}

   body {
    padding: 0;
      margin: 0;
      background-color: #faf1e2;
}

/* Blogs Section */
.blogs-section {
    background: #faf1e2;
      min-height: 100vh;
    padding: 0;
    position: relative;
}

.blogs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
    background: #faf1e2;
    position: relative;
    z-index: 1;
}

/* Blogs Header - Simplified Design */
.blogs-header {
    background: #144835;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    z-index: 0;
}

.blogs-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blogs-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(250, 241, 226, 0.1), transparent);
    pointer-events: none;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px 20px;
    position: relative;
    z-index: 0;
}

.blogs-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    margin: 0 0 30px 0;
    font-family: 'Jost', sans-serif;
    color: white;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.blogs-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    margin: 0 auto 60px auto;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Jost', sans-serif;
    text-align: center;
    max-width: 800px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }  

.search-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.search-bar:focus-within::before {
    left: 100%;
}

.search-bar:focus-within {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.search-icon {
    color: #6c757d;
    font-size: 18px;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.search-bar:focus-within .search-icon {
    color: #144835;
}

.search-input {
    flex: 1;
    padding: 20px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    outline: none;
    color: #2c3e50;
    font-weight: 500;
}

.search-input::placeholder {
    color: #6c757d;
    font-weight: 400;
    transition: color 0.3s ease;
}

.search-bar:focus-within .search-input::placeholder {
    color: #adb5bd;
}

.search-btn {
    background: #144835;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(20, 72, 53, 0.3);
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: #0f3a2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(20, 72, 53, 0.4);
}

.search-btn:active {
    transform: translateY(0);
  }  

/* Filter Section */
.filter-section {
    margin-bottom: 0;
}

.filter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #495057;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.filter-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.filter-btn:hover i {
    transform: scale(1.1);
}

.filter-btn:hover {
    background: #144835;
    backdrop-filter: blur(25px);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(20, 72, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: #144835;
    backdrop-filter: blur(25px);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: 
        0 12px 30px rgba(20, 72, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active i {
    transform: scale(1.1);
}

/* Hide search section on mobile */
@media (max-width: 768px) {
    .search-section.mobile-hidden {
    display: none;
    }
}

/* Blogs Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(20, 72, 53, 0.8), rgba(162, 193, 68, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-category {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.4;
    font-family: 'Jost', sans-serif;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
     color: #a2c144;
  }

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a2c144;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #8ba83a;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #2c3e50;
    font-family: 'Jost', sans-serif;
}

.loading-indicator.hidden {
    display: none;
}
             
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #a2c144;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Hide mobile dropdown on desktop */
.filter-dropdown {
    display: none;
}

/* Scroll Effects */
html {
    scroll-behavior: smooth;
}

/* Fade in animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left animation */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.4s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right animation */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in animation */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delay for multiple elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Header positioning - no parallax effect */
.blogs-header {
    position: relative;
}

/* Blogs grid spacing */
.blogs-grid {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Blog card scroll animation */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.blog-card.animate-in {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Blog card hover effects */
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Filter button hover effects */
.filter-btn {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 72, 53, 0.3);
}

/* Search bar focus effect */
.search-input {
    transition: all 0.3s ease;
}

.search-input:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(20, 72, 53, 0.2);
}

/* Loading indicator animation */
.loading-indicator {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.loading-indicator.show {
    opacity: 1;
    transform: scale(1);
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #144835, #2d5a47);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #144835, #2d5a47);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(20, 72, 53, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 72, 53, 0.4);
}

.back-to-top i {
    font-size: 18px;
}
             
/* Responsive Design */
@media (max-width: 768px) {
    .blogs-container {
        padding: 0 15px;
    }
    
    .blogs-header {
        padding: 60px 0 40px 0;
    }
    
    .blogs-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 15px;
    }
    
    .blogs-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        padding: 0 10px;
        margin-bottom: 10px;
    }
    
    .search-filter-section {
        padding: 1.5rem 0;
        margin: 0 0 30px 0;
    }
    
    .search-container {
        display: none; /* Hide search bar on mobile */
    }
    
    .filter-container {
        padding: 0 15px;
    }
    
    .filter-buttons {
        display: none; /* Hide regular buttons on mobile */
    }
    
    /* Mobile Filter Dropdown */
    .filter-dropdown {
        display: block; /* Show on mobile */
        position: relative;
      width: 100%;
        max-width: 200px; /* Even smaller max width */
        margin: 0 auto;
    }
    
    .filter-dropdown-btn {
    width: 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #495057;
        padding: 10px 14px; /* Even smaller padding */
        border-radius: 35px; /* Smaller border radius */
        cursor: pointer;
        font-family: 'Jost', sans-serif;
        font-size: 14px; /* Smaller font */
      font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px; /* Smaller letter spacing */
      display: flex;
      align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Smaller shadow */
        transition: all 0.3s ease;
        min-height: 42px; /* Smaller minimum height */
    }
    
    .filter-dropdown-btn:hover {
        background: rgba(20, 72, 53, 0.95);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-1px); /* Smaller transform */
        box-shadow: 0 8px 20px rgba(20, 72, 53, 0.3);
    }
    
    .filter-dropdown-btn.active {
        background: rgba(20, 72, 53, 0.95);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        box-shadow: 0 8px 20px rgba(20, 72, 53, 0.3);
    }
    
    .filter-dropdown-btn i {
        font-size: 12px; /* Even smaller icon */
        transition: transform 0.3s ease;
    }
    
    .filter-dropdown-btn.active i {
        transform: rotate(180deg);
    }
    
    .filter-dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px; /* Even smaller border radius */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Smaller shadow */
        z-index: 1000;
        margin-top: 4px; /* Even smaller margin */
        padding: 6px; /* Even smaller padding */
        display: none;
        max-height: 200px; /* Even smaller max height */
        overflow-y: auto;
    }
    
    .filter-dropdown-content.show {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px); /* Smaller transform */
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .filter-dropdown-item {
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        color: #495057;
        padding: 8px 12px; /* Even smaller padding */
        border-radius: 10px; /* Even smaller border radius */
      cursor: pointer;
        font-family: 'Jost', sans-serif;
        font-size: 13px; /* Smaller font */
        font-weight: 500;
        text-align: left;
        transition: all 0.3s ease;
        margin-bottom: 2px; /* Even smaller margin */
        min-height: 36px; /* Smaller minimum height */
  display: flex;
      align-items: center;
    }
    
    .filter-dropdown-item:hover {
        background: rgba(20, 72, 53, 0.1);
        color: #144835;
    }
    
    .filter-dropdown-item.active {
        background: rgba(20, 72, 53, 0.95);
        color: white;
    }
    
    .filter-dropdown-item i {
        margin-right: 6px; /* Smaller margin */
        font-size: 12px; /* Smaller icon */
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 2rem;
    }
    
    .blog-card {
        border-radius: 15px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .blog-meta {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .blog-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .blog-read-more {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blogs-header {
        padding: 40px 0 30px 0;
    }
    
    .blogs-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .blogs-subtitle {
        font-size: clamp(0.8rem, 4vw, 1rem);
        padding: 0 5px;
    }
    
    .search-filter-section {
        padding: 1rem 0;
        margin: 0 0 20px 0;
    }
    
    .search-container {
    padding: 0 10px;
      margin-bottom: 1rem;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .filter-container {
    padding: 0 10px;
  }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .blogs-grid {
        gap: 15px;
        padding: 15px 0;
        margin-bottom: 1.5rem;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .blog-meta {
        gap: 8px;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .blog-excerpt {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .blog-read-more {
        font-size: 12px;
    }
}
/* Blog Detail View Styles */
.hidden {
    display: none !important;
}

.blog-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px; /* Increased top padding to clear navbar */
    background: #faf1e2;
    min-height: 100vh;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #144835;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(20, 72, 53, 0.2);
}

.back-btn:hover {
    transform: translateX(-5px);
    background: #0f3628;
    box-shadow: 0 6px 15px rgba(20, 72, 53, 0.3);
}

.blog-post-container {
    max-width: 100%;
    margin: 0;
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(20, 72, 53, 0.08);
    border: 1px solid rgba(20, 72, 53, 0.05);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #144835;
    margin-bottom: 25px;
    font-family: 'Jost', sans-serif;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #666;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fcfa;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(20, 72, 53, 0.1);
}

.blog-post-meta i {
    color: #a2c144;
}

.blog-post-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-post-content {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: left;
    max-width: 800px;
    margin: 0 auto; /* Center the content */
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #144835;
    margin: 40px 0 20px;
    font-family: 'Jost', sans-serif;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a2c144;
    margin: 30px 0 15px;
    font-family: 'Jost', sans-serif;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        gap: 15px;
        flex-direction: column;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
}
