/* ----------Header----------- */
.blog-wrapper p{
    text-align: left;
    margin: 0;
    padding: 6px 0;
    color: #333;
    font-size: 14px;
}
.blog-header{
    background-color: rgb(214, 182, 142);
}
.blog-section{
    padding-top: 30px;
}
.blog-wrapper{
    max-width: 1050px;
    padding: 0 25px;
    margin: 0 auto;
}
.blog__pic{
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 15px;
}
.blog__pic img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.blog__intro{
    margin-bottom: 20px;
}
.blog__title{
    padding: 10px 0;
}
.blog__grid{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 20px;
    vertical-align: middle;
    margin-bottom: 60px;
}
.blog__subtitle{
    padding: 10px 0;
    text-align: left;
}
.blog__city-text{
    margin: auto 0;
}
.blog__city-pic{
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog__pic-even{
    order: -1;
}
.blog__city-img{
    width: 100%;
}
.blog__list{
    margin-left: 16px;
}
.blog__list li{
    color: #333;
    font-size: 14px;
}
.blog__city-text h3{
    font-size: 16px;
    text-align: left;
}

.blog__links h3{
    margin-bottom: 30px;
}
.blog__link{
    background:  #fff3f3;
    border-radius: 10px;
    transition: 0.5s;
}
.blog__link h4{
    text-align: center;
    font-weight: 400;
    padding: 20px 0;
}
.blog-link{
    display: block;
    width: 100%;
    height: 100%;
}
.blog__link:hover{
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
}
.blog__grid:last-child{
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .blog__grid{
        grid-template-columns: 1fr;
    }
    .blog__pic-even{
        order: initial;
    }
}