:root {
    --green: #1a7a3c;
    --green-dark: #145f2e;
    --green-light: #e8f5ed;
    --gold: #f0a500;
    --gold-dark: #c8880a;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --bg: #f7f8f5;
    --white: #ffffff;
    --border: #e0e4da;
    --radius: 10px;
}


.blog-wrap {
    margin: 35px auto;
    /* 🔥 centers horizontally */
    max-width: 1800px;
    padding: 48px 5%;
}

/* POST HEADER */
.post-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.post-cat {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 12px;
    border-radius: 20px;
}

h1 {
    color: black;
    line-height: 1.15;
    margin-bottom: 14px;
}

.post-meta {
    font-size: 18px;
    color: black;
    margin-bottom: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

/* INTRO BOX */
.intro-box {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 32px;
    color: var(--green-dark);
    line-height: 1.6;
}

/* HEADINGS */
h2 {
    color: black;
    margin: 40px 0 12px;
    line-height: 1.2;
}

h3 {
    color: var(--green-dark);
    margin: 28px 0 8px;
}

p {
    color: black;
    margin-bottom: 18px;
    line-height: 1.6;
}

strong {
    color: black;
    font-weight: 600;
}

/* STAT ROW */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1.4rem;
    color: black;
    text-transform: capitalize;
    line-height: 1.4;
}

/* STEP CARDS */
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 24px;
    margin: 20px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num-circle {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 6px;

}

.step-content p {
    margin-bottom: 0;

}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #fff8e6;
    border: 1px solid #f0d080;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 24px 0;
}

.highlight-box .hb-title {
    font-weight: 700;
    color: #8a6000;
    font-size: 20px;
    margin-bottom: 8px;
}

.highlight-box p {
    color: #6b5200;
    margin-bottom: 0;
}

/* WARNING BOX */
.warning-box {
    background: #fdf3f3;
    border: 1px solid #e8c0c0;
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0;
}

.warning-box .wb-title {
    font-weight: 700;
    color: #9b2c2c;
    font-size: 15px;
    margin-bottom: 8px;
}

.warning-box p {
    color: #7b3030;
    font-size: 14px;
    margin-bottom: 0;
}

/* INLINE CTA */
.inline-cta {
    background: var(--green-light);
    border: 1px solid #b8ddc6;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.inline-cta p {
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 0;
}

.inline-cta a {
    background: var(--green);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.inline-cta a:hover {
    background: var(--green-dark);
    text-decoration: none;
}

/* CTA BLOCK */
.cta-block {
    background: #145f2e;
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    margin: 36px 0;
}

.cta-block h3 {
    color: #fff;
    margin-bottom: 8px;
}

.cta-block p {
    color: rgba(255, 255, 255);
    margin-bottom: 20px;
}

.cta-block a {
    background: #f0a500;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
    padding: 13px 32px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-block a:hover {
    background: #c8880a;
    color: #110101;
    text-decoration: none;
}


/* COMPARE TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 1.4rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.compare-table th {
    background: var(--green-dark);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1.4rem;
}

.compare-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    color: black;
    vertical-align: top;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:nth-child(even) td {
    background: var(--bg);
}

.compare-table td:first-child {

    color: black;
}

.win {
    color: var(--green);

}

.lose {
    color: #c0392b;
}


/* POST TAGS */
.post-tags {
    display: flex;
    justify-content: center;
    margin-top: 26px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: -25px;
}

.kw-tag {
    display: inline-block;
    background: var(--bg);
    border: 1px solid var(--border);
    color: black;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

/* FOOTER */
footer {
    background: #0d2b18;
    color: rgba(255, 255, 255, 0.6);
    padding: 36px 5%;
    text-align: center;
}

@media (max-width:768px) {
    .compare-table th {
        background: var(--green-dark);
        color: #fff;
        padding: 12px 16px;
        text-align: left;
        font-weight: 600;
        font-size: 1.3rem !important;
    }

    .kw-tag {
        font-size: 1.2rem !important;
    }

    .compare-table {
        font-size: 1.3rem !important;
    }

    .stat-label {
        font-size: 1.3rem !important;
    }


    .stat-row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        margin: 28px 0;
    }

}