/* =========================================
   BLOG HERO SECTION
========================================= */

:root {

    /* Colors */
    --blog-bg: #F6F6F6;
    --blog-black: #000000;
    --blog-heading: #181C1B;
    --blog-text: #747474;
    --blog-yellow: #ffea00;
    --blog-white: #ffffff;
    --blog-border: #dddddd;
    --blog-placeholder: #9b9b9b;

    /* Fonts */
    --blog-heading-font: 'Poppins', sans-serif;
    --blog-body-font: 'Inter', sans-serif;

    /* Radius */
    --blog-radius-sm: 8px;
    --blog-radius-md: 14px;
    --blog-radius-lg: 24px;

    /* Transition */
    --blog-transition: all 0.3s ease;
}

/* =========================================
  BANNER SECTION
========================================= */

.blog-hero-section {
    position: relative;
    padding: 100px 0;
    background: var(--blog-bg);
    overflow: hidden;
}

.blog-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 80px;
}

/* =========================================
   LEFT CONTENT
========================================= */


.blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;
    margin-bottom: 28px;

    background: var(--blog-yellow);
    border-radius: var(--blog-radius-sm);

    font-family: var(--blog-heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--blog-black);
}

.blog-title {
    margin-bottom: 28px;

    font-family: var(--blog-heading-font);
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--blog-black);
}

.blog-description {
    max-width: 590px;
    margin-bottom: 42px;
    font-family: var(--blog-body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: -0.02em;
    color: var(--blog-text);
}

/* =========================================
   SEARCH BOX
========================================= */

.blog-search-box {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.blog-search-box input {
    width: 100%;
    height: 64px;

    padding: 0 62px 0 22px;

    background: var(--blog-white);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius-md);

    outline: none;

    font-family: var(--blog-body-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--blog-black);

    transition: var(--blog-transition);
}

.blog-search-box input::placeholder {
    color: var(--blog-placeholder);
}

.blog-search-box input:focus {
    border-color: var(--blog-black);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.blog-search-box button {
    position: absolute;
    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    color: #8d8d8d;
    font-size: 18px;

    cursor: pointer;
    transition: var(--blog-transition);
}

.blog-search-box button:hover {
    color: var(--blog-black);
}

/* =========================================
   IMAGE
========================================= */

.blog-hero-image {
    position: relative;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;
    object-fit: cover;

    border-radius: var(--blog-radius-lg);
}

/* =========================================
   LARGE DEVICES
========================================= */

@media (max-width: 1199px) {

    .blog-hero-section {
        padding: 90px 0;
    }

    .blog-hero-wrapper {
        gap: 60px;
        grid-template-columns: minmax(320px, 440px) 1fr;
    }

    .blog-description {
        font-size: 17px;
        line-height: 28px;
    }
}

/* =========================================
   TABLETS
========================================= */

@media (max-width: 991px) {

    .blog-hero-section {
        padding: 80px 0;
    }

    .blog-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-hero-content {
        order: 2;
    }

    .blog-hero-image {
        order: 1;
    }

    .blog-description {
        max-width: 100%;
    }

    .blog-hero-image img {
        min-height: 450px;
    }
}

/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width: 767px) {

    .blog-hero-section {
        padding: 70px 0;
    }

    .blog-hero-wrapper {
        gap: 40px;
    }

    .blog-tag {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 22px;
    }

    .blog-title {
        margin-bottom: 22px;
        line-height: 1.12;
    }

    .blog-description {
        margin-bottom: 32px;

        font-size: 16px;
        line-height: 28px;
    }

    .blog-search-box {
        max-width: 100%;
    }

    .blog-search-box input {
        height: 58px;
        font-size: 14px;
    }

    .blog-hero-image img {
        min-height: 340px;
        border-radius: 18px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .blog-hero-section {
        padding: 60px 0;
    }

    .blog-hero-wrapper {
        gap: 32px;
    }

    .blog-title {
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.15;
    }

    .blog-description {
        font-size: 15px;
        line-height: 26px;
    }

    .blog-search-box input {
        height: 54px;
        padding-inline: 18px 54px;
    }

    .blog-search-box button {
        right: 16px;
        font-size: 16px;
    }

    .blog-hero-image img {
        min-height: 260px;
    }
}


/* Featured Blog Section */
/* =========================================
   FEATURED BLOG SECTION
========================================= */

.featured-blog-section {
    position: relative;
    padding: 100px 0;
    background: var(--blog-bg);
}

/* =========================================
   SECTION HEADING
========================================= */

.featured-blog-heading {
    margin-bottom: 50px;
    text-align: center;
}

.featured-blog-heading h2 {
    font-family: var(--blog-heading-font);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--blog-black);
}

/* =========================================
   MAIN FEATURED CARD
========================================= */

.featured-blog-main-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    overflow: hidden;

    margin-bottom: 26px;

    background: var(--blog-white);
    border-radius: var(--blog-radius-lg);
}

.featured-blog-main-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-blog-main-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;
    object-fit: cover;
}

.featured-blog-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.featured-blog-category {
    display: inline-block;

    margin-bottom: 20px;

    font-family: var(--blog-heading-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #989898;
}

.featured-blog-title {
    margin-bottom: 24px;

    font-family: var(--blog-heading-font);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--blog-heading);
}

.featured-blog-description {
    margin-bottom: 40px;

    font-family: var(--blog-body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--blog-text);
}

/* =========================================
   AUTHOR
========================================= */

.featured-blog-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-blog-author-image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-blog-author-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.featured-blog-author-name {
    position: relative;

    padding-right: 18px;

    font-family: var(--blog-heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--blog-black);
}

.featured-blog-author-name::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;

    width: 1px;
    height: 14px;

    background: #d5d5d5;

    transform: translateY(-50%);
}

.featured-blog-author-date {
    font-family: var(--blog-body-font);
    font-size: 14px;
    color: #8f8f8f;
}

/* =========================================
   SMALL BLOG GRID
========================================= */

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

.featured-blog-card {
    display: flex;
    overflow: hidden;

    background: var(--blog-white);
    border-radius: 18px;

    transition: var(--blog-transition);
}

.featured-blog-card:hover {
    transform: translateY(-4px);
}

.featured-blog-card-image {
    flex: 0 0 48%;
}

.featured-blog-card-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.featured-blog-card-content {
    padding: 18px 18px 16px;
}

.featured-blog-card-category {
    display: inline-block;

    margin-bottom: 12px;

    font-family: var(--blog-heading-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b5b5b5;
}

.featured-blog-card-title {
    margin-bottom: 18px;

    font-family: var(--blog-heading-font);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--blog-black);
}

.featured-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.featured-blog-card-meta span {
    position: relative;

    font-family: var(--blog-body-font);
    font-size: 12px;
    color: #8b8b8b;
}

.featured-blog-card-meta span:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;

    width: 1px;
    height: 10px;

    background: #d4d4d4;

    transform: translateY(-50%);
}

/* =========================================
   LARGE DEVICES
========================================= */

@media (max-width: 1199px) {

    .featured-blog-main-content {
        padding: 45px;
    }

    .featured-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   TABLET DEVICES
========================================= */

@media (max-width: 991px) {

    .featured-blog-section {
        padding: 80px 0;
    }

    .featured-blog-main-card {
        grid-template-columns: 1fr;
    }

    .featured-blog-main-image img {
        min-height: 420px;
    }

    .featured-blog-main-content {
        padding: 40px;
    }

    .featured-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width: 767px) {

    .featured-blog-section {
        padding: 70px 0;
    }

    .featured-blog-heading {
        margin-bottom: 36px;
    }

    .featured-blog-main-image img {
        min-height: 320px;
    }

    .featured-blog-main-content {
        padding: 30px 24px;
    }

    .featured-blog-description {
        margin-bottom: 28px;

        font-size: 15px;
        line-height: 1.8;
    }

    .featured-blog-card {
        flex-direction: column;
    }

    .featured-blog-card-image {
        flex: unset;
    }

    .featured-blog-card-image img {
        height: 220px;
    }

    .featured-blog-card-content {
        padding: 22px;
    }

    .featured-blog-card-title {
        font-size: 20px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .featured-blog-section {
        padding: 60px 0;
    }

    .featured-blog-main-image img {
        min-height: 260px;
    }

    .featured-blog-main-content {
        padding: 26px 20px;
    }

    .featured-blog-author-meta {
        gap: 10px;
    }

    .featured-blog-author-name {
        padding-right: 12px;
    }

    .featured-blog-card-content {
        padding: 20px;
    }
}

/* Author Image */

.featured-blog-author-image {
    flex-shrink: 0;
}

.featured-blog-author-image img,
.author-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.featured-blog-author-image img {
    object-fit: cover;
    display: block;
}

.author-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a7b61 0%, #b4d53f 100%);
    color: #ffffff;
    font-family: var(--blog-heading-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Blog Posts Section */
/* =========================================
   BLOG POSTS SECTION
========================================= */

.blog-posts-section {
    position: relative;
    padding: 100px 0;
    background: var(--blog-white);
}

/* =========================================
   HEADER
========================================= */

.blog-posts-header {
    margin-bottom: 60px;
    text-align: center;
}

.blog-posts-title {
    max-width: 940px;
    margin-inline: auto;
    margin-bottom: 34px;

    font-family: var(--blog-heading-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0;
    color: var(--blog-black);
}

/* =========================================
   CATEGORY FILTERS
========================================= */

.blog-posts-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-category-btn {
    height: 42px;
    padding-inline: 22px;

    border: 1px solid #d8d8d8;
    border-radius: 999px;

    background: transparent;

    font-family: var(--blog-body-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--blog-black);

    cursor: pointer;
    transition: var(--blog-transition);
}

.blog-category-btn:hover, .blog-category-btn.active {
    color: var(--blog-white);
    font-family: var(--blog-heading-font);
    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);
}

/* =========================================
   POSTS GRID
========================================= */

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

/* =========================================
   CARD
========================================= */

.blog-post-card {
    overflow: hidden;

    background: #f8f8f8;
    border-radius: 18px;

    transition: var(--blog-transition);
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-card-image {
    display: block;
    overflow: hidden;
}

.blog-post-card-image img {
    width: 100%;
    height: 240px;

    display: block;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-card-image img {
    transform: scale(1.04);
}

/* =========================================
   CONTENT
========================================= */

.blog-post-card-content {
    padding: 40px;
}

.blog-post-card-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #989898;
    font-family: var(--blog-body-font);
}

.blog-post-card-title {
    margin-bottom: 16px;
}

.blog-post-card-title a {
    text-decoration: none;
    font-family: var(--blog-heading-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
    color: var(--blog-heading);

    transition: var(--blog-transition);
}

.blog-post-card-title a:hover {
    color: #0a7b61;
}

.blog-post-card-description {
    margin-bottom: 24px;

    font-family: var(--blog-body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--blog-text);
}

/* =========================================
   FOOTER
========================================= */

.blog-post-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.blog-post-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-post-card-author-avatar img,
.blog-author-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.blog-post-card-author-avatar img {
    display: block;
    object-fit: cover;
}

.blog-author-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a7b61 0%, #b4d53f 100%);
    color: #ffffff;
    font-family: var(--blog-heading-font);
    font-size: 12px;
    font-weight: 600;
}

.blog-post-card-author-name {
    font-family: var(--blog-body-font);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}
.blog-post-card-date {
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
    line-height: 18.55px;
    letter-spacing: 0px;
    vertical-align: middle;
    color:#989898;

}
/* =========================================
   EMPTY STATE
========================================= */

.blog-posts-empty {
    grid-column: 1/-1;
    padding: 80px 20px;
    text-align: center;
}

.blog-posts-empty h3 {
    margin-bottom: 14px;

    font-family: var(--blog-heading-font);
    font-size: 32px;
    font-weight: 600;
}

.blog-posts-empty p {
    font-family: var(--blog-body-font);
    font-size: 16px;
    color: var(--blog-text);
}

/* =========================================
   PAGINATION
========================================= */

.blog-pagination-wrapper {
    margin-top: 60px;
}

/* =========================================
   LOADING
========================================= */

.loading-state {
    position: fixed;
    inset: 0;
    z-index: 99;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

.loading-state .spinner-border {
    width: 54px;
    height: 54px;

    border-width: 4px;
    color: #0a7b61;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .blog-posts-section {
        padding: 80px 0;
    }

    .blog-posts-grid {
        gap: 24px;
    }

    .blog-post-card-title a {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .blog-posts-section {
        padding: 70px 0;
    }

    .blog-posts-header {
        margin-bottom: 40px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-card-image img {
        height: 220px;
    }

    .blog-post-card-content {
        padding: 22px;
    }

    .blog-post-card-title a {
        font-size: 22px;
    }
    .blog-post-card-content {
        padding: 25px;
    }
}

@media (max-width: 575px) {

    .blog-posts-title {
        margin-bottom: 28px;
    }

    .blog-posts-categories {
        gap: 10px;
    }

    .blog-category-btn {
        height: 38px;
        padding-inline: 18px;
        font-size: 13px;
    }

    .blog-post-card-content {
        padding: 20px;
    }

    .blog-post-card-title a {
        font-size: 20px;
    }

    .blog-post-card-description {
        font-size: 14px;
    }
}

/* =========================================
   PAGINATION
========================================= */

.pagination-wrapper {
    margin-top: 60px;
}

.pagination {
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-item .page-link {
    min-width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 10px !important;
    border: 1px solid #016D5B;

    background: transparent;
    box-shadow: none;

    font-family: var(--blog-body-font);
    font-size: 14px;
    font-weight: 500;
    color: #016D5B;

    transition: var(--blog-transition);
}

.pagination .page-item .page-link:hover {
    border-color: #016D5B;
    background: #016D5B;
    color: #ffffff;
}

.pagination .page-item.active .page-link {
    border-color: #016D5B;
    background: #016D5B;
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.45;
    pointer-events: none;
}

.pagination .page-link:focus {
    box-shadow: none;
}

/* Mobile */

@media (max-width: 575px) {

    .pagination {
        gap: 8px;
    }

    .pagination .page-item .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding-inline: 14px;
    }
}


/* =========================================
   SINGLE POST HERO
========================================= */

.single-post-hero {
    position: relative;
    padding: 80px 0 0px;
    background: var(--blog-bg);
}

/* =========================================
   BREADCRUMB
========================================= */

.single-post-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 26px;
}

.single-post-breadcrumb a,
.single-post-breadcrumb span {
    font-family: var(--blog-body-font);
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
}

.single-post-breadcrumb a {
    text-decoration: none;
    transition: var(--blog-transition);
}

.single-post-breadcrumb a:hover {
    color: var(--blog-black);
}

/* =========================================
   TITLE
========================================= */

.single-post-title {
    max-width: 760px;
    margin-bottom: 26px;

    font-family: var(--blog-heading-font);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 500;
    line-height: 80px;
    letter-spacing: -0.04em;
    color: var(--blog-black);
}
.single-post-date {
    color: #989898 !important;
}

/* =========================================
   DESCRIPTION
========================================= */

.single-post-description {
    max-width: 720px;
    margin-bottom: 36px;
    display: none;
    font-family: var(--blog-body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: -0.02em;
    color: var(--blog-text);
}

/* =========================================
   META
========================================= */

.single-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-post-author-avatar {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #0a7b61 0%,
        #b4d53f 100%
    );

    color: #ffffff;

    font-family: var(--blog-heading-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    flex-shrink: 0;
}

.single-post-author-name,
.single-post-date {
    font-family: var(--blog-body-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--blog-black);
}

.single-post-meta-divider {
    width: 1px;
    height: 18px;
    background: #d7d7d7;
}

/* =========================================
   FEATURED IMAGE
========================================= */

.single-post-featured-image {
    overflow: hidden;
    border-radius: 24px;
}

.single-post-featured-image img {
    width: 100%;
    height: 823px;

    display: block;
    object-fit: cover;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .single-post-hero {
        padding: 70px 0 0px;
    }

    .single-post-description {
        font-size: 17px;
    }

    .single-post-meta {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {

    .single-post-hero {
        padding: 60px 0 0px;
    }

    .single-post-breadcrumb {
        margin-bottom: 22px;
    }

    .single-post-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .single-post-meta {
        gap: 14px;
    }

    .single-post-featured-image {
        border-radius: 18px;
    }
}

@media (max-width: 575px) {

    .single-post-title {
        line-height: 1.05;
    }

    .single-post-description {
        margin-bottom: 30px;
    }

    .single-post-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-post-meta-divider {
        display: none;
    }
}


/* =========================================
   SINGLE POST CONTENT SECTION
========================================= */

.single-post-content-section {
    position: relative;
    padding: 55px 0 55px;
    background: var(--blog-bg);
}

/* =========================================
   LAYOUT
========================================= */

.single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: start;
}

/* =========================================
   MAIN CONTENT
========================================= */

.single-post-main {
    min-width: 0;
}

/* =========================================
   ARTICLE CONTENT
========================================= */

.single-post-content {
    padding-right: 20px;
    font-family: "Inter";
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: -2%;
    color: #747474;
}

.single-post-content > *:first-child {
    margin-top: 0;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 54px;
    margin-bottom: 24px;

    font-family: var(--blog-heading-font);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--blog-black);
}

.single-post-content h2 {
    font-size: clamp(32px, 3vw, 42px);
}

.single-post-content h3 {
    font-size: clamp(28px, 2.5vw, 36px);
}

.single-post-content h4 {
    font-size: clamp(24px, 2vw, 30px);
}

.single-post-content p {
    margin-bottom: 28px;

    font-family: var(--blog-body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -0.01em;
    color: var(--blog-text);
}

.single-post-content img {
    width: 100%;
    margin: 42px 0;
    border-radius: 20px;
    display: block;
}

.single-post-content ul,
.single-post-content ol {
    padding-left: 22px;
    margin-bottom: 28px;
}

.single-post-content li {
    margin-bottom: 14px;

    font-family: var(--blog-body-font);
    font-size: 17px;
    line-height: 1.9;
    color: var(--blog-text);
}

.single-post-content blockquote {
    margin: 44px 0;
    padding: 34px 36px;

    border-left: 5px solid #0a7b61;
    border-radius: 16px;

    background: #f6f7f8;

    font-family: var(--blog-heading-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: var(--blog-black);
}

/* =========================================
   RELATED POSTS
========================================= */

.single-related-posts {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e7e7e7;
}

.single-related-posts-title {
    margin-bottom: 34px;

    font-family: var(--blog-heading-font);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #181C1B;
}

.single-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* =========================================
   RELATED CARD
========================================= */

.single-related-card {
    overflow: hidden;

    display: flex;
    align-items: stretch;

    border-radius: 18px;

    background: #ffffff;
    text-decoration: none;

    transition: var(--blog-transition);
}

.single-related-card:hover {
    transform: translateY(-4px);
}

.single-related-card-image {
    width: 180px;
    flex-shrink: 0;
}

.single-related-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.single-related-card-content {
    flex: 1;
    padding: 22px 20px;
}

.single-related-card-category {
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8E8E8E;
    font-family: "Inter";
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 1.39px;
}

.single-related-card-title {
    margin-bottom: 22px;
    font-family: var(--blog-heading-font);
    color: var(--blog-black);
    font-family: "Poppins";
    font-weight: 500;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: -2%;
    color: #181C1B;
}
span.admin-scred {
    font-family: "Inter";
    font-weight: 600;
    font-size: 14px;
    line-height: 18.55px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #000;
}
span.date-scrapb {
    font-family: "Inter";
    font-weight: 600;
    font-size: 12px;
    line-height: 18.55px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #989898;
}
.single-related-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;

    font-size: 13px;
    font-weight: 500;
    color: #7f7f7f;
}

/* =========================================
   SIDEBAR
========================================= */

.single-post-sidebar {
    position: sticky;
    top: 120px;
}

.single-sidebar-widget {
    padding: 34px 28px;
    margin-bottom: 34px;
    border-radius: 22px;
    background: #F5F5F5;
}

.single-sidebar-title {
    margin-bottom: 26px;
    font-family: var(--blog-heading-font);
    font-weight: 600;
    color: var(--blog-black);
    font-family: "Poppins";
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -2%;
}

/* =========================================
   FEATURED POSTS
========================================= */

.single-featured-post-item {
    display: block;

    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid #ededed;

    text-decoration: none;
}

.single-featured-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.single-featured-post-item h4 {
    margin-bottom: 18px;

    font-family: var(--blog-heading-font);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--blog-black);

    transition: var(--blog-transition);
}

.single-featured-post-item:hover h4 {
    color: #0a7b61;
}

.single-featured-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    font-size: 13px;
    font-weight: 500;
    color: #8b8b8b;
}

/* =========================================
   CATEGORIES
========================================= */

.single-sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.single-sidebar-category {
    min-height: 56px;
    padding-inline: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    background: #fff;
    text-decoration: none;
    font-family: var(--blog-body-font);
    color: #989898;
    transition: var(--blog-transition);
    font-family: "Poppins";
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -2%;
}

.single-sidebar-category:hover,
.single-sidebar-category.active {
    background: #1E8449;
    color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .single-post-layout {
        grid-template-columns: 1fr 300px;
        gap: 42px;
    }

    .single-related-card {
        flex-direction: column;
    }

    .single-related-card-image {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 991px) {

    .single-post-content-section {
        padding: 60px 0 90px;
    }

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

    .single-post-sidebar {
        position: static;
        display: flex;
    }
    .single-sidebar-widget {
    width: 100%;
    }

    .single-related-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {

    .single-post-content-section {
        padding: 50px 0 80px;
    }

    .single-post-content {
        padding-right: 0;
    }

    .single-post-content h2 {
        font-size: 30px;
    }

    .single-post-content h3 {
        font-size: 26px;
    }

    .single-post-content p,
    .single-post-content li {
        font-size: 16px;
        line-height: 1.9;
    }

    .single-post-content blockquote {
        padding: 28px;
        font-size: 21px;
    }

    .single-sidebar-widget {
        padding: 28px 24px;
    }
}

@media (max-width: 575px) {
    .single-related-posts-grid {
        grid-template-columns: 1fr
    }
    .single-post-sidebar {
    flex-direction: column;
    }
    .single-related-posts-title,
    .single-sidebar-title {
        font-size: 28px;
    }
    .single-post-meta {
        align-items: center;
        flex-direction: row;
    }
    .single-related-card-title {
        font-size: 20px;
    }

    .single-featured-post-item h4 {
        font-size: 18px;
    }

    .single-sidebar-category {
        min-height: 52px;
        font-size: 14px;
    }
}

.blog-post-card-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    margin-bottom: 16px;
}

.blog-post-card-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #989898;
    letter-spacing: 1.39px;
}