.section-head {
    width: 100%;
    height: 290px;
    background-image: url(../img/top-bar-blog.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.page-title {
    position: relative;
    top: 180px;
    margin: 0;
    font-size: 43px;
    font-weight: 200;
    color: #FFF;
}

.blogbox {
    width: 420px;
    background-color: #FFF;
    overflow: hidden;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 50%);
    transition: all 0.2s ease;
    border-radius: 12px;
    cursor: pointer;
}

.blogbox:hover {
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 50%);
    transition: all 0.2s ease;
}

.blogimg {
    width: 420px;
    height: 300px;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blogbody {
    height: 240px;
    padding-top: 28px;
    padding-left: 25px; 
    padding-right: 25px; 
    background-color: #FFF;
}


.blog-body-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-body-short {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.blog-body-more {
    padding: 25px;
    background-color: #FFF;
}

.blog-body-button {
    border: 1px solid #D7B756;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    border-radius: 8px;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 15%);
}

.blog-body-button-arrow {
    position: relative;
    margin-bottom: -2px;
    width: 12px;
    height: auto;
  }

.grid-container {
    display: grid;
    grid-template-columns: 420px 420px 420px;
    grid-template-rows: auto;
    column-gap: 35px;
    row-gap: 35px;
}


.pagination-container {
    width: 100%; 
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    margin-top: 30px;
    color: #000;
}

.pagination-container a {
    color: #000;
    margin-left: 5px;
    margin-right: 5px;
}

.pagination-container a:hover {
    color: #D7B756;
}

