
body {
    background-color: #111B25;
}
.container {
	max-width: 1920px;
	/* padding-right: 50px;
	padding-left: 50px; */
    padding-left: 4vw;
    padding-right: 4vw;
	margin-right: auto;
	margin-left: auto;
}
.blog-section {
    padding: 140px 0;
}

.blog-full-content {
    display: grid;
	/* grid-gap:5.6vmin 4.8vmin; */
	grid-gap:30px;
	grid-template-columns: 1fr 1fr;
}

.blog-full-content {
    opacity: 0;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transform: translateY(-30px);
}
.blog-full-content.loaded {
    opacity: 1;
    transform: translateY(0px);
}
.blog-feature {
    height: 575px;
    width: 100%;
}
.blog-feature img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}
.card-content {
    padding-top: 20px;
}
.blog-title  {
	font-size: 41px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.826667px;
    margin-bottom: 20px;
}
.blog-title a {
	color: #fff;
	transition: .4s;
    letter-spacing: 0.826667px;
}
.blog-excerpt {
	color: #fff;
	font-size: 18px;
    line-height: 1.5;
	font-weight: 400;
	margin-bottom: 0;
    font-family: 'Rubik';
    letter-spacing: 0.137px;
}
.blog-more-link {
    color: rgb(238, 112, 127);
	font-size: 14px;
    font-family: 'Rubik';
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
    display: block;
    margin-top: 30px;
    letter-spacing: 0.137px;
}
.post-meta {
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.206px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}
.post-meta .post-meta__date {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    letter-spacing: 0.206px;
    line-height: 1.4;
    text-transform: capitalize;
}
.tags {
    padding-right: 20px;
}
.tags a{
    font-size: 20px;
    font-family: 'Rubik';
    font-weight: 400;
    letter-spacing: 0.183px;
    line-height: 1.4;
    color: #fff;
    display: inline-block;
}
.post-meta .tags {
    color: #fff;
    position: relative;
}
.post-meta .tags::before {
    position: absolute;
	content: "";
	top: 50%;
	right: 10px;
	width: 5px;
	height: 5px;
	background-color: rgb(238, 112, 127);
	border-radius: 50%;
	transform: translateY(-50%);
}
/* pagination-section */
.pagination-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 0;
}
.page-number {
    color: #fff;
    font-size: 18px;
    font-family: 'Rubik';
    font-weight: 400;
    line-height: 1.4;
    letter-spacing:0.183px;
}
.pagination-section a {
    color: #fff;
    font-size: 18px;
    font-family: 'Rubik';
    font-weight: 400;
    line-height: 1.4;
    letter-spacing:0.183px;
    display: flex;
    align-items: center;
}
pre {
	background-color: #202125;
    overflow-x: auto;
}

.gh-content pre {
	background-color: #202125;
    overflow-x: auto;
}

figure.kg-card.kg-image-card img {
    width: auto;
}
.gh-outer {
	padding-left: 0;
	padding-right: 0;
}

@media screen and (max-width: 991px) {
    .blog-feature {
        height:320px;
    }
    .blog-section {
        padding: 100px 0;
    }
}

@media screen and (max-width: 767px) {
    .blog-full-content {
        grid-template-columns: 1fr;
    }

    .blog-feature {
        height: auto;
    }
}

@media screen and (max-width: 575px) {
    .pagination-section a {
        font-size: 16px;
    }
}
