/* =========================================================
   CLEANNORA BLOG ARTICLE
   Premium Editorial Design
   Brand: #083D2B / #F4BF19 / #FFFFFF
========================================================= */

:root {
    --article-green: #083D2B;
    --article-gold: #F4BF19;
    --article-white: #ffffff;
    --article-text: #24332d;
    --article-muted: #68756f;
    --article-border: rgba(8, 61, 43, 0.10);
    --article-soft: #f7faf8;
}


/* =========================================================
   GLOBAL
========================================================= */

.cleannora-article-page {
    background: var(--article-white);
    color: var(--article-text);
}

.article-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.article-breadcrumb {
    padding: 18px 0;
    background: #f8faf9;
    border-bottom: 1px solid var(--article-border);
}

.article-breadcrumb .article-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 13px;
}

.article-breadcrumb a {
    color: var(--article-green);
    text-decoration: none;
    font-weight: 600;
}

.article-breadcrumb span {
    color: var(--article-muted);
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.article-header {
    padding: 65px 0 45px;
    text-align: center;
}

.article-header-inner {
    max-width: 850px;
    margin: 0 auto;
}

.article-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(244, 191, 25, 0.14);
    color: var(--article-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-header h1 {
    margin: 0;
    color: var(--article-green);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 800;
}

.article-intro {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--article-muted);
    font-size: 18px;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: #7a857f;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.article-featured-image {
    padding-bottom: 55px;
}

.article-image-wrap {
    overflow: hidden;
    border-radius: 24px;
    background: #edf3ef;
    box-shadow: 0 20px 55px rgba(8, 61, 43, 0.12);
}

.article-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.article-content-section {
    padding: 10px 0 70px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 300px;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.article-content {
    min-width: 0;
}

.article-content p {
    margin: 0 0 22px;
    color: #53615b;
    font-size: 17px;
    line-height: 1.9;
}

.article-content .article-lead {
    color: var(--article-text);
    font-size: 20px;
    line-height: 1.85;
    font-weight: 500;
}

.article-content h2 {
    margin: 52px 0 18px;
    color: var(--article-green);
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.article-content h3 {
    margin: 34px 0 12px;
    color: var(--article-green);
    font-size: 23px;
    line-height: 1.3;
}

.article-content ul {
    margin: 0 0 25px;
    padding-left: 22px;
}

.article-content li {
    margin-bottom: 11px;
    color: #53615b;
    font-size: 16px;
    line-height: 1.75;
}

.article-content strong {
    color: var(--article-green);
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.article-highlight {
    margin: 32px 0;
    padding: 25px 28px;
    border-left: 4px solid var(--article-gold);
    border-radius: 0 14px 14px 0;
    background: #f8faf8;
}

.article-highlight strong {
    display: block;
    color: var(--article-green);
    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   INFO CARDS
========================================================= */

.article-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0 35px;
}

.article-info-card {
    padding: 25px 21px;
    border: 1px solid var(--article-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(8, 61, 43, 0.05);
}

.info-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 17px;
    border-radius: 50%;
    background: var(--article-green);
    color: var(--article-gold);
    font-size: 13px;
    font-weight: 800;
}

.article-info-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.article-info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CHECKLIST
========================================================= */

.article-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0 35px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid var(--article-border);
    border-radius: 12px;
    background: #fbfcfb;
}

.checklist-item span {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(244, 191, 25, 0.18);
    color: var(--article-green);
    font-size: 13px;
    font-weight: 900;
}

.checklist-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   SERVICE CTA
========================================================= */

.article-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 48px 0;
    padding: 30px;
    border-radius: 20px;
    background: var(--article-green);
    box-shadow: 0 18px 40px rgba(8, 61, 43, 0.14);
}

.service-cta-content {
    flex: 1;
}

.service-cta-content > span {
    display: block;
    margin-bottom: 8px;
    color: var(--article-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.service-cta-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 25px;
}

.service-cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

.article-service-btn,
.article-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 13px 20px;
    border-radius: 50px;
    background: var(--article-gold);
    color: var(--article-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.article-service-btn:hover,
.article-final-btn:hover {
    transform: translateY(-2px);
    color: var(--article-green);
    box-shadow: 0 10px 25px rgba(244, 191, 25, 0.22);
}


/* =========================================================
   SIDEBAR
========================================================= */

.article-sidebar {
    position: sticky;
    top: 100px;
}

.article-sidebar-card {
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--article-border);
    border-radius: 18px;
    background: #f8faf9;
}

.sidebar-label {
    display: block;
    margin-bottom: 12px;
    color: #75817b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.article-sidebar-card h3 {
    margin: 0 0 13px;
    color: var(--article-green);
    font-size: 21px;
    line-height: 1.35;
}

.article-sidebar-card p {
    margin: 0 0 20px;
    color: var(--article-muted);
    font-size: 14px;
    line-height: 1.7;
}

.article-sidebar-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--article-border);
    color: var(--article-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.article-sidebar-card > a:first-of-type {
    border-top: 0;
}

.article-sidebar-card > a:hover {
    color: #0b6b4b;
}


/* =========================================================
   FINAL CTA
========================================================= */

.article-final-cta {
    margin-top: 55px;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    background: #f7faf8;
    border: 1px solid var(--article-border);
}

.article-final-cta h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.article-final-cta p {
    max-width: 550px;
    margin: 0 auto 22px;
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.article-related-section {
    padding: 65px 0 75px;
    background: #f8faf9;
    border-top: 1px solid var(--article-border);
}

.article-section-heading {
    margin-bottom: 28px;
}

.article-section-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #75817b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.article-section-heading h2 {
    margin: 0;
    color: var(--article-green);
    font-size: 34px;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-article-card {
    overflow: hidden;
    border: 1px solid var(--article-border);
    border-radius: 18px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(8, 61, 43, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(8, 61, 43, 0.10);
}

.related-article-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.related-article-card > div {
    padding: 20px;
}

.related-article-card span {
    display: block;
    margin-bottom: 8px;
    color: #75817b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-article-card h3 {
    margin: 0 0 9px;
    color: var(--article-green);
    font-size: 19px;
    line-height: 1.4;
}

.related-article-card p {
    margin: 0;
    color: var(--article-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .article-sidebar-card {
        margin-bottom: 0;
    }

    .article-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .article-container {
        width: min(100% - 28px, 1180px);
    }

    .article-breadcrumb {
        padding: 14px 0;
    }

    .article-breadcrumb .article-container {
        font-size: 11px;
        gap: 6px;
    }

    .article-header {
        padding: 42px 0 30px;
    }

    .article-category {
        margin-bottom: 15px;
        padding: 7px 12px;
        font-size: 10px;
    }

    .article-header h1 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .article-intro {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.7;
    }

    .article-meta {
        margin-top: 17px;
        font-size: 11px;
    }

    .article-featured-image {
        padding-bottom: 35px;
    }

    .article-image-wrap {
        border-radius: 16px;
    }

    .article-content-section {
        padding-bottom: 45px;
    }

    .article-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .article-content .article-lead {
        font-size: 17px;
        line-height: 1.75;
    }

    .article-content h2 {
        margin-top: 38px;
        font-size: 27px;
    }

    .article-content h3 {
        margin-top: 27px;
        font-size: 20px;
    }

    .article-content li {
        font-size: 14px;
        line-height: 1.65;
    }

    .article-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-checklist {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-service-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .service-cta-content h3 {
        font-size: 22px;
    }

    .article-service-btn {
        width: 100%;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-related-section {
        padding: 45px 0 50px;
    }

    .article-section-heading h2 {
        font-size: 28px;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .article-final-cta {
        padding: 30px 20px;
    }

    .article-final-cta h2 {
        font-size: 26px;
    }

    .article-final-btn {
        width: 100%;
    }

}

/* =========================================================
   BLOG ARTICLE - WIDE EDITORIAL LAYOUT
   Remove empty desktop sidebar space
========================================================= */

@media (min-width: 992px) {

    .article-layout {
        display: block !important;
        max-width: 900px !important;
        margin: 0 auto !important;
    }

    .article-content {
        width: 100% !important;
        max-width: 900px !important;
    }

    .article-sidebar {
        display: none !important;
    }

}


/* Slightly wider text area on large screens */
@media (min-width: 1200px) {

    .article-layout {
        max-width: 920px !important;
    }

    .article-content {
        max-width: 920px !important;
    }

}