.blog-hero .article_left {
    max-width: 1080px;
    margin: 0 auto;
}

.blog-hero .article_left p {
    font-size: 18px;
    line-height: 1.8;
}

.blog-listing,
.blog-post,
.related-posts {
    padding: 80px 0;
}

.blog-listing {
    background: #fff;
}

.blog-section-heading {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.blog-section-heading h2 {
    color: #1a4d2e;
    margin-bottom: 15px;
}

.blog-section-heading p {
    color: #4f4f4f;
    font-size: 17px;
    line-height: 1.8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.blog-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    border-top: 4px solid #ff9f29;
    box-shadow: 1px 1px 35px 8px rgb(0 0 0 / 8%);
    transition: transform .25s linear, box-shadow .25s linear;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 1px 12px 38px 8px rgb(0 0 0 / 14%);
}

.blog-card__image-link {
    display: block;
    overflow: hidden;
}

.blog-card__image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.blog-card__date,
.blog-post__meta,
.blog-post__meta a {
    color: #6b6b6b;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.blog-card__date {
    display: block;
    margin-bottom: 12px;
}

.blog-card h3 {
    margin-bottom: 14px;
    color: #1a4d2e;
    font-size: 25px;
    line-height: 1.25;
}

.blog-card h3 a {
    color: inherit;
    transition: color .2s linear;
}

.blog-card h3 a:hover {
    color: #ff9f29;
}

.blog-card p {
    flex: 1;
    color: #4f4f4f;
    line-height: 1.75;
}

.blog-card__button.btn_1 {
    display: inline-flex;
    width: 150px;
    height: 48px;
    margin-top: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
}

.blog-card__button.btn_1:hover {
    color: #000;
}

.blog-post {
    background: #fff;
}

.blog-post__inner {
    max-width: 920px;
    margin: 0 auto;
}

.blog-post__featured {
    margin: 0 0 28px;
}

.blog-post__featured img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 1px 1px 35px 8px rgb(0 0 0 / 10%);
}

.blog-post__meta {
    display: flex;
    margin-bottom: 35px;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
}

.blog-post__meta i {
    margin-right: 7px;
    color: #ff9f29;
}

.blog-post__content {
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.blog-post__content .lead {
    color: #1a4d2e;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
}

.blog-post__content h2 {
    margin: 42px 0 18px;
    color: #1a4d2e;
    font-size: 36px;
    line-height: 1.25;
}

.blog-post__content h3 {
    margin: 30px 0 12px;
    color: #1a4d2e;
    font-size: 25px;
}

.blog-post__content strong a {
    color: inherit;
    text-decoration: none;
}

.blog-post__content strong a:hover {
    color: #ff9f29;
}

.blog-post__content p,
.blog-post__content li {
    font-size: 16px;
    line-height: 1.9;
}

.blog-post__content p {
    margin-bottom: 20px;
}

.blog-post__content ul {
    margin: 0 0 22px 22px !important;
}

.blog-post__content li {
    margin-bottom: 10px;
    list-style: disc !important;
}

.blog-post__content li::marker {
    color: #ff9f29;
}

.blog-post__callout {
    margin: 35px 0;
    padding: 25px 28px;
    color: #fff;
    background: #1a4d2e;
    border-left: 5px solid #ff9f29;
    border-radius: 5px;
}

.blog-post__callout p {
    margin: 0;
    color: #fff;
}

.post-navigation {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid #e2e2e2;
}

.post-navigation a {
    display: flex;
    min-height: 105px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: #1a4d2e;
    border-radius: 6px;
    transition: background .2s linear, transform .2s linear;
}

.post-navigation a:hover {
    color: #000;
    background: #ff9f29;
    transform: translateY(-3px);
}

.post-navigation__next {
    text-align: right;
}

.post-navigation small {
    margin-bottom: 5px;
    color: #ff9f29;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.post-navigation a:hover small {
    color: #000;
}

.post-navigation strong {
    font-family: "SharpSansNo1-Bold", sans-serif;
    font-size: 18px;
    line-height: 1.35;
}

.related-posts {
    background: #f5f5f5;
}

.related-posts .blog-card__image {
    height: 205px;
}

.related-posts .blog-card h3 {
    font-size: 22px;
}

.blog-back {
    margin-top: 35px;
    text-align: center;
}

.blog-back .btn_1 {
    display: inline-flex;
    width: 190px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
}

.blog-nav-link.active {
    color: #ff9f29 !important;
}

@media (max-width: 1199px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-card__image {
        height: 260px;
    }
}

@media (max-width: 992px) {
    .blog-hero {
        padding: 80px 0;
    }

    .blog-hero .article_left p {
        padding: 0 30px !important;
    }

    .blog-listing,
    .blog-post,
    .related-posts {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 65px 0;
    }

    .blog-hero .article_left {
        padding: 0 15px;
    }

    .blog-hero .article_left p {
        padding: 0 !important;
        font-size: 15px !important;
    }

    .blog-hero .combo_btn {
        align-items: center;
        flex-direction: column;
    }

    .blog-hero .combo_btn a {
        width: 190px;
        margin: 5px 0;
    }

    .blog-listing,
    .blog-post,
    .related-posts {
        padding: 45px 0;
    }

    .blog-section-heading {
        margin-bottom: 30px;
    }

    .blog-section-heading p {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card__image,
    .related-posts .blog-card__image {
        height: 225px;
    }

    .blog-card__body {
        padding: 22px;
    }

    .blog-card h3 {
        font-size: 22px !important;
    }

    .blog-post__featured img {
        min-height: 230px;
    }

    .blog-post__content .lead {
        font-size: 17px !important;
    }

    .blog-post__content h2 {
        margin-top: 32px;
        font-size: 27px !important;
    }

    .blog-post__content h3 {
        font-size: 22px !important;
    }

    .blog-post__content p,
    .blog-post__content li {
        font-size: 15px !important;
    }

    .blog-post__callout {
        padding: 22px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-navigation__next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .blog-card__image,
    .related-posts .blog-card__image {
        height: 205px;
    }

    .blog-post__featured img {
        min-height: 205px;
    }
}
