/* BLOG STYLES */
/* .blog-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
}

.blog-sidebar {
    order: -1;
    margin-bottom: 2rem;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.category-btn {
    display: block;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: var(--border-rd8);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-accent);
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    color: var(--text-color-light);
    font-size: 0.9rem;
} */

/* CONTACT STYLES */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    width: 100%;
}

.contact-info {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-rd8);
    box-shadow: var(--shadow-1);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-method i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.social-contact {
    text-align: center;
}

.social-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.social-contact .social-icons {
    justify-content: center;
    gap: 1.5rem;
}

/* BIOGRAPHY STYLES */
.bio-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.bio-intro {
    display: flex;
    flex-direction: column;
}

.bio-image {
    width: 100%;
    margin-bottom: 1.5rem;
}

.bio-image img {
    width: 100%;
    border-radius: var(--border-rd8);
    box-shadow: var(--shadow-1);
}

.approach-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.approach-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.approach-icon i {
    font-size: 2rem;
    color: var(--accent-pink);
}

/* TIMELINE IMPROVEMENTS */
.timeline {
    margin-top: 2rem;
}

.timeline-item {
    margin-bottom: 2.5rem;
}

.timeline-content {
    padding: 1.5rem;
}

/* MEDIA QUERIES */
@media only screen and (min-width: 768px) {
    /* BLOG */
       .blog-container {
        /* flex-direction: row; */
        gap: 2rem;
    }
    
    .blog-sidebar {
        flex: 0 0 250px;
        order: 0;
    }
    
    .blog-content {
        /* grid-template-columns: repeat(2, 1fr); */
    }
    
    .category-filters {
        flex-direction: column;
    }
    
    .filter-btn {
        text-align: left;
    }
    .blog-container {
        /* flex-direction: row; */
        gap: 2rem;
    }
    
    .blog-sidebar {
        flex: 0 0 300px;
        order: 0;
    }
    
    .blog-content {
        /* grid-template-columns: repeat(2, 1fr); */
    }
    
    .category-buttons {
        grid-template-columns: 1fr;
    }
    
    /* CONTACT */
    .contact-container {
        flex-direction: row;
    }
    
    .contact-form-container {
        flex: 2;
    }
    
    .contact-info {
        flex: 1;
    }
    
    /* BIOGRAPHY */
    .bio-intro {
        flex-direction: row;
        gap: 2rem;
    }
    
    .bio-image {
        flex: 0 0 40%;
        margin-bottom: 0;
    }
    
    .approach-item {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .approach-icon {
        flex: 0 0 60px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 1024px) {
    /* BLOG */
    .blog-content {
        grid-template-columns: repeat(3, 1fr);
    }

    
    .blog-sidebar {
        flex: 0 0 300px;
    }
    
    /* BIOGRAPHY */
    .bio-intro {
        gap: 3rem;
    }
    
    .bio-image {
        flex: 0 0 35%;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 23px;
    }
}

@media only screen and (min-width: 1440px) {
    /* BLOG */
    .blog-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .blog-content {
        /* grid-template-columns: repeat(4, 1fr); */
    }
    
    /* BIOGRAPHY */
    .bio-section {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .timeline {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}