.blog-section1 {
    background-color: #E2E2E2;
    padding:50px 0;
    text-align: center;
}
.blog-section1 h1 {
    font-weight: 500;
    font-size: 50px;
}

.blog-section2 {
    padding:100px 0;
}

.bs2-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:25px;
}

.bs2-column {
    border:1px solid #D6AB88;
    border-radius: 43px;
    padding-bottom:45px;
    position: relative;
}

.bs2-column img {
    border-radius: 43px;
}

.bs2c-text {
    padding:25px;
}

.bs2c-title {
    min-height:85px;
}

.bs2c-title a {
    color:inherit;
    text-decoration: none;
}

.read-more {
    font-weight: bold;
    text-align: right;
    position: absolute;
    bottom:20px;
    right:20px;
}


@media only screen and (max-width: 1023px) {
    .bs2-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 700px) {
    .bs2-container {
        grid-template-columns: 1fr;
    }
    .bs2c-title {
        min-height: 1px;
    }
}