.delixa--post {
    display: grid;
    row-gap: 30px;
    transition: all 0.3s;
}

.image-box {
    width: 100%;
    height: 69vh;
    background: #ddd;
}

.blog-item {
    position: relative;
    overflow: hidden;
}
.blog-item a:hover {
    text-decoration: none;
}

.blog-item:hover img {
    transform: scale(1.07);
}
.blog-item .blog-content-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    background-color: #ffffff;
    padding: 15px;
}
@media (max-width: 575px) {
    .blog-item .blog-content-wrap {
        width: 88%;
    }
}
@media only screen and (min-width: 576px) {
    .blog-item .blog-content-wrap {
        padding: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-item .blog-content-wrap {
        padding: 15px;
        width: 88%;
    }
}
@media only screen and (min-width: 992px) {
    .blog-item .blog-content-wrap {
        padding: 30px;
        width: 80%;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-item .blog-content-wrap {
        padding: 50px;
    }
}
.blog-item img {
    width: 100%;
    transition: all 0.3s 0s ease-out;
    height: 69vh;
    object-fit: cover;
}

.blog-content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.blog-content-top .blog-post-date {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}
.blog-content-top .blog-category {
    font-size: 15px ;
    font-weight: 400;
    padding: 7px 20px;
    background-color: #7FE85A;
    border-radius: 18px;
    color: #121212;
}
@media only screen and (min-width: 1200px) {
    .blog-content-top .blog-category {
        padding: 5px 16px;
    }
}

.blog-single-title {
    font-size: 20px;
    font-weight: 600;
}
@media only screen and (min-width: 576px) {
    .blog-single-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-single-title {
        font-size: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-single-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-single-title {
        font-size: 24px;
    }
}
.blog-single-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-single-title a:hover {
    color: #7FE85A;
}

.blog-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
@media only screen and (min-width: 576px) {
    .blog-content-bottom {
        margin-top: 50px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-content-bottom {
        margin-top: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-content-bottom {
        margin-top: 50px;
    }
}
.blog-content-bottom .avatar-name {
    font-size: 18px;
    font-weight: 600;
    color: #7FE85A;
}
@media (max-width: 575px) {
    .blog-content-bottom .avatar-name {
        font-size: 16px;
    }
}
.blog-content-bottom .avatar-name a {
    background-image: linear-gradient(#7FE85A, #7FE85A), linear-gradient(#7FE85A, #7FE85A);
}

.blog-meta-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (max-width: 575px) {
    .blog-meta-wrapper {
        gap: 5px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-meta-wrapper {
        gap: 5px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-meta-wrapper {
        gap: 10px;
    }
}
.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    overflow: hidden;
    background-color: #fff;
}
.avatar-name {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
}
.avatar-name a {
    background-image: linear-gradient(#FF8851, #FF8851), linear-gradient(#FF8851, #FF8851);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
}
.avatar-name a:hover {
    background-size: 0 1px, 100% 1px;
}
.blog-btn-two a {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    padding: 9px 22px;
    color: #121212;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
}
@media (max-width: 575px) {
    .blog-btn-two a {
        padding: 6px 14px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-btn-two a {
        padding: 6px 14px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-btn-two a {
        padding: 9px 22px;
    }
}
.blog-btn-two a:hover {
    background-color: #7FE85A;
    border-color: #7FE85A;
}

 /*post style 2*/
.post-style-2 .blog-single {
    position: relative;
}
.post-style-2 .blog-single:hover .blog-category {
    background-color: #7FE85A;
}
.post-style-2 .blog-single:hover .blog-thumb img {
    transform: scale(1.07);
}
.post-style-2 .blog-single:hover .blog-title a {
    background-size: 0 1px, 100% 1px;
}
.post-style-2 .blog-single .blog-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.post-style-2 .image-box {
    width: 100%;
    height: 50vh;
    background: #f1f1f1;
}
@media only screen and (min-width: 576px) {
    .post-style-2 .blog-single .blog-content {
        left: 40px;
        bottom: 40px;
        max-width: 100%;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 768px) {
    .post-style-2 .blog-single .blog-content {
        left: 20px;
        bottom: 20px;
        max-width: 300px;
        padding-right: 0px;
    }
}
@media only screen and (min-width: 1200px) {
    .post-style-2 .blog-single .blog-content {
        left: 40px;
        bottom: 40px;
    }
}
.post-style-2 .blog-single .blog-category {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 7px 18px;
    transition: 0.3s;
    border-radius: 18px;
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fff;
    color: #121212;
}
@media only screen and (min-width: 576px) {
    .post-style-2 .blog-single .blog-category {
        top: 40px;
        left: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .post-style-2 .blog-single .blog-category {
        top: 20px;
        left: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .post-style-2 .blog-single .blog-category {
        padding: 3px 13px;
    }
}
@media only screen and (min-width: 1200px) {
    .post-style-2 .blog-single .blog-category {
        top: 40px;
        left: 40px;
        padding: 7px 18px;
    }
}

.post-style-2 .blog-thumb {
    position: relative;
    overflow: hidden;
    z-index: -1;
}
.post-style-2 .blog-thumb img {
    width: 100%;
    transition: all 0.3s 0s ease-out;
    height: 50vh;
    object-fit: cover;
}
@media (max-width: 575px) {
    .post-style-2 .blog-thumb img {
        height: 320px;
    }
}
.post-style-2 .blog-thumb::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(18, 18, 18, .80);
    z-index: 2;
}

.post-style-2 .read-post {
    font-weight: 500;
    font-size: 17px;
    color: #DDDDDD;
    display: inline-block;
    position: relative;
    padding-left: 12px;
    margin-bottom: 10px;
}
.post-style-2 .read-post::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #bebebe;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-style-2 .blog-title a {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: #DDDDDD;
    background-image: linear-gradient(#7FE85A, #7FE85A), linear-gradient(#7FE85A, #7FE85A);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    text-decoration: none;
}

.post-style-2 .blog-post-bottom {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}
@media only screen and (min-width: 1200px) {
    .post-style-2 .blog-post-bottom {
        margin-top: 50px;
    }
}
.post-style-2 .blog-post-bottom .post-date {
    font-weight: 500;
    font-size: 16px;
    color: #DDDDDD;
}

.post-style-2 .blog-meta-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
@media (max-width: 575px) {
    .post-style-2 .blog-meta-wrapper {
        gap: 5px;
    }
}
@media only screen and (min-width: 768px) {
    .post-style-2 .blog-meta-wrapper {
        gap: 5px;
    }
}
@media only screen and (min-width: 992px) {
    .post-style-2 .blog-meta-wrapper {
        gap: 10px;
    }
}
.post-style-2 .avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    overflow: hidden;
    background-color: #fff;
}

.post-style-2 .avatar-name a {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    background-image: linear-gradient(#FF8851, #FF8851), linear-gradient(#FF8851, #FF8851);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    text-decoration: none;
}
.post-style-2 .avatar-name a:hover {
    background-size: 0 1px, 100% 1px;
}

/*post style 3*/
.blog-post-top {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 80px;
}
@media only screen and (min-width: 576px) {
    .blog-post-top {
        gap: 10px;
        flex-direction: column;
        align-items: start;
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-post-top {
        gap: 30px;
        flex-direction: row;
        align-items: center;
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-post-top {
        gap: 15px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-post-top {
        gap: 30px;
    }
}
.blog-post-top .avatar-name {
    font-family: "Epilogue", sans-serif;
    color: #121212;
}
.blog-post-top .avatar-name a {
    background-image: linear-gradient(#121212, #121212), linear-gradient(#121212, #121212);
    color: #121212;
    text-decoration: none;
}
.blog-post-top .post-date {
    font: 400 16px "Kanit", sans-serif;
    color: #555;
}
.blog-three-single-card {
    padding: 20px;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}
@media only screen and (min-width: 992px) {
    .blog-three-single-card {
        padding: 15px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-three-single-card {
        padding: 30px;
    }
}
@media only screen and (min-width: 1400px) {
    .blog-three-single-card {
        padding: 40px;
    }
}
.blog-three-single-card:hover {
    border-color: #121212;
}
.blog-three-single-card:hover .blog-three-category a {
    background-color: #121212;
    color: #fff;
}
.blog-three-single-card:hover .blog-title a {
    background-size: 0 1px, 100% 1px;
}
.blog-three-content {
    padding-right: 0px;
}
@media only screen and (min-width: 768px) {
    .blog-three-content {
        padding-right: 20px;
    }
}
.blog-three-content .read-post {
    color: #555;
    font: 400 16px "Kanit", sans-serif;
    display: inline-block;
    position: relative;
    padding-left: 12px;
    margin-bottom: 10px;
}
.blog-three-content .read-post::before {
    background-color: #555;
}
.blog-three-content .blog-title {
    font: 500 20px "Epilogue", sans-serif;
    color: #121212;
}
@media only screen and (min-width: 576px) {
    .blog-three-content .blog-title {
        font-size: 17px;
        line-height: 1.4;
    }
}
@media only screen and (min-width: 768px) {
    .blog-three-content .blog-title {
        font-size: 20px;
        line-height: 1.2;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-three-content .blog-title {
        font-size: 22px;
    }
}
.blog-three-content .blog-title a {
    background-image: linear-gradient(#121212, #121212), linear-gradient(#121212, #121212);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
    text-decoration: none;
    color: #121212;
}
.blog-three-category {
    margin-top: 50px;
}
.blog-three-category a {
    font: 400 15px "Kanit", sans-serif;
    display: inline-block;
    padding: 7px 18px;
    border-radius: 18px;
    background-color: #ececec;
    color: #121212;
}

.read-post::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #BEBEBE;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/*post style 4*/
.blog-single-post:hover .blog-style-four-thumb img {
    transform: scale(1.05);
}
.blog-single-post:hover .blog-read-btn a {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}
.blog-post-content .blog-post-category {
    font: 500 16px "Outfit", sans-serif;
    display: inline-block;
    color: #D90A2C;
    margin-bottom: 10px;
}
.blog-post-content h5 {
    font: 400 20px "Outfit", sans-serif;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .blog-post-content h5 {
        font-size: 22px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-post-content h5 {
        font-size: 24px;
    }
}

.blog-post-content h5 a{
    text-decoration: none;
}

.blog-post-content h5 a:hover {
    color: #D90A2C;
}
.blog-read-btn a {
    font: 400 14px "Outfit", sans-serif;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #DDDDDD;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    color: #121212;
    transition: all 0.3s 0s ease-out;
}
.blog-read-btn a:hover {
    background-color: #D90A2C;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.blog-style-four-thumb {
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-style-four-thumb img {
    width: 100%;
    transition: all 0.3s 0s ease-out;
}
.blog-post-wrapper {
    margin-top: 60px;
}
@media only screen and (min-width: 1400px) {
    .blog-post-wrapper {
        margin-top: 100px;
    }
}

/*post style 5*/
.blog-five-thumb {
    overflow: hidden;
    border-radius: 30px 0 30px 0;
    transition: 0.3s;
    margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
    .blog-five-thumb {
        margin-bottom: 30px;
    }
}
.blog-five-thumb img {
    width: 100%;
    transition: all 0.3s 0s ease-out;
}
.blog-five-single-inner:hover .blog-five-thumb {
    border-radius: 0 30px 0 30px;
}
.blog-five-single-inner:hover .blog-five-thumb img {
    transform: scale(1.08);
}
.blog-five-thumb-content .blog-post-date {
    font: 400 16px "DM Sans", sans-serif;
    color: #121212;
    margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
    .blog-five-thumb-content .blog-post-date {
        margin-bottom: 15px;
        font-size: 18px;
    }
}
.blog-five-thumb-content .blog-post-date span {
    color: #555555;
}
.blog-post-title {
    font: 400 22px "Space Grotesk", serif;
}

@media only screen and (min-width: 992px) {
    .blog-post-title {
        font-size: 24px;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-post-title {
        font-size: 28px;
    }
}
@media only screen and (min-width: 1400px) {
    .blog-post-title {
        font-size: 32px;
    }
}
.blog-post-title a:hover {
    color: #FD6535;
    text-decoration: none;
}

/*post style 6*/
.post-avatar-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
@media only screen and (min-width: 576px) {
    .post-avatar-box .blog-meta-wrapper {
        gap: 5px;
    }
}
@media only screen and (min-width: 768px) {
    .post-avatar-box .blog-meta-wrapper {
        gap: 10px;
    }
}
.post-avatar-box .avatar-name {
    font: 400 18px "Epilogue", sans-serif;
    color: #121212;
}
@media only screen and (min-width: 576px) {
    .post-avatar-box .avatar-name {
        font-size: 15px;
    }
}
@media only screen and (min-width: 768px) {
    .post-avatar-box .avatar-name {
        font-size: 18px;
    }
}
.post-avatar-box .post-date {
    font: 400 16px "Poppins", serif;
    color: #121212;
}
@media only screen and (min-width: 576px) {
    .post-avatar-box .post-date {
        font-size: 14px;
    }
}
@media only screen and (min-width: 768px) {
    .post-avatar-box .post-date {
        font-size: 16px;
    }
}
.post-avatar-box .post-date span {
    margin-right: 7px;
    display: inline-block;
}
@media only screen and (min-width: 576px) {
    .post-avatar-box .post-date span {
        margin-right: 4px;
    }
}
@media {
    .post-avatar-box .post-date span {
        margin-right: 7px;
    }
}
.post-avatar-box .avatar-img {
    border: 0;
}
.blog-thumb-six img{
    transition: all 0.3s 0s ease-out;
}
.blog-post-single:hover .blog-thumb-six img {
    transform: scale(1.08);
}
.blog-post-single:hover .blog-six-title a {
    background-size: 0 2px, 100% 2px;
}
.blog-six-title {
    font: 400 20px/1.45 "Epilogue", sans-serif;
}
@media only screen and (min-width: 576px) {
    .blog-six-title {
        font-size: 18px;
    }
}
@media only screen and (min-width: 768px) {
    .blog-six-title {
        font-size: 20px;
    }
}
@media only screen and (min-width: 992px) {
    .blog-six-title {
        font-size: 22px;
        line-height: 1.3;
    }
}
@media only screen and (min-width: 1200px) {
    .blog-six-title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 1400px) {
    .blog-six-title {
        font-size: 24px;
    }
}
.blog-six-title a {
    background-image: linear-gradient(#7FE85A, #7FE85A), linear-gradient(#7FE85A, #7FE85A);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;

}
.blog-six-title a:hover {
    text-decoration: none;
}
.blog-thumb-six {
    margin-bottom: 25px;
    overflow: hidden;
}
