/* Blog Page Styles */

/* Blog Banner Section */
.blog-banner {
    position: relative;
    height: 350px;
    background-image: url('images2/A4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.blog-content {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.blog-content h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.blog-content .title-line {
    display: block;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.blog-content .title-line.featured {
    background: linear-gradient(135deg, #b30ce6, #ff6b9d, #00f2fe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out, gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out 0.5s both;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Blog Categories Navigation */
.blog-categories {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-categories .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Mobile navigation header */
.blog-nav-mobile-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.blog-nav-toggle {
    background-color: #f9f9f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
}

.blog-nav-toggle:hover {
    background-color: #f0f0f0;
    border-color: #ddd;
}

.blog-nav-toggle:focus {
    outline: none;
    border-color: #b30ce6;
    box-shadow: 0 0 0 3px rgba(179, 12, 230, 0.1);
}

.blog-nav-toggle.active {
    background-color: #f0f0f0;
    border-color: #ddd;
}

/* Category list */
.blog-category-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-category-list li {
    margin: 0;
}

.blog-category-list li a {
    color: #666;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
}

.blog-category-list li a:hover,
.blog-category-list li.active a {
    background-color: #b30ce6;
    color: #fff;
    transform: translateY(-2px);
}

/* Search box */
.blog-search {
    position: relative;
    min-width: 300px;
}

.blog-search-mobile {
    display: none;
    min-width: auto;
    flex-grow: 1;
    max-width: 200px;
}

.blog-search input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: #b30ce6;
    box-shadow: 0 0 0 3px rgba(179, 12, 230, 0.1);
}

.blog-search i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.6rem;
}

.blog-categories ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.blog-categories ul li {
    margin: 0.5rem;
}

.blog-categories ul li a {
    font-size: 1.6rem;
    color: #334;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-categories ul li a:hover {
    background: #f5f5f5;
    color: #b30ce6;
}

.blog-categories ul li.active a {
    background: #b30ce6;
    color: #fff;
}

/* Blog Posts Section */
.blog-posts {
    padding: 5rem 0;
}

.blog-posts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Featured Post */
.featured-post {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 5rem;
    transition: transform 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
}

.featured-post .post-image {
    flex: 1 1 40%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.featured-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.featured-post .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #b30ce6;
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.featured-post .post-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.featured-post .post-date .month,
.featured-post .post-date .year {
    display: block;
    font-size: 1.3rem;
}

.featured-post .post-content {
    flex: 1 1 60%;
    padding: 3rem;
}

.featured-post .post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.featured-post .post-meta .category {
    background: #f5f5f5;
    color: #334;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
}

.featured-post .post-meta .author {
    color: #777;
}

.featured-post .post-meta .author i {
    margin-right: 0.5rem;
    color: #b30ce6;
}

.featured-post h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #334;
}

.featured-post p {
    font-size: 1.6rem;
    color: #777;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.featured-post .read-more {
    padding: 1rem 2.5rem;
    background: #334;
    color: #fff;
    border-color: #334;
}

.featured-post .read-more:hover {
    background: #b30ce6;
    border-color: #b30ce6;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-8px);
}

.post-card .post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-card .post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b30ce6;
    color: #fff;
    padding: 0.8rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.post-card .post-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.post-card .post-date .month,
.post-card .post-date .year {
    display: block;
    font-size: 1.2rem;
}

.post-card .post-content {
    padding: 2rem;
}

.post-card .post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.post-card .post-meta .category {
    background: #f5f5f5;
    color: #334;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.post-card .post-meta .read-time {
    color: #777;
}

.post-card .post-meta .read-time i {
    margin-right: 0.5rem;
    color: #b30ce6;
}

.post-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #334;
    line-height: 1.3;
    min-height: 5.2rem;
}

.post-card p {
    font-size: 1.5rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 2rem;
    min-height: 7.6rem;
}

.post-card .read-more {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
    background: #334;
    color: #fff;
    border-color: #334;
    display: inline-block;
}

.post-card .read-more:hover {
    background: #b30ce6;
    border-color: #b30ce6;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 5rem;
}

.blog-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: #fff;
    color: #334;
    font-size: 1.6rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    background: #b30ce6;
    color: #fff;
}

/* Newsletter Section */
.blog-newsletter {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images2/A2.avif');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: #fff;
}

.blog-newsletter .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-newsletter .newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.blog-newsletter .newsletter-text {
    flex: 1 1 40%;
}

.blog-newsletter .newsletter-text h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-newsletter .newsletter-text p {
    font-size: 1.6rem;
    max-width: 450px;
}

.blog-newsletter .newsletter-form {
    flex: 1 1 50%;
    display: flex;
    gap: 1rem;
}

.blog-newsletter .newsletter-form input {
    flex-grow: 1;
    padding: 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.6rem;
}

.blog-newsletter .newsletter-form .btn {
    background: #b30ce6;
    color: #fff;
    border: none;
    font-size: 1.6rem;
    padding: 0 3rem;
    cursor: pointer;
}

.blog-newsletter .newsletter-form .btn:hover {
    background: #9b08c5;
}

/* Individual Blog Post Page (for future use) */
.blog-single {
    padding: 5rem 0;
}

.blog-single .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-single .post-header {
    margin-bottom: 4rem;
}

.blog-single .post-header h1 {
    font-size: 4rem;
    color: #334;
    margin-bottom: 2rem;
}

.blog-single .post-meta {
    display: flex;
    gap: 2rem;
    font-size: 1.6rem;
    color: #777;
    margin-bottom: 2rem;
}

.blog-single .post-meta span i {
    color: #b30ce6;
    margin-right: 0.5rem;
}

.blog-single .post-image {
    margin-bottom: 3rem;
}

.blog-single .post-image img {
    width: 100%;
    border-radius: 10px;
}

.blog-single .post-content {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #444;
}

.blog-single .post-content p {
    margin-bottom: 2rem;
}

.blog-single .post-content h2 {
    font-size: 2.8rem;
    color: #334;
    margin: 4rem 0 2rem;
}

.blog-single .post-content h3 {
    font-size: 2.3rem;
    color: #334;
    margin: 3rem 0 1.5rem;
}

.blog-single .post-content ul,
.blog-single .post-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.blog-single .post-content li {
    margin-bottom: 1rem;
}

.blog-single .post-content img {
    max-width: 100%;
    border-radius: 5px;
    margin: 2rem 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .featured-post {
        flex-direction: column;
    }
    
    .featured-post .post-image {
        min-height: 250px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .blog-newsletter .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .blog-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .blog-content p {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .blog-categories ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .blog-categories ul li a {
        white-space: nowrap;
    }
    
    .post-card h3 {
        min-height: auto;
    }
    
    .post-card p {
        min-height: auto;
    }
}

/* Enhanced Blog Features */

/* Search functionality */
.blog-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-search {
    position: relative;
    min-width: 300px;
}

.blog-search input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: #b30ce6;
    box-shadow: 0 0 0 3px rgba(179, 12, 230, 0.1);
}

.blog-search i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.6rem;
}

/* Reading progress bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.reading-progress {
    height: 100%;
    background: linear-gradient(90deg, #b30ce6, #ff6b6b);
    width: 0%;
    transition: width 0.1s ease;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #b30ce6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(179, 12, 230, 0.3);
}

.back-to-top:hover {
    background: #9a0bb8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 12, 230, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Social sharing buttons */
.social-share {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.social-share h4 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #333;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Related posts */
.related-posts {
    margin: 4rem 0;
}

.related-posts h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post a {
    text-decoration: none;
    color: inherit;
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post h4 {
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #333;
    margin: 0;
}

/* Notification system */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    color: white;
    font-size: 1.4rem;
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

.notification.info {
    background: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.6rem;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
}

/* Highlight box for important info */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 2rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Author info */
.post-author {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.author-info h4 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Responsive design for new features */
@media (max-width: 768px) {
    /* Blog navigation responsive styles */
    .blog-nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-nav-mobile-header {
        display: flex;
        margin-bottom: 1rem;
    }
    
    .blog-category-list {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .blog-category-list.active {
        display: flex;
        max-height: 400px;
    }
    
    .blog-category-list li {
        width: 100%;
    }
    
    .blog-category-list li a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .blog-search-desktop {
        display: none;
    }
    
    .blog-search-mobile {
        display: block;
    }
    
    .blog-search {
        min-width: auto;
        width: 100%;
    }
    
    /* Other responsive styles */
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 450px) {
    .blog-content h1 {
        font-size: 2.8rem;
    }
    
    .blog-content p {
        font-size: 1.6rem;
    }
    
    .featured-post .post-content {
        padding: 2rem;
    }
    
    .featured-post h2 {
        font-size: 2.2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .post-author {
        padding: 1.5rem;
    }
}

/* Additional Blog Navigation Styles */
.blog-nav-mobile-header {
    width: 100%;
}

.blog-nav-toggle {
    background-color: #f9f9f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
}

.blog-nav-toggle:hover {
    background-color: #f0f0f0;
    border-color: #ddd;
}

.blog-nav-toggle:focus {
    outline: none;
    border-color: #b30ce6;
    box-shadow: 0 0 0 3px rgba(179, 12, 230, 0.1);
}

.blog-nav-toggle.active {
    background-color: #f0f0f0;
    border-color: #ddd;
}

/* Ensure the menu remains visible on larger screens */
@media (min-width: 769px) {
    .blog-category-list {
        display: flex !important;
        max-height: none !important;
    }
    
    .blog-nav-mobile-header {
        display: none !important;
    }
}

/* Additional mobile styling for better spacing */
@media (max-width: 768px) {
    .blog-categories {
        padding: 1rem 0;
    }
    
    .blog-nav-content {
        gap: 1.5rem;
    }
    
    .blog-category-list {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin-bottom: 1rem;
    }
    
    .blog-category-list li a {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .blog-search-mobile {
        flex-grow: 1;
        max-width: none;
    }
}

/* Styles for even smaller screens */
@media (max-width: 480px) {
    .blog-nav-mobile-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .blog-nav-toggle {
        width: 100%;
    }
    
    .blog-search-mobile {
        width: 100%;
        max-width: none;
    }
}