/*
========================================================
DWC WEB REFERENCE STANDARD v2
Digital Wood Carver Engineering Reference Library

File: css/dwc-reference.css
Purpose: Shared, human-readable stylesheet for all hosted
DWC Engineering Reference Hub pages.
========================================================
*/


/* ======================================================
   1. ROOT VARIABLES
   ====================================================== */

:root {
    --dwc-green: #007a34;
    --dwc-green-dark: #005f28;
    --dwc-green-soft: #e8f5eb;
    --dwc-green-soft-2: #f4fbf6;

    --dwc-black: #111111;
    --dwc-white: #ffffff;

    --dwc-text: #243126;
    --dwc-muted: #5f6f63;

    --dwc-red: #e00000;
    --dwc-yellow: #ffd166;
    --dwc-blue: #0050c8;

    --dwc-page-bg: #f8fbf8;
    --dwc-card-bg: #ffffff;

    --dwc-border: rgba(47, 125, 50, 0.18);
    --dwc-border-strong: rgba(47, 125, 50, 0.35);

    --dwc-radius-sm: 10px;
    --dwc-radius: 16px;
    --dwc-radius-lg: 22px;

    --dwc-shadow: 0 12px 34px rgba(24, 52, 31, 0.12);
    --dwc-shadow-soft: 0 8px 22px rgba(24, 52, 31, 0.08);

    --dwc-max-width: 1180px;

    --dwc-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/* ======================================================
   2. RESET / BASE
   ====================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--dwc-font);
    color: var(--dwc-text);
    background: var(--dwc-page-bg);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--dwc-green);
}

a:hover {
    color: var(--dwc-green-dark);
}


/* ======================================================
   3. PAGE SHELL
   ====================================================== */

.dwc-site {
    min-height: 100vh;
    background:
        radial-gradient(1200px 700px at 20% -10%, rgba(61, 165, 70, 0.14), transparent 55%),
        radial-gradient(900px 550px at 80% 0%, rgba(47, 125, 50, 0.10), transparent 50%),
        linear-gradient(180deg, #ffffff, var(--dwc-page-bg));
}

.dwc-container {
    width: 100%;
    max-width: var(--dwc-max-width);
    margin: 0 auto;
    padding: 28px 18px 60px;
}


/* ======================================================
   4. HERO / PAGE HEADER
   ====================================================== */

.dwc-hero {
    border: 1px solid var(--dwc-border);
    background:
        linear-gradient(135deg, rgba(47, 125, 50, 0.10), rgba(255, 255, 255, 0.92)),
        var(--dwc-white);
    border-radius: var(--dwc-radius-lg);
    box-shadow: var(--dwc-shadow);
    padding: 24px;
    overflow: hidden;
}

.dwc-hero-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.dwc-logo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dwc-logo-panel img {
    display: block;
    width: 100%;
    max-width: 280px;
}

.dwc-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(47, 125, 50, 0.22);
    background: var(--dwc-green-soft);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dwc-green);
    font-weight: 850;
}

.dwc-page-title {
    margin: 12px 0 8px;
    color: var(--dwc-green);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 950;
    line-height: 1.02;
}

.dwc-page-subtitle {
    margin: 0;
    color: #1f2e22;
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.1;
}

.dwc-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.dwc-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(47, 125, 50, 0.18);
    background: var(--dwc-white);
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(24, 52, 31, 0.06);
    color: var(--dwc-text);
    font-size: 13px;
    font-weight: 850;
}


/* ======================================================
   5. NAVIGATION
   ====================================================== */

.dwc-top-nav,
.dwc-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dwc-top-nav {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(47, 125, 50, 0.16);
}

.dwc-nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(47, 125, 50, 0.22);
    background: var(--dwc-white);
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(24, 52, 31, 0.06);
    color: var(--dwc-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.dwc-nav-chip:hover {
    border-color: rgba(47, 125, 50, 0.45);
    color: var(--dwc-green);
}

.dwc-nav-chip.is-active {
    background: var(--dwc-green);
    border-color: var(--dwc-green);
    color: var(--dwc-white);
}

/* Global library navigation */
.dwc-global-nav {
    max-width: 1180px;
    margin: 18px auto 10px;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dwc-global-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid var(--dwc-border);
    border-radius: 999px;
    background: var(--dwc-white);
    color: var(--dwc-text);
    text-decoration: none;
    font-weight: 850;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(24,52,31,.06);
}

.dwc-global-nav a:hover {
    color: var(--dwc-green);
    border-color: var(--dwc-border-strong);
}


/* ======================================================
   6. SECTIONS
   ====================================================== */

.dwc-section {
    margin-top: 28px;
}

.dwc-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.dwc-section-title {
    margin: 0;
    color: var(--dwc-green);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
}

.dwc-section-description {
    margin: 0;
    color: var(--dwc-muted);
    font-size: 14px;
}


/* ======================================================
   7. GRID SYSTEM
   ====================================================== */

.dwc-grid {
    display: grid;
    gap: 18px;
}

.dwc-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dwc-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dwc-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ======================================================
   8. CARDS
   ====================================================== */

.dwc-card {
    border: 1px solid var(--dwc-border);
    background: var(--dwc-card-bg);
    border-radius: var(--dwc-radius);
    box-shadow: var(--dwc-shadow-soft);
    overflow: hidden;
}

.dwc-stack > .dwc-card + .dwc-card {
    margin-top: 18px;
}

.dwc-card-header {
    padding: 14px 18px;
    background: linear-gradient(180deg, var(--dwc-green), var(--dwc-green-dark));
    color: var(--dwc-white);
}
.dwc-card-header .dwc-card-title,
.dwc-card-header .dwc-card-subtitle,
.dwc-card-header h1,
.dwc-card-header h2,
.dwc-card-header h3,
.dwc-card-header h4,
.dwc-card-header h5,
.dwc-card-header h6 {
    color: var(--dwc-white);
}

.dwc-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0.01em;
}

.dwc-card-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.92;
    font-weight: 750;
}

.dwc-card-body {
    padding: 10px;
}


/* ======================================================
   9. TABLES
   ====================================================== */

.dwc-table-wrap {
    overflow-x: auto;
}

.dwc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dwc-table th,
.dwc-table td {
    padding: 9px 10px;
    border-bottom: 1px solid rgba(47, 125, 50, 0.14);
    text-align: left;
    vertical-align: middle;
}

.dwc-table th {
    background: var(--dwc-green-soft-2);
    color: #38483c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dwc-pin {
    color: var(--dwc-green);
    font-size: 18px;
    font-weight: 950;
    white-space: nowrap;
}

.dwc-small {
    font-size: 12px;
    color: var(--dwc-muted);
}


/* ======================================================
   10. IMAGE / ASSET LAYOUTS
   ====================================================== */

.dwc-image-panel {
    text-align: center;
}

.dwc-image-panel img {
    display: block;
    margin: 0 auto;
}

.dwc-image-large img {
    max-height: 720px;
    object-fit: contain;
}

.dwc-image-medium img {
    max-height: 420px;
    object-fit: contain;
}

.dwc-asset-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.dwc-asset-layout img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
}


/* ======================================================
   11. NOTES / ALERTS / STATUS
   ====================================================== */

.dwc-note {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(47, 125, 50, 0.18);
    background: var(--dwc-green-soft-2);
    border-radius: 14px;
    color: #4b5d50;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.dwc-note strong {
    color: var(--dwc-green);
}

.dwc-warning {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid rgba(255, 209, 102, 0.50);
    background: #fff8df;
    border-radius: 14px;
    color: #5a4500;
    font-weight: 850;
}

.dwc-status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 7px;
    border-radius: 50%;
    vertical-align: -1px;
}

.dwc-status-green {
    background: #168f35;
}

.dwc-status-red {
    background: var(--dwc-red);
}


/* ======================================================
   12. BUTTONS / LINKS
   ====================================================== */

.dwc-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dwc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--dwc-border-strong);
    background: var(--dwc-white);
    border-radius: 999px;
    color: var(--dwc-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
}

.dwc-button:hover {
    border-color: var(--dwc-green);
    color: var(--dwc-green);
}

.dwc-button-primary {
    background: var(--dwc-green);
    border-color: var(--dwc-green);
    color: var(--dwc-white);
}

.dwc-button-primary:hover {
    background: var(--dwc-green-dark);
    color: var(--dwc-white);
}


/* ======================================================
   13. INDEX / HUB CARDS
   ====================================================== */

.dwc-reference-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.dwc-reference-card .dwc-card-body {
    flex: 1;
}

.dwc-reference-card h3 {
    margin: 0 0 8px;
    color: var(--dwc-green);
    font-size: 20px;
    font-weight: 950;
}

.dwc-reference-card p {
    margin: 0;
    color: var(--dwc-muted);
    font-size: 14px;
    line-height: 1.45;
}

.dwc-reference-card-footer {
    padding: 0 22px 22px;
}


/* ======================================================
   14. FOOTER
   ====================================================== */

.dwc-footer {
    margin-top: 30px;
    padding: 18px;
    border-top: 1px solid rgba(47, 125, 50, 0.16);
    color: #6c7a70;
    font-size: 13px;
    line-height: 1.5;
}


/* ======================================================
   15. RESPONSIVE RULES
   ====================================================== */

@media (max-width: 1020px) {
    .dwc-hero-grid,
    .dwc-grid-2,
    .dwc-grid-3,
    .dwc-grid-4,
    .dwc-asset-layout {
        grid-template-columns: 1fr;
    }

    .dwc-logo-panel img,
    .dwc-asset-layout img,
    .dwc-image-panel img {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .dwc-container {
        padding: 16px 12px 42px;
    }

    .dwc-hero {
        padding: 18px;
    }

    .dwc-section-header {
        display: block;
    }

    .dwc-section-description {
        margin-top: 6px;
    }

    .dwc-card-body {
        padding: 16px;
    }

    .dwc-table {
        font-size: 13px;
    }

    .dwc-table th,
    .dwc-table td {
        padding: 8px;
    }
}


/* ======================================================
   16. PRINT RULES
   ====================================================== */

@media print {
    .dwc-top-nav,
    .dwc-jump-nav {
        display: none;
    }

    .dwc-site {
        background: #ffffff;
    }

    .dwc-container {
        max-width: none;
        padding: 0;
    }

    .dwc-card {
        break-inside: avoid;
    }
}


/* ======================================================
   17. PLACARD / CONTROL BOX REFERENCE EXTENSION
   ------------------------------------------------------
   Scoped extension for ATC-style placard pages such as
   DWC2440 Control Box Reference v2.0.

   IMPORTANT:
   These rules are scoped under .dwc-placard so the original
   DWC Web Reference Standard v2 pages keep their original
   layout and styling.
   ====================================================== */

:root {
    --dwc-soft: var(--dwc-green-soft-2);
    --dwc-page: var(--dwc-page-bg);
    --dwc-max: 1500px;
}

.dwc-page {
    max-width: var(--dwc-max);
    margin: 0 auto;
    padding: 20px 14px 50px;
}

.dwc-placard {
    background: var(--dwc-white);
    border: 2px solid var(--dwc-green-dark);
    box-shadow: var(--dwc-shadow);
}

/* Placard header */
.dwc-placard .dwc-header {
    display: grid;
    grid-template-columns: 360px 1fr 260px;
    gap: 14px;
    align-items: center;
    border-bottom: 5px solid var(--dwc-green-dark);
    padding: 10px 14px;
}

.dwc-placard .logo-box {
    border: 3px solid var(--dwc-green-dark);
    border-radius: 10px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.dwc-placard .logo-box img {
    max-height: 78px;
    object-fit: contain;
}

.dwc-placard .title-box {
    text-align: center;
}

.dwc-placard .title-box h1 {
    margin: 0;
    color: var(--dwc-green-dark);
    font-size: clamp(38px, 5vw, 68px);
    line-height: .95;
    font-weight: 950;
    letter-spacing: 1px;
}

.dwc-placard .title-box p {
    margin: 6px 0 0;
    font-size: clamp(22px, 3vw, 40px);
    line-height: 1;
    font-weight: 950;
    color: var(--dwc-black);
    text-transform: uppercase;
}

.dwc-placard .rev-box {
    border: 1px solid #777;
    font-weight: 900;
    font-size: 15px;
}

.dwc-placard .rev-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #777;
}

.dwc-placard .rev-row:last-child {
    border-bottom: 0;
}

.dwc-placard .rev-label {
    padding: 6px 10px;
    background: #f7f7f7;
}

.dwc-placard .rev-value {
    padding: 6px 10px;
    color: var(--dwc-green-dark);
}

.dwc-placard .rev-full {
    padding: 7px 10px;
    color: var(--dwc-white);
    background: var(--dwc-green-dark);
    text-align: center;
}

/* Placard navigation */
.dwc-placard .dwc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--dwc-border);
}

.dwc-placard .dwc-nav a {
    text-decoration: none;
    color: var(--dwc-text);
    background: var(--dwc-white);
    border: 1px solid var(--dwc-border);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 850;
}

.dwc-placard .dwc-nav a:hover {
    color: var(--dwc-green);
    border-color: var(--dwc-border-strong);
}

/* Placard grid aliases */
.dwc-placard .dwc-grid {
    display: grid;
    gap: 12px;
    padding: 12px;
}

.dwc-placard .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dwc-placard .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dwc-placard .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Placard cards */
.dwc-placard .dwc-card {
    border: 1.5px solid var(--dwc-green-dark);
    border-radius: 10px;
    background: var(--dwc-white);
    overflow: hidden;
    box-shadow: none;
}

.dwc-placard .card-head {
    background: linear-gradient(180deg, var(--dwc-green), var(--dwc-green-dark));
    color: var(--dwc-white);
    padding: 8px 12px;
    text-align: center;
}

.dwc-placard .card-head h2,
.dwc-placard .card-head h3 {
    margin: 0;
    color: var(--dwc-white);
    font-size: 19px;
    line-height: 1.1;
    font-weight: 950;
    text-transform: uppercase;
}

.dwc-placard .card-head p {
    margin: 2px 0 0;
    color: var(--dwc-white);
    font-size: 12px;
    font-weight: 800;
}

.dwc-placard .card-body {
    padding: 10px 12px 12px;
}

.dwc-placard .asset-layout {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 12px;
    align-items: center;
}

.dwc-placard .asset-layout img {
    margin: 0 auto;
    max-height: 240px;
    object-fit: contain;
}

/* Placard tables */
.dwc-placard table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dwc-placard th,
.dwc-placard td {
    border: 1px solid rgba(0, 0, 0, .28);
    padding: 6px 8px;
    vertical-align: top;
}

.dwc-placard th {
    background: #f2f5f2;
    color: #111;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 950;
}

.dwc-placard .pin {
    color: var(--dwc-green-dark);
    font-size: 17px;
    font-weight: 950;
    white-space: nowrap;
}

.dwc-placard .note {
    margin-top: 9px;
    padding: 9px 10px;
    border: 1px solid var(--dwc-border);
    border-radius: 10px;
    background: var(--dwc-soft);
    font-size: 13px;
    font-weight: 750;
}

.dwc-placard .note strong {
    color: var(--dwc-green-dark);
}

/* Placard buttons */
.dwc-placard .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.dwc-placard .button {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--dwc-border);
    text-decoration: none;
    font-weight: 850;
    color: var(--dwc-text);
}

.dwc-placard .button:hover {
    color: var(--dwc-green);
    border-color: var(--dwc-border-strong);
}

.dwc-placard .button.primary {
    background: var(--dwc-green);
    color: var(--dwc-white);
}

/* HTML/CSS diagram blocks */
.dwc-placard .flow {
    display: grid;
    gap: 10px;
}

.dwc-placard .flow-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
}

.dwc-placard .flow-step {
    border: 1px solid var(--dwc-border);
    border-radius: 12px;
    background: var(--dwc-soft);
    padding: 11px 9px;
    text-align: center;
    font-weight: 900;
    min-height: 72px;
    position: relative;
}

.dwc-placard .flow-step small {
    display: block;
    font-weight: 700;
    color: var(--dwc-muted);
    margin-top: 4px;
}

.dwc-placard .flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dwc-green-dark);
    font-size: 24px;
    font-weight: 950;
    z-index: 2;
}

.dwc-placard .logic-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dwc-placard .logic-card {
    border: 1px solid var(--dwc-border);
    border-radius: 12px;
    background: var(--dwc-soft);
    padding: 10px;
}

.dwc-placard .logic-card h4 {
    margin: 0 0 7px;
    color: var(--dwc-green-dark);
    font-size: 15px;
}

.dwc-placard ul {
    margin: 7px 0 0 18px;
    padding: 0;
    font-size: 13px;
}

.dwc-placard li {
    margin: 4px 0;
}

/* DIP switch blocks */
.dwc-placard .dip-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    margin-top: 8px;
}

.dwc-placard .dip {
    border: 1px solid #222;
    min-height: 44px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 950;
}

.dwc-placard .dip.on {
    background: var(--dwc-green);
    color: var(--dwc-white);
}

.dwc-placard .dip.off {
    background: #f1f1f1;
    color: #111;
}

/* Placard warning and footer */
.dwc-placard .warning {
    margin: 12px;
    padding: 10px 14px;
    border: 2px solid #111;
    background: #111;
    color: var(--dwc-white);
    font-size: 15px;
    font-weight: 950;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.dwc-placard .footer-bar {
    background: #050505;
    color: var(--dwc-white);
    text-align: center;
    padding: 10px 14px;
    font-size: 17px;
    font-weight: 950;
    text-transform: uppercase;
}

/* Placard responsive rules */
@media (max-width: 1100px) {
    .dwc-placard .dwc-header {
        grid-template-columns: 1fr;
    }

    .dwc-placard .grid-3,
    .dwc-placard .grid-2,
    .dwc-placard .grid-4,
    .dwc-placard .flow-row,
    .dwc-placard .logic-lanes,
    .dwc-placard .asset-layout {
        grid-template-columns: 1fr;
    }

    .dwc-placard .flow-step:not(:last-child)::after {
        content: "↓";
        right: auto;
        left: 50%;
        top: auto;
        bottom: -24px;
        transform: translateX(-50%);
    }

    .dwc-placard .flow-step {
        margin-bottom: 14px;
    }
}

/* Placard print rules */
@media print {
    .dwc-page {
        max-width: none;
        padding: 0;
    }

    .dwc-placard {
        box-shadow: none;
    }

    .dwc-placard .dwc-nav {
        display: none;
    }

    .dwc-placard .dwc-card {
        break-inside: avoid;
    }
}

/* ======================================================
   DWC1824 / Wiring Reference Utility Blocks
   ====================================================== */
.dwc-large-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--dwc-border);
    background: #fff;
}

.dwc-medium-image {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--dwc-border);
    background: #fff;
}

.dwc-flow-list {
    display: grid;
    gap: 10px;
}

.dwc-flow-step {
    border: 1px solid var(--dwc-border);
    border-radius: 14px;
    background: var(--dwc-green-soft-2);
    padding: 12px 14px;
}

.dwc-flow-step strong {
    display: block;
    color: var(--dwc-green-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.dwc-flow-step span {
    display: block;
    color: var(--dwc-muted);
    font-size: 14px;
    line-height: 1.35;
}
