
:root {
    --blue-main: #063350;
    --green: #4BAC9A;
    --text: #373D45;
    --backgroung: #F6FAFF;
}

.blog__wrapper {
    width: 100%;
    padding-top: 150px;
}   
.blog__name {
    width: 1300px;
    margin: 0 auto;
}
.blog__name h3{
    color: var(--blue-main);
    font-size: 48px;
    font-weight: 800;
}
.blog__content {
    width: 1300px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.blog__element {
    width: 350px;
    height: 384px;

}
.blog__content-image {
    width: 100%;
    overflow: hidden;
    height: 192px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #e3e3e3;
}
.blog__content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog__content-content {
    padding: 17px;

}


.blog__content-content p {
    margin-top: 10px;
    text-align: left;
    width: 100%;
    color: #999999;
    font-size: 12px;
}

.blog__content-content h3{
    margin-top: 15px;
    width: 100%;
    font-size: 17px;
    color: var(--blue-main);
    font-weight: 600;
    line-height: 24px;
}

@media (max-width: 1024px) {
    .blog__wrapper{
        padding-top: 80px;
        width: 95%;
        margin: 0 auto;
    }
    .blog__name{
        width: 100%;
    }
    .blog__name h3 {
        font-size: 35px;
    }
    .blog__content{
        width: 100%;

    }
    .blog__element {
        width: 100%;
        height: 380px;
    }
}