.hero{
    flex-direction: column;
}

.title-block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1{
    font-size: 5em;
}

.blog-list{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: stretch;
}

.blog-item > .card {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 800px;
    justify-content: flex-start;
    gap: 1.5em;
    padding: 16px;
}

.blog-item img{
    height: 200px;
    width: 200px;
    border-radius: 8px;
}

.blog-text{
    text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
    .hero h1{
        font-size: 3em;
    }

    .blog-item{
        min-height: 0;
    }
}