.blog-post {
    padding: 64px 0px 30px;
    text-align: center;
}

.blog-post .blog-head:after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 136px;
    height: 6px;
    transform: translate(-50%, 100%);
    background: #A9AB00;
}

.blog-post .blog-head {
    position: relative;
    margin: 0 auto 32px;
    max-width: 630px;
    padding-bottom: 32px;
}

.blog-post .blog-head h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 120%;
    color: #000000;
    margin: 0px 0px 32px;
}

@media (max-width: 767px) {
    .blog-post .blog-head {
        padding-bottom: 20px;
        margin: 0 auto 40px;
    }

    .blog-post .blog-head h1 {
        font-size: 32px;
        margin: 0px 0px 20px;
    }
}

.blog-post .blog-head p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
    margin: 0px;
}

.blog-post .blog-cat {
    width: 100%;
    float: none;
    margin: 0px 0px 30px;
}

.blog-post .blog-cat .container {
    justify-content: center;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (max-width: 767px) {
    body .blog-post .blog-cat .container {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }

    body .blog-post .blog-cat ul {
        gap: 0;
        width: 100%;
        row-gap: 12px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .blog-post .blog-cat ul li {
        width: 49%;
    }
}

.blog-cat h3 {
    margin: 0;
    text-transform: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

.blog-post .blog-cat ul {
    list-style: none;
    padding: 0px;
    margin: 0;
    display: flex;
    gap: 32px;
}

.blog-post .blog-cat ul li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    display: block;
    background: #F3F3F3;
    padding: 10px;
}

.blog-post .blog-cat ul li.active a {
    background: #A9AB00;
}

.blog-post .blog-cat ul li:last-child a {
    border-bottom: 0;
}

.blog-post .blog-grid .card-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
    row-gap: 34px;
}

.blog-grid .blog-card {
    padding: 0px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 33.33%;
}

.blog-grid .blog-card:hover {
    transform: translateY(-8px);
}

.blog-grid .card-inner .blog-card a {
    overflow: hidden;
    box-sizing: border-box;
    background: #FCFCFC;
    border: 0.5px solid #DBD9D9;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: block;
    height: 100%;
}

.blog-card .card-image {
    padding: 10px;
    border-radius: 10px;
    height: 232px;
}

.blog-card .card-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    height: 100%;
}

.blog-card .card-content {
    padding: 24px;
    text-align: left;
}

.blog-card .card-content h3 {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    margin: 0px 0px 15px;
    color: #111;
    text-transform: none;
    text-align: left;
}

.blog-card .card-content p {
    color: #0D0101;
    margin: 20px 0px 24px;
}

.blog-card .view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Archivo", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #0D0101;
    padding: 0px 8px 10px;
}

.blog-card .view-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #a9ab00;
    transition: width 0.3s ease;
}

.blog-grid .blog-card:hover .view-more::after {
    width: 100%;
}

.blog-grid .blog-card .view-more .arrow {
    transition: transform 0.3s ease;
}

.blog-grid .blog-card:hover .view-more .arrow {
    transform: translateX(5px);
}

@media(max-width: 992px) {
    .blog-grid .blog-card {
        width: 50%;
    }
}

@media(max-width: 520px) {
    .blog-grid .blog-card {
        width: 100%;
    }
}

.blog-post p.loading {
    width: 100%;
    text-align: center;
}

.blog-load-more {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.blog-load-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    max-width: 148px;
    background: #AAAD00;
    border-radius: 8px;
    height: 72px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
}

@media(max-width: 991px) {
    .blog-card .card-content h3 {
        font-size: 28px;
        line-height: 24px;
    }
}

@media(max-width: 767px) {
    .blog-card .card-content h3 {
        font-size: 24px;
        margin: 0px 0px 10px;
        line-height: 28px;
    }

    .blog-card .card-content p {
        margin-top: 0px;
        margin-bottom: 15px;
    }

    .blog-load-more a {
        height: 52px;
    }
}

.single-post-wrap .post-hero {
    padding: 74px 0px 40px;
}

.single-post-wrap .post-hero .container {
    display: flex;
    align-items: center;
}

@media(max-width: 767px) {
    .single-post-wrap .post-hero {
        padding-bottom: 0px;
    }

    body .single-post-wrap .post-content {
        padding: 30px 20px 0px;
    }

    body .single-post-wrap .post-hero .container {
        flex-direction: column-reverse;
    }

    body .single-post-wrap .post-hero .hero-right {
        padding: 0px 0px 30px 0px;
        max-width: 100%;
        width: 100%;
    }

    body .single-post-wrap .post-hero .hero-right h1 {
        margin-bottom: 0px;
        font-size: 28px;
        line-height: 34px;
    }
}

.single-post-wrap .post-hero .hero-left img {
    max-width: 100%;
    border-radius: 10px;
}

@media(max-width: 767px) {
    .single-post-wrap .post-hero .hero-left {
        width: 100%;
    }

    .single-post-wrap .post-hero .hero-left img {
        width: 100%;
    }
}

.single-post-wrap .post-hero .hero-right {
    padding: 25px 0px 25px 30px;
    max-width: 600px;
    min-width: 50%;
}

.single-post-wrap .post-hero .hero-right h1 {
    background: transparent;
    padding: 0px;
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #0D0101;
    text-align: left;
    text-transform: none;
    margin-bottom: 20px;
}

.single-post-wrap .post-hero .hero-right p {
    margin: 0px;
    color: #0D0101;
}

.single-post-wrap .post-content {
    padding: 30px 20px;
}

.single-post-wrap .post-content .container {
    max-width: 1000px;
    padding: 0px;
}

body .single-post-wrap .post-content h2 {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin: 0px 0px 20px;
    letter-spacing: -0.38px;
    color: #000000;
}

.single-post-wrap .post-content p {
    margin: 0px 0px 20px;
    color: #000000;
    line-height: 24px;
    font-family: "Archivo", sans-serif;
}

.single-post-wrap .post-content p strong {
    font-size: 20px;
}

@media (min-width: 768px) {
    .single-post-wrap .post-content p {
        font-size: 16px;
    }
}

.single-post-wrap .post-content p:last-of-type {
    margin-bottom: 0px;
}

.related-posts {
    padding: 64px 0px;
}

.related-posts h2 {
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 45px;
    line-height: 120%;
    text-align: center;
    color: #000000;
    margin-top: 0px;
}

.related-grid {
    display: flex;
    margin: 0px -10px;
}

.related-grid .related-item {
    padding: 0px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 33.33%;
}

@media(max-width: 992px) {
    .related-posts h2 {
        font-size: 36px;
    }

    .related-grid .related-item {
        width: 50%;
    }
}

@media(max-width: 991px) {
    body .related-item .related-content h3 {
        font-size: 28px;
        line-height: 24px;
    }
}

@media(max-width: 767px) {
    .related-posts h2 {
        font-size: 28px;
    }

    body .related-item .related-content h3 {
        font-size: 24px;
        margin: 0px 0px 10px;
        line-height: 28px;
    }

    .related-grid {
        flex-direction: column;
        gap: 30px;
    }

    .related-grid .related-item {
        width: 100%;
    }
}

@media(max-width: 520px) {
    .related-grid .related-item {
        width: 100%;
    }
}

.related-grid .related-item:hover {
    transform: translateY(-8px);
}

.related-grid .related-item .item-inner {
    overflow: hidden;
    box-sizing: border-box;
    background: #FCFCFC;
    border: 0.5px solid #DBD9D9;
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.related-item .related-img {
    padding: 10px;
    border-radius: 10px;
}

.related-item .related-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.related-item .related-content {
    padding: 24px;
}

.related-item .related-content h3 {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    margin: 0px 0px 15px;
    color: #111;
    text-transform: none;
    text-align: left;
}

.related-item .related-content p {
    font-size: 18px;
    color: #0D0101;
    margin-bottom: 30px;
}

.related-item .view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Archivo", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #0D0101;
    padding: 0px 8px 10px;
}

.related-item .view-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #a9ab00;
    transition: width 0.3s ease;
}

.related-grid .related-item:hover .view-more::after {
    width: 100%;
}

.related-grid .related-item .view-more .arrow {
    transition: transform 0.3s ease;
}

.related-grid .related-item:hover .view-more .arrow {
    transform: translateX(5px);
}