/* Blog article styles — Mila English School */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #1C202B;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { margin: 0; }

/* Container — content; header bar uses wider .header .container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.header .container {
    max-width: 1760px;
    padding: 0 16px;
}

/* ─── Header ─────────────────────────────── */
.header {
    background: #f5fff9;
    height: 72px;
    width: 100%;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 8px rgba(0,138,95,0.08);
}

.header-wrap {
    display: flex;
    align-items: center;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.logo { width: 48px; height: 48px; }
.logo-link { display: flex; }

.header-content {
    display: flex;
    width: 100%;
    align-items: center;
}

.navigation-wrap {
    display: flex;
    width: 100%;
    align-items: center;
}

.navigation {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    color: #1C202B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:not(:last-of-type) { margin-right: 72px; }

.nav-item-group {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.nav-item-group .nav-link {
    margin-right: 0;
}

.nav-demo-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 1.2;
    padding: 0 14px;
    height: 36px;
    border-radius: 6px;
    color: #ffffff;
    background: #008a5f;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.nav-demo-btn:hover {
    background: #006b4a;
    color: #ffffff;
}

.nav-demo-btn:focus,
.nav-demo-btn:visited,
.nav-demo-btn.active {
    background: #008a5f;
    color: #ffffff;
}

.nav-demo-btn--header {
    height: 46px;
    min-width: 300px;
    padding: 0 18px;
    font-size: 12px;
    line-height: 1.25;
    flex-shrink: 0;
    text-align: center;
}

@media (max-width: 1320px) {
    .nav-link:not(:last-of-type) { margin-right: 40px; }

    .nav-demo-btn--header {
        min-width: 260px;
        font-size: 11px;
        padding: 0 14px;
    }
}

.active { font-weight: 600; color: #008a5f; }

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 0 24px;
    height: 46px;
    border-radius: 6px;
    border: none;
    color: #ffffff;
    background: #008a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
}

/* Hamburger */
.hamburger {
    position: relative;
    width: 25px;
    height: 3px;
    background: #58606e;
    border-radius: 10px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    height: 3px;
    right: 0;
    background: #58606e;
    border-radius: 10px;
    transition: 0.3s;
}
.hamburger::before { top: -8px; width: 25px; }
.hamburger::after  { top:  8px; width: 25px; }

.toggle-menu {
    position: absolute;
    width: 25px;
    height: 30px;
    z-index: 4;
    cursor: pointer;
    opacity: 0;
}

.hamburger, .toggle-menu { display: none; }

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: none;
    z-index: 1;
}
.overlay.open { display: block; }

/* ─── Article main ───────────────────────── */
.article-main {
    padding: 28px 0 100px;
    background: #ffffff;
}

.article-wrap {
    max-width: 780px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin: 0 0 28px;
    justify-content: flex-start;
}

.breadcrumb a {
    color: #008a5f;
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #ccc; }

/* Article header */
.article-header { margin-bottom: 48px; }

.article-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #008a5f;
    background: #e6f7f1;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #1C202B;
    margin-bottom: 24px;
}

.article-lead {
    font-size: 18px;
    line-height: 175%;
    color: #4a5568;
    margin: 0 0 16px;
}

/* Article body */
.article-body { font-size: 17px; line-height: 175%; color: #2d3748; }

/* Sections */
.article-section { margin-bottom: 56px; }

.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #1C202B;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #008a5f;
}

.article-section p { margin: 0 0 16px; }

/* Highlight box */
.highlight-box {
    background: #e6f7f1;
    border-left: 4px solid #008a5f;
    border-radius: 0 10px 10px 0;
    padding: 18px 24px;
    margin: 24px 0;
}

.highlight-box p { margin: 0; color: #1C202B; }

/* Table */
.table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}

.skills-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.skills-table th {
    background: #008a5f;
    color: #ffffff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
}

.skills-table th:first-child { border-radius: 10px 0 0 0; }
.skills-table th:last-child  { border-radius: 0 10px 0 0; }

.skills-table td {
    padding: 13px 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.skills-table tr:nth-child(even) td { background: #f7fffe; }
.skills-table tr:last-child td { border-bottom: none; }
.skills-table td:first-child { font-weight: 600; color: #008a5f; white-space: nowrap; }

/* Subsections */
.subsection {
    margin-bottom: 48px;
    padding: 36px 40px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #e8f5f0;
}

.subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1C202B;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.subsection-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #008a5f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.subsection ul {
    margin: 0 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.subsection ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    border-bottom: 1px solid #e8f5f0;
}

.subsection ul li:last-child { border-bottom: none; }

.subsection ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #008a5f;
    font-weight: 600;
}

/* Example box (lexis) */
.example-box {
    background: #ffffff;
    border: 1px solid #d0f0e4;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0;
}

.example-word {
    font-size: 18px;
    margin: 0 0 14px;
    color: #1C202B;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8f5f0;
}

.example-collocations p {
    margin: 8px 0;
    font-size: 16px;
    color: #2d3748;
}

/* Grammar blocks */
.grammar-block {
    background: #ffffff;
    border: 1px solid #e8f5f0;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 20px 0;
}

.grammar-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #008a5f;
    margin-bottom: 14px;
}

.grammar-block p { margin: 0 0 12px; }
.grammar-block p:last-child { margin: 0; }

.grammar-block ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.grammar-block ul li {
    background: #e6f7f1;
    color: #008a5f;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
}

.grammar-block ul li::before { display: none; }

/* Grammar example (active/passive) */
.grammar-example {
    background: #f7fffe;
    border-left: 3px solid #008a5f;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-top: 12px;
}

.grammar-example-row {
    display: flex;
    gap: 16px;
    padding: 6px 0;
    align-items: baseline;
}

.grammar-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #008a5f;
    min-width: 64px;
    flex-shrink: 0;
}

.grammar-text { font-size: 16px; color: #2d3748; font-style: normal; }

/* Inline list (modals) */
.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.inline-list li {
    background: #e6f7f1;
    color: #008a5f;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
}

.inline-list li::before { display: none; }

/* CTA block */
.article-cta {
    margin-top: 64px;
    border-radius: 20px;
    background: #008a5f;
    padding: 48px 40px;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ffffff;
    margin: 0 0 10px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #008a5f;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 0 40px;
    height: 56px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

/* Footer */
.footer { padding: 40px 0 20px; background: #f5fff9; }

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.foot-logo { width: 56px; height: 56px; }

.school-name {
    color: #008a5f;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.school-name-span { color: #5D616B; font-weight: 400; }

.social-media {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-right: 120px;
    margin-top: -52px;
}

.media-img { height: 22px; width: 22px; }

.footer-line {
    border: none;
    height: 1px;
    background: rgba(28,32,43,0.15);
    margin: 16px auto;
    max-width: 90%;
}

.footer-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.footer-nav-link { font-size: 13px; opacity: 0.65; }
.footer-nav-link:not(:last-of-type) { margin-right: 36px; }

.phone-number { font-size: 13px; opacity: 0.65; margin: 0; }

/* Hover */
@media (hover: hover) {
    .nav-link:hover { color: #008a5f; font-weight: 600; }
    .nav-demo-btn:hover { background: #006b4a; color: #ffffff; }
    .btn:hover { background: #006b4a; }
    .cta-btn:hover { background: #e6f7f1; }
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 960px) {
    .header { height: 56px; }
    .hamburger, .toggle-menu { display: block; }
    .toggle-menu { top: 8px; }
    .header-content { justify-content: flex-end; align-items: center; }
    .navigation-wrap {
        flex-direction: column;
        width: 280px;
        height: 100%;
        position: fixed;
        right: -280px;
        top: 0;
        gap: 10px;
        padding-top: 64px;
        background: #ffffff;
        transition: 0.3s;
        z-index: 2;
        box-shadow: none;
    }
    .navigation { display: flex; flex-direction: column; margin-left: 20px; width: 85%; }
    .nav-link { font-size: 13px; padding: 10px 6px; }
    .nav-link:not(:first-of-type) { border-top: 1px solid #e2e8f0; }
    .nav-link:not(:last-of-type) { margin-right: 0; }

    .nav-demo-btn--header {
        font-size: 12px;
        margin: 0 auto;
        width: min(100%, 300px);
        min-width: unset;
        height: 40px;
    }

    .btn { font-size: 13px; margin: 0 auto; width: 220px; height: 40px; }
    .header-content input:checked ~ .hamburger { background: transparent; }
    .header-content input:checked ~ .hamburger::before { top: 0; transform: rotate(-45deg); }
    .header-content input:checked ~ .hamburger::after  { top: 0; transform: rotate(45deg); }
    .header-content input:checked ~ .navigation-wrap { right: 0; box-shadow: -16px 0 32px rgba(0,0,0,0.2); }

    .article-title { font-size: 32px; }
    .article-lead  { font-size: 16px; }
    .article-section h2 { font-size: 24px; }
    .subsection { padding: 24px 20px; }
    .article-cta { padding: 36px 24px; }
    .cta-title { font-size: 24px; }
    .social-media { margin-right: 0; justify-content: center; margin-top: 0; }
    .footer-text { flex-direction: column; gap: 10px; text-align: center; }
    .footer-nav-link:not(:last-of-type) { margin-right: 20px; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .article-main { padding: 24px 0 64px; }
    .article-title { font-size: 26px; }
    .article-section h2 { font-size: 21px; }
    .subsection h3 { font-size: 20px; }
    .grammar-example-row { flex-direction: column; gap: 4px; }
    .grammar-label { min-width: unset; }
    .skills-table th, .skills-table td { padding: 10px 12px; font-size: 14px; }
    .article-cta { padding: 28px 20px; }
    .cta-btn { padding: 0 24px; height: 50px; font-size: 15px; }
}

.article-list--checks li::before {
    content: "✔";
    color: #008a5f;
    font-weight: 700;
}

.article-list--checks li {
    border-bottom: none;
    padding-left: 26px;
}

/* Article list (outside subsection) */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.article-list li {
    padding: 7px 0 7px 28px;
    position: relative;
    border-bottom: 1px solid #e8f5f0;
    font-size: 16px;
    color: #2d3748;
}

.article-list li:last-child { border-bottom: none; }

.article-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #008a5f;
    font-weight: 600;
}

.article-list--compact li { padding: 5px 0 5px 24px; font-size: 15px; }

/* Subsection icon variant */
.subsection-icon {
    font-size: 22px;
    line-height: 1;
}

/* Subject cards */
.subject-cards {
    display: flex;
    gap: 20px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.subject-card {
    flex: 1;
    min-width: 260px;
    background: #fafafa;
    border: 1px solid #e8f5f0;
    border-radius: 14px;
    padding: 24px 24px 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.subject-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #008a5f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
}

.subject-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #008a5f;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.subject-card p { margin: 0 0 10px; font-size: 15px; }
.subject-card p:last-child { margin: 0; }

@media (max-width: 600px) {
    .subject-cards { flex-direction: column; }
    .subject-card { min-width: unset; }
}
/* --- Blog listing page -------------------- */
.blog-hero {
    background: #008a5f;
    color: #fff;
    padding: 64px 0 52px;
    text-align: center;
}

.blog-hero-title {
    font-size: 56px;
    color: #fff;
    margin-bottom: 12px;
}

.blog-hero-sub {
    font-size: 20px;
    opacity: 0.88;
    margin: 0;
}

.blog-list-main {
    padding: 64px 0 100px;
    background: #ffffff;
}

.blog-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1C202B;
    margin: 48px auto 24px;
    padding-top: 16px;
    border-top: 2px solid #e8f5f0;
    max-width: 1100px;
}

.blog-grid--demo {
    margin-bottom: 0;
}

.blog-grid--hub {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
}

@media (max-width: 720px) {
    .blog-grid--hub {
        grid-template-columns: 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border: 1px solid #e8f5f0;
    border-radius: 16px;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,138,95,0.13);
    transform: translateY(-4px);
}

.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #008a5f;
    background: #e6f7f1;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1C202B;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card-desc {
    font-size: 15px;
    line-height: 160%;
    color: #4a5568;
    flex-grow: 1;
    margin: 0 0 20px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #008a5f;
}

@media (max-width: 600px) {
    .blog-hero-title { font-size: 38px; }
    .blog-grid { grid-template-columns: 1fr; }
}
/* Numbered list */
.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.numbered-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 16px;
    color: #2d3748;
}

.numbered-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #008a5f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 16px 0;
}

.checklist-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 16px;
    background: #fafafa;
    border: 1px solid #e8f5f0;
    border-radius: 10px;
    font-size: 16px;
    color: #2d3748;
}

.check { font-size: 17px; flex-shrink: 0; }

/* Compare grid */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.compare-col {
    border-radius: 14px;
    padding: 24px 22px;
}

.compare-col--light {
    background: #fafafa;
    border: 1px solid #e8f5f0;
}

.compare-col--green {
    background: #008a5f;
    color: #fff;
}

.compare-title {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 14px;
}

.compare-col--green .compare-title { color: #fff; }

.compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-col ul li {
    font-size: 15px;
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid rgba(0,138,95,0.12);
    line-height: 145%;
}

.compare-col--green ul li { border-bottom-color: rgba(255,255,255,0.15); color: #fff; }
.compare-col ul li:last-child { border-bottom: none; }

.compare-col--light ul li::before { content: ">"; position: absolute; left: 0; color: #008a5f; font-weight: 600; }
.compare-col--green ul li::before { content: ">"; position: absolute; left: 0; color: rgba(255,255,255,0.7); font-weight: 600; }

@media (max-width: 600px) {
    .compare-grid { grid-template-columns: 1fr; }
}
/* Step header (numbered sections) */
.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #008a5f;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a2e23;
    margin: 0;
}

/* Grammar topic grid */
.grammar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.grammar-item {
    background: #f5fff9;
    border: 1px solid #b8e8d4;
    border-left: 4px solid #008a5f;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #2d3748;
    font-weight: 500;
    line-height: 140%;
}

@media (max-width: 600px) {
    .grammar-grid { grid-template-columns: 1fr; }
    .step-title { font-size: 18px; }
    .step-num { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
}

/* Vocabulary example */
.vocab-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0;
}

.vocab-bad,
.vocab-good {
    border-radius: 12px;
    padding: 18px 20px;
}

.vocab-bad {
    background: #fafafa;
    border: 1px solid #e2e8f0;
}

.vocab-good {
    background: #008a5f;
    color: #fff;
}

.vocab-good p { color: #fff; }

.vocab-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 10px;
}

.vocab-label--bad {
    background: #e2e8f0;
    color: #718096;
}

.vocab-label--good {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.vocab-bad p,
.vocab-good p {
    font-size: 15px;
    margin: 4px 0;
    line-height: 160%;
}

@media (max-width: 600px) {
    .vocab-example { grid-template-columns: 1fr; }
}

/* Registration / timeline infographics (blog articles) */
.reg-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.reg-step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f5fff9 0%, #ffffff 55%);
    border: 1px solid #d0f0e4;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 138, 95, 0.06);
}

.reg-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #008a5f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

.reg-step-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1C202B;
}

.reg-step-body p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.55;
}

.reg-step-body p:last-child { margin-bottom: 0; }

.reg-step-body ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.doc-card {
    padding: 16px 18px;
    background: #fafafa;
    border: 1px solid #e8f5f0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.45;
    color: #2d3748;
}

.doc-card strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #008a5f;
    margin-bottom: 6px;
}

.prep-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.prep-timeline-col {
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid #d0f0e4;
    background: #f5fff9;
}

.prep-timeline-col:nth-child(2) {
    background: #e8f8f1;
    border-color: #008a5f;
}

.prep-timeline-col:nth-child(3) {
    background: #008a5f;
    color: #fff;
    border-color: #008a5f;
}

.prep-timeline-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #008a5f;
    margin: 0 0 10px;
}

.prep-timeline-col:nth-child(3) .prep-timeline-label {
    color: rgba(255, 255, 255, 0.9);
}

.prep-timeline-col ul {
    margin: 0;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.prep-timeline-col:nth-child(3) ul { color: #fff; }

.mistake-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.mistake-card {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: #fff8f8;
    border: 1px solid #fde8e8;
    border-left: 4px solid #e53e3e;
    border-radius: 10px;
}

.mistake-card-num {
    font-weight: 700;
    color: #e53e3e;
    min-width: 24px;
}

@media (max-width: 768px) {
    .prep-timeline { grid-template-columns: 1fr; }
    .reg-step-card { flex-direction: column; gap: 12px; }
    .pillar-3 { grid-template-columns: 1fr; }
}

/* Calendar article infographics */
.cal-stage {
    margin: 32px 0;
    padding: 24px 22px;
    border: 1px solid #d0f0e4;
    border-radius: 16px;
    background: #ffffff;
}

.cal-stage-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #008a5f;
    background: #e8f8f1;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cal-stage h2 {
    margin-top: 0;
}

.infographic-title {
    font-size: 17px;
    font-weight: 700;
    color: #1C202B;
    margin: 28px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d0f0e4;
}

.cal-flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 20px 0;
}

.cal-flow-node {
    text-align: center;
    padding: 14px 16px;
    background: #008a5f;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
}

.cal-flow-panel {
    padding: 18px 20px;
    background: #f5fff9;
    border: 1px solid #d0f0e4;
    border-radius: 12px;
    margin: 8px 0;
}

.cal-flow-panel ul {
    margin: 0;
    padding-left: 20px;
    text-align: left;
    font-size: 15px;
    line-height: 1.55;
}

.cal-flow-arrow {
    text-align: center;
    color: #008a5f;
    font-size: 22px;
    line-height: 1;
    padding: 4px 0;
}

.pillar-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
    text-align: center;
}

.pillar-3-head {
    grid-column: 1 / -1;
    padding: 16px;
    background: #008a5f;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    letter-spacing: 0.3px;
}

.pillar-col {
    padding: 18px 14px;
    background: #fafafa;
    border: 1px solid #e8f5f0;
    border-radius: 14px;
}

.pillar-col-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #008a5f;
    margin: 0 0 12px;
}

.pillar-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
    color: #2d3748;
}

.pillar-col li + li {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #e8f5f0;
}

.reg-flow-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 20px 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.reg-flow-step {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f5fff9, #fff);
    border: 1px solid #d0f0e4;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1C202B;
}

.reg-flow-step-num {
    display: block;
    font-size: 12px;
    color: #008a5f;
    margin-bottom: 4px;
}

.countdown-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

@media (min-width: 640px) {
    .countdown-flow { grid-template-columns: repeat(4, 1fr); }
}

.countdown-block {
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #d0f0e4;
    background: #f5fff9;
    text-align: center;
}

.countdown-block:last-child {
    background: #008a5f;
    color: #fff;
    border-color: #008a5f;
}

.countdown-block strong {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: #008a5f;
}

.countdown-block:last-child strong {
    color: rgba(255, 255, 255, 0.95);
}

.countdown-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.45;
}

.roadmap-master {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 28px 0;
    padding: 24px 20px;
    background: linear-gradient(180deg, #f5fff9 0%, #ffffff 100%);
    border: 2px solid #d0f0e4;
    border-radius: 18px;
}

.roadmap-step {
    width: 100%;
    max-width: 360px;
    padding: 16px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #d0f0e4;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 138, 95, 0.08);
}

.roadmap-step-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}

.roadmap-step-period {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #008a5f;
    margin-bottom: 4px;
}

.roadmap-step-text {
    font-size: 16px;
    font-weight: 600;
    color: #1C202B;
    margin: 0;
}

.disclaimer-box {
    padding: 18px 20px;
    background: #fffbeb;
    border: 1px solid #f6e05e;
    border-left: 4px solid #d69e2e;
    border-radius: 10px;
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.55;
    color: #744210;
}

.disclaimer-box strong {
    color: #975a16;
}

/* Individual CTA variant */
.article-cta--individual .cta-inner {
    background: linear-gradient(135deg, #005c3f 0%, #008a5f 100%);
}

/* ===== BLOG � additional mobile fixes ===== */
@media (max-width: 480px) {
    .blog-hero-title { font-size: 30px !important; }
    .blog-hero-sub { font-size: 14px !important; }
    .article-title { font-size: 24px !important; }
    .article-lead { font-size: 15px !important; }
    .article-h3 { font-size: 17px !important; }
    .breadcrumb { font-size: 13px; }
    .cta-title { font-size: 20px !important; }
    .cta-btn { width: 100%; text-align: center; }
    .footer-logo { flex-direction: column; gap: 8px; }
    .social-media { justify-content: center; margin-right: 0 !important; margin-top: 0; margin-bottom: 12px; }
    .footer-text { flex-direction: column; gap: 12px; text-align: center; }
    .footer-navigation { justify-content: center; }
    .phone-number { margin-right: 0; text-align: center; }
}