/* Blog post two-column layout */
.blogpost-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.blogpost-image-wrapper {
    flex: 0 0 20%;
}

.blogpost-image {
    max-width: 300px;
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.blogpost-content {
    flex: 0 0 60%;
}

.blogpost {
    margin: 0px;
    padding:0px;
    text-decoration: none;
    color: inherit;
    display: block;
}


/* Tablet Responsive layout */
@media (max-width: 1024px) {
    .blogpost-container {
        gap: 1.5rem;
    }
    
    .blogpost-image-wrapper {
        flex: 0 0 30%;
    }
    
    .blogpost-content {
        flex: 0 0 70%;
    }
}

/* Mobile Responsive layout */
@media (max-width: 768px) {
    .blogpost-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blogpost-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .blogpost-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .blogpost-content {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .blogpost-title {
        font-size: 1.25rem;
    }
    
    .blogpost-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .blogpost-container {
        margin-bottom: 1.5rem;
    }
    
    .blogpost-image {
        height: 180px;
    }
    
    .blogpost-title {
        font-size: 1.1rem;
    }
    
    .blogpost-excerpt {
        font-size: 0.9rem;
    }
}