.blog-wrapper {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 25px;
    padding: 50px 0;
}

.blog-wrapper>a {
    display: block;
    position: relative;
    padding: 5px 0 0 5px;
    cursor: pointer;
}

.blog-item-wrapper {
    position: relative;
}

.blog-img {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
    transition: transform .35s ease;
}

.blog-item .blog-img:hover {
    transform: scale(1.06);
}

.blog-item {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
}

.blog-info {
    color: #3D2613;
    padding: 20px 20px 0px;
}

.blog-info h4 {
    margin: 0;
    color: #01B1D7;
    font-size: 18px;
}

.blog-info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

.blog-banner {
    padding: 3em 0 !important;
}

.blog-detail p,
.blog-detail b {
    color: #555;
    font-size: 16px;
}

p img.aligncenter,
div img.aligncenter {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

img.alignright {
    margin-left: 3% !important;
}

img.alignright,
div.alignright {
    float: right;
    margin: 5px 0 13px 20px;
}

img.alignleft {
    margin-right: 3% !important;
}

img.alignleft,
div.alignleft {
    float: left;
    margin: 5px 20px 13px 0;
    max-width: 100%;
}

.is-layout-flow.wp-block-column.last-item {
    display: flex;
}

p.has-text-align-justify.last-text {
    margin-left: 3%;
}

.entry-content {
    position: relative;
}

.blog-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
}

.cover-photo-text {
    font-size: 13px !important;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.hyuga-img {
    width: calc(50% - 10px);
    object-fit: cover;
}


@media screen and (max-width: 768px) {
    .blog-wrapper{
	grid-template-columns: repeat(2, 1fr);
    }.col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 30%;
    }

}
@media screen and (max-width: 600px) {
    .blog-banner {
        padding: 1em 0 !important;
    }.blog-wrapper{
	grid-template-columns: repeat(1, 1fr);
    }
}