.blog_home{
    /* margin:85px 0px; */
    padding: 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #ffffde;
}

.blog_head {
    display: flex;
    justify-content: space-between;
    align-content:center;
    align-items: flex-end;
}

.blog_head h1 {
    font-size: 100px;
    margin: 0px;
    line-height: 1;
}

.blog_head img {
    height: 200px;
}

.blog_head h1 span:nth-last-child(1) {
    color: var(--color-principal);
}

.blog_home > form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog_home > form > div {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.blog_home > form > div input {
    display: none
}

.blog_home > form > div label {
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 100px
}

.blog_home > form > div input:checked + label, .blog_home > form > div label:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}

.blog_home .llistat {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 50px;
}

.blog_home .llistat > .b {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid;
    border-radius: 25px;
    padding: 20px;
    gap: 20px;
}

.blog_home .llistat > .b img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 15px;
}

.blog_home .llistat > .b .t {
    font-weight: bold;
    font-size: 24px;
}

.blog_home .llistat > .b .c {
    font-size: 12px;
    height: 100%;
}

.blog_home .llistat > .b .view_more {
    border: 1px solid black;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 100px;
    color: black;
}

.blog_home .llistat > .b .view_more:hover {
    background-color: black;
    color: white;
}



@media screen and (max-width:1100px) {
    .blog_home .llistat > .b {
        width: 49%;
    }
}



@media all and (max-width: 800px) {
    .blog_home .llistat > .b {
        width: 100%;
    }

    .blog_head {
    display: flex;
    align-content: flex-start;
    flex-direction: column-reverse;
    align-items: flex-start;
    }
    
    .blog_head h1 {
        font-size: 50px;
        /* margin: 0px; */
        /* line-height: 1; */
    }
    
    .blog_head img {
        height: 100px;
    }
}