@font-face {
    font-family: "PP Neue Montreal";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://kleencut.com.au/wp-content/uploads/2024/05/ppneuemontreal-thin.woff2") format("woff2");
}

@font-face {
    font-family: "PP Neue Montreal";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("https://kleencut.com.au/wp-content/uploads/2024/05/ppneuemontreal-medium.woff2") format("woff2");
}

@font-face {
    font-family: "PP Neue Montreal";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("https://kleencut.com.au/wp-content/uploads/2024/05/ppneuemontreal-bold.woff2") format("woff2");
}

/* ==========================================================
   KLEENRAIL
   Kleencut Solutions
   Master Staging Stylesheet
   Cleaned and consolidated
========================================================== */

/* ==========================================================
   VARIABLES
========================================================== */

:root {
    /* Kleencut brand palette */
    --kc-primary: #45658E;
    --kc-primary-dark: #3D5B82;
    --kc-accent: #45B8E8;

    /* Typography */
    --kc-heading: #294A76;
    --kc-text: #333333;
    --kc-text-grey: #5F6368;
    --kc-light-text: #FFFFFF;

    /* Backgrounds */
    --kc-white: #FFFFFF;
    --kc-grey: #F5F5F3;
    --kc-grey-alt: #EEEEEB;

    /* Borders */
    --kc-border: #D5D9DD;
    --kc-mid-grey: #C8CDD2;

    /* Compatibility aliases */
    --kc-black: #294A76;
    --kc-dark: #45658E;

    --kc-max-width: 1280px;
    --kc-section-space: 95px;
}

/* ==========================================================
   RESET / GLOBAL
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--kc-white);
    color: var(--kc-text);
    font-family: "PP Neue Montreal", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

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

.kc-container {
    width: min(var(--kc-max-width), calc(100% - 60px));
    margin: 0 auto;
}

.kc-section {
    padding: var(--kc-section-space) 0;
}

.kc-section-grey {
    background: var(--kc-grey);
}

.kc-section-dark {
    background: #5F7FA6;
    color: #ffffff;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

.kc-eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kc-title {
    margin: 0 0 25px;
    font-size: clamp(55px, 7vw, 96px);
    line-height: .92;
    font-weight: 500;
    letter-spacing: -3px;
}

.kc-heading {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -2px;
}

.kc-heading-medium {
    margin: 0 0 24px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -1.3px;
}

.kc-heading-small {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
}

.kc-heading-large {
    margin: 0 0 25px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
}

.kc-lead {
    max-width: 760px;
    margin: 0;
    font-size: 20px;
    line-height: 1.65;
}

.kc-copy {
    max-width: 720px;
    color: var(--kc-text-grey);
    font-size: 17px;
    line-height: 1.75;
}

.kc-copy p:first-child {
    margin-top: 0;
}

.kc-copy p:last-child {
    margin-bottom: 0;
}

.kc-section-dark .kc-copy,
.kc-section-dark p {
    color: var(--kc-light-text);
}


.kc-title,
.kc-heading,
.kc-heading-medium,
.kc-heading-small,
.kc-heading-large {
    color: var(--kc-heading);
}

.kc-hero h1,
.kc-section-dark .kc-heading,
.kc-section-dark .kc-heading-medium,
.kc-section-dark .kc-heading-large,
.kc-section-dark .kc-title {
    color: #fff;
}

/* ==========================================================
   BUTTONS
========================================================== */

.kc-button {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 26px;
    border: 1px solid var(--kc-primary);
    border-radius: 2em;
    background: var(--kc-primary);
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .3px;
    text-transform: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.kc-button:hover {
    border-color: var(--kc-primary-dark);
    background: var(--kc-primary-dark);
    color: #fff;
}

.kc-button-light,
.kc-section-dark .kc-button {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.kc-button-light:hover,
.kc-section-dark .kc-button:hover {
    border-color: #fff;
    background: #fff;
    color: var(--kc-primary);
}

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

.kc-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.kc-header-main {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
}

.kc-logo {
    display: flex;
    align-items: center;
}

.kc-logo img {
    width: 190px;
    max-height: 58px;
    object-fit: contain;
}

.kc-nav-wrap,
.kc-nav,
.kc-header-actions {
    display: flex;
    align-items: center;
}

.kc-nav-wrap {
    gap: 34px;
}

.kc-nav {
    gap: 30px;
}

.kc-nav-item {
    position: relative;
}

.kc-nav-link {
    display: block;
    padding: 34px 0;
    color: var(--kc-heading);
    font-size: 14px;
    font-weight: 500;
}

.kc-dropdown {
    position: absolute;
    top: 100%;
    left: -22px;
    min-width: 210px;
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.kc-nav-item:hover .kc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kc-dropdown a {
    display: block;
    padding: 11px 22px;
    font-size: 14px;
}

.kc-dropdown a:hover {
    background: var(--kc-grey);
}

.kc-header-actions {
    gap: 20px;
}

.kc-phone {
    color: var(--kc-heading);
    font-size: 14px;
    font-weight: 500;
}

.kc-contact-btn {
    padding: 12px 20px;
    border: 1px solid var(--kc-primary);
    border-radius: 2em;
    background: var(--kc-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2px;
    text-transform: none;
}

.kc-contact-btn:hover {
    border-color: var(--kc-primary-dark);
    background: var(--kc-primary-dark);
    color: #fff;
}

.kc-menu-toggle {
    display: none;
    padding: 0;
    border: 0;
    background: none;
    font-size: 26px;
    cursor: pointer;
}

.kc-mobile-menu {
    display: none;
    padding: 20px 0 30px;
    border-top: 1px solid #ececec;
}

.kc-mobile-menu a {
    display: block;
    padding: 9px 0;
    font-size: 15px;
}

.kc-mobile-sub {
    padding-left: 20px;
}

/* ==========================================================
   COLLECTION HERO
========================================================== */

.kc-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: flex-end;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.60) 0%,
            rgba(0,0,0,.28) 45%,
            rgba(0,0,0,.05) 100%
        ),
        url("../images/kleenrail-hero.jpg") center center / cover no-repeat;
    color: #fff;
}

.kc-hero-inner {
    padding: 110px 0 90px;
}

.kc-hero-copy {
    max-width: 740px;
}

.kc-hero h1 {
    margin: 0 0 28px;
    font-size: clamp(56px, 8vw, 105px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -4px;
}

.kc-hero p {
    max-width: 600px;
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
}

.kc-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

/* ==========================================================
   COLLECTION PRODUCT NAV
========================================================== */

.kc-product-nav {
    border-top: 1px solid var(--kc-border);
    border-bottom: 1px solid var(--kc-border);
}

.kc-product-nav-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.kc-product-nav a {
    padding: 24px 25px;
    border-right: 1px solid var(--kc-border);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kc-product-nav a:last-child {
    border-right: 0;
}

.kc-product-nav a:hover {
    background: var(--kc-black);
    color: #fff;
}

/* ==========================================================
   COLLECTION CARDS
========================================================== */

.kc-grid-3,
.kc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.kc-card,
.kc-product-card {
    background: #f5f5f5;
}

.kc-card-image,
.kc-product-card .kc-product-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
	border-radius: 24px;
	background-color: #f5f5f5;		
	
}

.kc-card-image img,
.kc-product-card .kc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
	border-radius: 24px;
	background-color: #f5f5f5;		

}

.kc-card:hover .kc-card-image img,
.kc-product-card:hover .kc-product-image img {
    transform: scale(1.025);
	border-radius: 24px;
	background-color: #f5f5f5;		
}

.kc-card-content,
.kc-product-card .kc-product-content {
    padding: 28px 25px 35px;
}

.kc-card-content h3,
.kc-product-card .kc-product-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 500;
}

.kc-card-content p,
.kc-product-card .kc-product-content p {
    margin: 0;
    color: var(--kc-text-grey);
    font-size: 14px;
    line-height: 1.65;
}

.kc-product-code {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* ==========================================================
   COLLECTION PRODUCT SECTIONS
========================================================== */

.kc-product {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}

.kc-product.reverse {
    grid-template-columns: .85fr 1.15fr;
}

.kc-product.reverse > .kc-product-image {
    order: 2;
}

.kc-product.reverse > .kc-product-content {
    order: 1;
}

.kc-product > .kc-product-image {
    overflow: hidden;
    background: #f5f5f5;
	border-radius: 24px;
	background-color: #f5f5f5;		
}

.kc-product > .kc-product-image img {
    min-height: 620px;
    object-fit: cover;
    transition: transform .6s ease;
	border-radius: 24px;
	background-color: #f5f5f5;	
}

.kc-product > .kc-product-image:hover img {
    transform: scale(1.025);
	border-radius: 24px;	
}

.kc-product > .kc-product-content h2 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
}

.kc-product > .kc-product-content p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.75;
}

.kc-specs {
    margin-top: 35px;
    border-top: 1px solid #cececa;
}

/* ==========================================================
   SKU HERO
========================================================== */

.kc-sku-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

.kc-sku-hero-image {
    background: #e8e8e5;
}

.kc-sku-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.kc-sku-hero-content {
    display: flex;
    align-items: center;
    padding: 80px;
}

.kc-sku-hero-inner {
    width: 100%;
    max-width: 560px;
}

.kc-sku-intro {
    max-width: 540px;
    margin: 0 0 25px;
    color: var(--kc-text-grey);
    font-size: 20px;
    line-height: 1.65;
}

/* ==========================================================
   QUICK SPECIFICATIONS
========================================================== */

.kc-quick-specs {
    border-top: 1px solid var(--kc-mid-grey);
    border-bottom: 1px solid var(--kc-mid-grey);
}

.kc-quick-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.kc-quick-spec {
    padding: 28px 25px;
    border-right: 1px solid var(--kc-mid-grey);
}

.kc-quick-spec:last-child {
    border-right: 0;
}

.kc-quick-spec-label {
    margin-bottom: 7px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.kc-quick-spec-value {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

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

.kc-content-grid,
.kc-technical-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.kc-content-copy {
    max-width: 700px;
}

.kc-full-image {
    width: 100%;
    height: min(80vh, 850px);
    object-fit: cover;
}

.kc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 55px;
}

.kc-feature {
    padding-top: 22px;
    border-top: 1px solid #bdbdb9;
}

.kc-feature-number {
    margin-bottom: 30px;
    color: #999;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.kc-feature h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 500;
}

.kc-feature p {
    margin: 0;
    color: var(--kc-text-grey);
    font-size: 15px;
    line-height: 1.7;
}

.kc-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3px;
}

.kc-detail-main,
.kc-detail-secondary {
    background: #e5e5e2;
}

.kc-detail-main img {
    height: 700px;
    object-fit: cover;
}

.kc-detail-secondary {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

.kc-detail-secondary img {
    height: 348px;
    object-fit: cover;
}

.kc-spec-table {
    border-top: 1px solid #bbb;
}

.kc-spec-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    padding: 17px 0;
    border-bottom: 1px solid var(--kc-mid-grey);
    font-size: 14px;
    line-height: 1.6;
}

.kc-spec-label {
    font-weight: 700;
}

/* ==========================================================
   RELATED PRODUCTS
========================================================== */

.kc-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 45px;
}

.kc-related-card {
    background: #fff;
}

.kc-related-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

.kc-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
	border-radius: 24px;
	background-color: #f5f5f5;		
}

.kc-related-card:hover img {
    transform: scale(1.025);
	border-radius: 24px;
	background-color: #f5f5f5;		
}

.kc-related-content {
    padding: 24px 0;
}

.kc-related-content h3 {
    margin: 5px 0 8px;
    font-size: 25px;
    font-weight: 500;
}

.kc-related-content p {
    margin: 0;
    color: var(--kc-text-grey);
    font-size: 14px;
}

/* ==========================================================
   SOCIAL SHOWCASE
========================================================== */

.kc-showcase {
    padding: 90px 0 110px;
    background: var(--kc-grey);
}

.kc-showcase-intro {
    max-width: 780px;
    margin-bottom: 65px;
}

.kc-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 45px;
}

.kc-platform-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.kc-platform-name {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
}

.kc-platform-size {
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kc-social-frame {
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.kc-social-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kc-ratio-4-5 {
    aspect-ratio: 4 / 5;
}

.kc-ratio-linkedin {
    aspect-ratio: 1.91 / 1;
}

.kc-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.kc-social-copy {
    padding-top: 20px;
}

.kc-social-copy h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.kc-social-copy p {
    margin: 0;
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.65;
}

.kc-divider {
    width: 100%;
    height: 1px;
    margin: 85px 0;
    background: #d2d2cf;
}

/* ==========================================================
   CTA
========================================================== */

.kc-cta {
    padding: 105px 0;
}

.kc-cta-inner {
    max-width: 850px;
}

.kc-cta h2 {
    margin: 0 0 26px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2.5px;
}

.kc-cta p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
}

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

.kc-footer {
    padding: 80px 0 0;
    background: var(--kc-primary);
    color: #fff;
}

.kc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
}

.kc-footer-logo img {
    width: 200px;
    margin-bottom: 25px;
}

.kc-footer-intro {
    max-width: 330px;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.7;
}

.kc-footer h4 {
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.kc-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kc-footer-links li {
    margin-bottom: 9px;
}

.kc-footer-links a,
.kc-footer-contact {
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.kc-footer-links a:hover {
    color: #fff;
}

.kc-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.9);
    font-size: 12px;
}

.kc-footer-bottom a {
    color: rgba(255,255,255,.9);
}

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

@media (max-width: 1050px) {
    .kc-nav,
    .kc-header-actions {
        display: none;
    }

    .kc-menu-toggle {
        display: block;
    }

    .kc-mobile-menu.active {
        display: block;
    }

    .kc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --kc-section-space: 70px;
    }

    .kc-container {
        width: min(100% - 36px, var(--kc-max-width));
    }

    .kc-hero {
        min-height: 620px;
    }

    .kc-sku-hero {
        grid-template-columns: 1fr;
    }

    .kc-sku-hero-image img {
        height: 60vh;
        min-height: 480px;
    }

    .kc-sku-hero-content {
        padding: 60px 25px;
    }

    .kc-quick-spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kc-quick-spec:nth-child(2) {
        border-right: 0;
    }

    .kc-quick-spec:nth-child(-n+2) {
        border-bottom: 1px solid var(--kc-mid-grey);
    }

    .kc-intro-grid,
    .kc-product,
    .kc-product.reverse,
    .kc-content-grid,
    .kc-technical-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kc-product.reverse > .kc-product-image,
    .kc-product.reverse > .kc-product-content {
        order: initial;
    }

    .kc-product > .kc-product-image img {
        min-height: 420px;
		border-radius: 24px;
	    background-color: #f5f5f5;	
    }

    .kc-grid-3,
    .kc-product-grid,
    .kc-features-grid {
        grid-template-columns: 1fr;
    }

    .kc-detail-grid {
        grid-template-columns: 1fr;
    }

    .kc-detail-main img,
    .kc-detail-secondary img {
        height: auto;
    }

    .kc-related-grid,
    .kc-social-grid {
        grid-template-columns: 1fr;
    }

    .kc-social-grid {
        gap: 55px;
    }
}

@media (max-width: 600px) {
    .kc-header-main {
        min-height: 76px;
    }

    .kc-logo img {
        width: 155px;
    }

    .kc-hero {
        min-height: 570px;
    }

    .kc-hero-inner {
        padding: 90px 0 55px;
    }

    .kc-hero h1 {
        letter-spacing: -2px;
    }

    .kc-product-nav-inner {
        grid-template-columns: 1fr;
    }

    .kc-product-nav a {
        border-right: 0;
        border-bottom: 1px solid var(--kc-border);
    }

    .kc-product-nav a:last-child {
        border-bottom: 0;
    }

    .kc-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .kc-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .kc-quick-spec-grid {
        grid-template-columns: 1fr;
    }

    .kc-quick-spec {
        border-right: 0;
        border-bottom: 1px solid var(--kc-mid-grey);
    }

    .kc-quick-spec:last-child {
        border-bottom: 0;
    }

    .kc-spec-row {
        grid-template-columns: 125px 1fr;
        gap: 15px;
    }

    .kc-platform-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}


/* ==========================================================
   KLEENCUT BRAND OVERRIDES
========================================================== */

.kc-eyebrow,
.kc-product-code {
    color: var(--kc-heading);
}

.kc-section-dark .kc-eyebrow,
.kc-footer .kc-eyebrow {
    color: #fff;
}

.kc-footer h4 {
    color: #fff;
    font-weight: 500;
}

.kc-footer-links a:hover {
    color: var(--kc-accent);
}

.kc-dropdown a,
.kc-mobile-menu a {
    color: var(--kc-heading);
}

.kc-dropdown a:hover {
    background: var(--kc-grey);
}

.kc-product-nav a {
    color: var(--kc-heading);
}

.kc-product-nav a:hover {
    background: var(--kc-primary);
    color: #fff;
}

.kc-spec-label,
.kc-quick-spec-label {
    color: var(--kc-heading);
}

.kc-feature-number {
    color: var(--kc-accent);
}
