:root{
    --dk-green:#339900;
    --dk-green-100:#E0F0D9;
    --dk-text:#1D1D1D;
    --dk-muted:#878787;
    --dk-bg:#ffffff;
    --dk-shadow-light: 0 10px 20px rgba(135,135,135,.15);
    --dk-shadow: 0 13px 28px rgba(0,0,0,.18);
    --dk-radius: 14px;
}

*{
    box-sizing:border-box
}
html,body{
    height:100%
}
body{
    margin:0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--dk-text);
    background:var(--dk-bg);
}
a{
    color:inherit;
    text-decoration:none
}
.dk-skip{
    position:absolute;
    left:-999px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden
}
.dk-skip:focus{
    left:12px;
    top:12px;
    width:auto;
    height:auto;
    padding:8px 10px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    z-index:9999
}

.dk-header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:50;
    border-bottom:1px solid #eee
}
.dk-header__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 16px;
    max-width:1200px;
    margin:0 auto
}
.dk-brand__text{
    font-weight:800;
    letter-spacing:.2px
}
.dk-burger{
    display:inline-flex;
    flex-direction:column;
    gap:6px;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    cursor:pointer
}
.dk-burger span{
    display:block;
    width:28px;
    height:2px;
    background:#111;
    border-radius:2px
}

.dk-main{
    max-width:1200px;
    margin:0 auto
}
@media (max-width: 900px){
    .dk-main{
        max-width:760px
    }
}

.dk-desktop-nav{
    display:none
}
@media (min-width: 900px){
    .dk-burger{
        display:none
    }
    .dk-desktop-nav{
        display:block
    }
}


.dk-nav-toggle{
    position:absolute;
    left:-9999px
}
.dk-drawer{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:60
}
.dk-drawer__overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.22);
    opacity:0;
    transition: opacity .18s ease;
    z-index:0;
    pointer-events:none
}
.dk-drawer__panel{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    width: min(420px, 92vw);
    background:#fff;
    transform: translateX(102%);
    transition: transform .22s ease;
    display:flex;
    flex-direction:column;
    z-index:1;
    pointer-events:auto;
}
.dk-nav-toggle:checked ~ .dk-header .dk-drawer{
    pointer-events:auto
}
.dk-nav-toggle:checked ~ .dk-header .dk-drawer__overlay{
    opacity:1;
    pointer-events:auto
}
.dk-nav-toggle:checked ~ .dk-header .dk-drawer__panel{
    transform: translateX(0)
}

.dk-drawer__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px;
    border-bottom:1px solid #eee
}
.dk-drawer__title{
    font-weight:800
}
.dk-drawer__close{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:28px;
    line-height:1
}
.dk-drawer__footer{
    margin-top:auto;
    padding:14px 16px;
    border-top:1px solid #eee
}
.dk-mini-links{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    color:var(--dk-muted);
    font-size:14px;
    margin-top:10px
}
.dk-mini-links a{
    text-decoration:underline
}

.dk-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 18px;
    border-radius:999px;
    border:1px solid var(--dk-green);
    font-weight:800
}
.dk-btn--primary{
    background:var(--dk-green);
    color:#fff;
    border-color:var(--dk-green)
}
.dk-lang{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:12px;
    color:var(--dk-muted)
}
.dk-lang__dot{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f2f2f2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:800
}


.dk-mnav{
    padding:10px 0
}


.dk-mnav__link{
    display:block;
    padding:18px 18px;
    font-size:20px;
    border-bottom:1px solid #f1f1f1
}

.dk-mnav__group{
    border-bottom:1px solid #f1f1f1
}


.dk-mnav__group summary{
    list-style:none;
    cursor:pointer;
    padding:18px 18px;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.dk-mnav__group summary::-webkit-details-marker{
    display:none
}


.dk-mnav__group summary:after{
    content:"›";
    font-size:26px;
    color:#111;
    transform: rotate(0deg);
    transition: transform .15s ease
}
.dk-mnav__group[open] summary:after{
    transform: rotate(90deg)
}


.dk-mnav__group[open] summary{
    border-bottom:1px solid #dcdcdc;
    padding-bottom:14px;
    margin-bottom:6px;
}


.dk-mnav__group > a{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:14px 18px;
    color:var(--dk-text);
}
.dk-mnav__group > a:hover{
    background: rgba(224,240,217,.25)
}


.dk-mnav__group > a .dk-ico{
    width:44px;
    height:44px;
    border-radius:50%;
    background: var(--dk-green-100);
    color: var(--dk-green);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 44px;
    font-size: 18px;
}


.dk-mnav__group > a b{
    display:block;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
    margin-top:2px
}
.dk-mnav__group > a em{
    display:block;
    margin-top:6px;
    font-style:normal;
    color:var(--dk-muted);
    font-size:16px;
    line-height:1.35
}

.dk-mnav__info{
    padding:18px 18px 18px 78px;
    background:#f7f7f7;
    margin-top:10px
}
.dk-mnav__infoTitle{
    font-weight:900;
    font-size:18px;
    margin:0 0 10px
}
.dk-mnav__info a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    color:var(--dk-text);
    font-size:18px
}
.dk-mnav__info a:hover{
    color:var(--dk-green)
}


@media (max-width: 420px){
    .dk-mnav__group summary,
    .dk-mnav__link{
        padding-left:16px;
        padding-right:16px
    }
    .dk-mnav__group > a{
        padding-left:16px;
        padding-right:16px
    }
    .dk-mnav__info{
        padding-left:68px
    }
    .dk-mnav__group > a b{
        font-size:19px
    }
    .dk-mnav__group > a em{
        font-size:15px
    }
}


.dk-mega{
    display:flex;
    gap:22px;
    align-items:center
}
.dk-mega__item{
    padding:10px 8px;
    color:#333
}
.dk-mega__item:hover{
    color:var(--dk-green)
}


.dk-hero{
    position: relative;
    overflow: hidden;
    margin: 16px;
    min-height: 360px;
}

.dk-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: var(--hero-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 72% center;
    transform: none;
}

.dk-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.0) 100%);
}
.dk-hero__inner{
    position:relative;
    z-index:1;
    padding: 22px 18px;
}
.dk-hero__title{
    margin:0;
    color:#fff;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: .2px;
    font-weight: 900;
    max-width: 18ch;
}


@media (min-width: 900px){
    .dk-hero{
        margin: 18px auto;
        max-width: 1200px;
        min-height: 520px;
    }

    .dk-hero::before{
        background-position: 70% 55%;
    }
    .dk-hero__title{
        font-size: 46px;
        max-width: 24ch
    }
}

@media (max-width: 899px){
    .dk-hero{
        min-height: 420px;
    }

    .dk-hero::before{
        background-position: 68% 55%;
    }
}

@media (max-width: 577px){
    .dk-hero{
        min-height: 460px;
    }

    .dk-hero::before{
        background-position: 66% 52%;
        background-size: cover;
    }
}

.dk-stepcard-wrap{
    position: relative;
    z-index: 5;                 /* über dem Hero */
    padding: 0 16px;

    /* Karte rutscht ins Bild hinein (responsive) */
    margin-top: clamp(-110px, -14vw, -70px);
}

.dk-card{
    background:#fff;
    border-radius: var(--dk-radius);
    box-shadow: var(--dk-shadow)
}

.dk-stepcard{
    padding:18px 16px;
    border-radius: 22px;
}

@media (min-width: 900px){
    .dk-stepcard-wrap{
        margin-top: -120px;
        padding: 0 24px;
    }
}
/* Tablet: Karte zentrieren */
@media (min-width: 700px){
    .dk-stepcard-wrap{
        /*margin-top: -160px;*/
        padding: 0 34px;
    }
    .dk-stepcard{
        max-width: 500px;
        /*margin: 0 auto;*/
    }
}


@media (min-width: 1100px){
    .dk-stepcard-wrap{
        margin-top: -180px;
        padding: 0 32px;
    }
    .dk-stepcard{
        max-width: 600px;
    }
}


.dk-stepcard__title{
    margin:0 0 14px;
    font-size: 28px;
    line-height:1.15;
    /*font-weight:900*/
}
.dk-choice-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap:14px
}
@media (min-width: 520px){
    .dk-choice-grid{
        grid-template-columns: 1fr 1fr
    }
}
.dk-choice{
    display:flex;
    align-items:center;
    gap:14px;
    border: 2px solid rgba(51,153,0,.55);
    border-radius: 12px;
    padding: 16px 16px;
}
.dk-choice__icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background: var(--dk-green-100);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color: var(--dk-green);
    font-size: 24px;
}

.dk-choice__label{
    font-weight:500;
    font-size: 24px;
    color: var(--dk-green)
}
.dk-stepcard__actions{
    display:flex;
    justify-content:flex-end;
    margin-top: 14px
}

@media (min-width: 520px){
    .dk-choice-grid{
        grid-template-columns: 1fr 1fr
    }
}


.dk-section{
    padding: 22px 16px
}
.dk-section h2{
    margin:0 0 10px;
    font-size: 34px;
    line-height:1.1;
    font-weight:900
}
.dk-lead{
    color:#444;
    font-size: 20px;
    line-height:1.5;
    margin:0 0 18px
}


.dk-konsu{
    position:relative;
    border:2px solid rgba(51,153,0,.85)
}
.dk-konsu__inner{
    padding: 24px 18px 22px
}
.dk-konsu__stamp{
    position:absolute;
    top: -28px;
    left: -14px;
    width: 170px;
    transform: rotate(-10deg);
}
.dk-konsu__brand{
    display:block;
    max-width: 260px;
    width: 70%;
    margin: 8px auto 14px
}
.dk-konsu p{
    font-size: 22px;
    line-height:1.55;
    margin:0
}
.dk-konsu strong{
    font-weight:900
}


.dk-service-cards{
    display:grid;
    gap:18px
}
.dk-service{
    display:grid;
    grid-template-columns: 64px 1fr;
    gap:14px;
    padding:18px 16px
}
.dk-service__icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background: var(--dk-green-100);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--dk-green);
    font-size: 26px;
}
.dk-service__title{
    font-weight:900;
    font-size: 26px;
    margin-bottom:6px
}
.dk-service__desc{
    color: var(--dk-muted);
    font-size: 18px;
    line-height:1.45
}
.dk-service__cta{
    grid-column: 1 / -1;
    display:inline-flex;
    justify-content:center;
    margin-top: 12px;
    color:#fff;
    background:var(--dk-green);
    border-radius:999px;
    padding:14px 18px;
    font-weight:900
}


.dk-footer{
    margin-top: 30px;
    border-top:1px solid #eee
}
.dk-footer__inner{
    max-width:1200px;
    margin:0 auto;
    padding:22px 16px
}
.dk-footer__cols{
    display:grid;
    grid-template-columns:1fr;
    gap:22px
}
@media (min-width: 700px){
    .dk-footer__cols{
        grid-template-columns: 1fr 1fr
    }
}
.dk-footer h3{
    margin:0 0 10px;
    font-size: 22px
}
.dk-footer__list{
    list-style:none;
    padding:0;
    margin:0
}
.dk-footer__list li{
    margin:8px 0
}
.dk-footer__bottom{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    padding:16px 0;
    border-top:1px solid #f1f1f1;
    margin-top: 16px
}
.dk-footer__copy{
    background: var(--dk-green-100);
    color: var(--dk-green);
    padding:14px 16px;
    border-radius: 12px;
    text-align:center;
    margin-top: 16px
}
.dk-social{
    display:flex;
    gap:12px
}
.dk-social__icon{
    width:56px;
    height:56px;
    border-radius:50%;
    border:2px solid var(--dk-green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color: var(--dk-green)
}
.dk-ico{
    width:44px;
    height:44px;
    border-radius:50%;
    background: var(--dk-green-100);
    color: var(--dk-green);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 44px;
    font-size: 18px;
}
/* ===== Desktop MegaMenu (from desktopMegaMenu.xhtml) ===== */

@media (min-width: 900px){
    .dk-desktop-nav{
        position:relative
    }

    .dk-topnav{
        list-style:none;
        margin:0;
        padding:0;
        display:flex;
        gap:10px;
        align-items:center;

        /* NEW: mega soll relativ zur ganzen nav ausgerichtet werden */
        position: relative;
    }

    /* NEW: damit das absolute Mega nicht pro Item “verschoben” wird */
    .dk-topnav__item{
        position: static;
    }

    .dk-topnav__link{
        display:inline-flex;
        padding:14px 8px;
        color:#333;
        font-weight:500;
    }
    .dk-topnav__item:hover > .dk-topnav__link{
        color:var(--dk-green)
    }

    /* Mega: immer gleich linksbündig zur Topnav, passt sich dem Viewport an */
    .dk-mega{
        display:none;
        position:absolute;

        /* CHANGED: nicht pro Item zentrieren/verschieben */
        left: 0;
        right: 0;
        transform: none;

        top: 100%;
        padding-top: 10px; /* visueller Abstand, aber KEIN Hover-Gap */

        /* Panelbreite wird im Panel begrenzt */
        width: auto;
        z-index:80;
    }

    .dk-has-mega:hover > .dk-mega{
        display:block
    }


    .dk-mega__panel{
        background:#fff;
        border-radius: 18px;
        box-shadow: var(--dk-shadow);
        padding: 28px 28px 26px;

        /* NEW: max Breite + linksbündig innerhalb der nav */
        max-width: 1100px;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
    }

    .dk-mega__grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 28px;
    }
    .dk-mega__tile{
        display:flex;
        gap:16px;
        align-items:flex-start;
        padding: 10px 8px;
        border-radius: 14px;
    }
    .dk-mega__tile:hover{
        background: rgba(224,240,217,.35)
    }

    .dk-mega__tile b{
        display:block;
        font-size:22px;
        line-height:1.15
    }
    .dk-mega__tile em{
        display:block;
        margin-top:6px;
        font-style:normal;
        color:var(--dk-muted);
        font-size:16px;
        line-height:1.3
    }
    .dk-mega__divider{
        height:1px;
        background:#eee;
        margin: 22px 0
    }
    .dk-mega__infos-title{
        font-weight:800;
        font-size:22px;
        margin-bottom:10px
    }
    .dk-mega__infos-grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 28px;
    }
    .dk-arrow{
        display:flex;
        align-items:center;
        gap:10px;
        font-size:20px
    }
    .dk-arrow:hover{
        color:var(--dk-green)
    }
}
@media (min-width: 1100px){
    .dk-topnav{
        gap:28px;
    }
}

.dk-section{
    padding: 26px 16px;
    margin-top: 30px
}
.dk-section h2{
    margin:0 0 8px;
    font-size: 34px;
    line-height:1.1;
    font-weight:900
}
.dk-section p{
    margin:0 0 16px;
    color:#333;
    font-size: 18px;
    line-height:1.45
}



.dk-cs-card{
    position: relative;
    background: #fff;
    border: 2px solid var(--dk-green);
    border-radius: 18px;
    max-width: 980px;
    margin: 44px auto;
    padding: 40px 34px 40px;       /* oben Platz für Badge */
    overflow: visible;             /* Badge darf über den Rahmen hinaus */
}


.dk-cs-badge{
    position: absolute;
    left: -6px;
    top: -22px;
    width: 210px;                  /* Desktop */
    height: auto;
    transform: rotate(-12deg);
    transform-origin: left top;
    z-index: 3;
    pointer-events: none;          /* verhindert „komische“ Klick-Flächen */
}


.dk-cs-logo{
    display: block;
    width: min(360px, 100%);
    height: auto;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.dk-cs-text{
    max-width: 740px;
    margin: 0 auto;
    color: #333;
    font-size: 20px;
    line-height: 1.6;
}


@media (max-width: 600px){
    .dk-cs-card{
        margin: 28px auto;
        padding: 74px 18px 26px;
    }
    .dk-cs-badge{
        left: -2px;
        top: -18px;
        width: 160px;
    }
    .dk-cs-logo{
        width: min(280px, 100%);
        margin-top: 4px;
    }
    .dk-cs-text{
        font-size: 18px;
    }
}

.dk-service-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
}
.dk-service-card{
    background:#fff;
    border-radius: var(--dk-radius);
    box-shadow: var(--dk-shadow);
    padding: 18px 18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.dk-service-top{
    display:flex;
    gap:14px;
    align-items:flex-start
}
.dk-service-top .dk-ico{
    width:56px;
    height:56px;
    flex-basis:56px;
    font-size:22px
}
.dk-service-title{
    font-size: 26px;
    font-weight:900;
    margin:0
}
.dk-service-desc{
    color:var(--dk-muted);
    margin:0;
    font-size:18px;
    line-height:1.35
}
.dk-service-btn{
    margin-top:auto;
    align-self:center
}

.dk-chip-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.dk-chip{
    background:#fff;
    box-shadow: var(--dk-shadow);
    border-radius: 999px;
    padding: 10px 14px;
    display:flex;
    gap:12px;
    align-items:center;
    font-weight:800;
    font-size: 18px;
}
.dk-chip .dk-ico{
    width:44px;
    height:44px;
    flex-basis:44px
}

.dk-actions-head{
    display:flex;
    gap:14px;
    align-items:center;
    margin-top: 20px;
    margin-bottom: 14px;
}
.dk-actions-head .dk-bubble{
    width:72px;
    height:72px;
    border-radius:50%;
    background: var(--dk-green-100);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--dk-green);
    font-weight:900;
    font-size: 34px;
}
.dk-actions-scroll{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom: 10px;
}
.dk-actions-scroll::-webkit-scrollbar{
    height:10px
}
.dk-actions-scroll::-webkit-scrollbar-thumb{
    background:#ddd;
    border-radius:999px
}
.dk-action-card{
    flex: 0 0 78%;
    scroll-snap-align:start;
    background:#fff;
    border-radius: var(--dk-radius);
    box-shadow: var(--dk-shadow-light);
    padding: 16px;
}
@media (min-width: 560px){
    .dk-action-card{
        flex-basis: 46%
    }
}
@media (min-width: 900px){
    .dk-service-grid{
        grid-template-columns: 1fr 1fr 1fr
    }
    .dk-action-card{
        flex-basis: 34%
    }
}

.dk-action-top{
    display:flex;
    gap:14px;
    align-items:flex-start
}
.dk-action-img{
    width:86px;
    height:86px;
    border-radius: 12px;
    object-fit:contain;
    background:#fff
}
.dk-action-meta{
    flex:1
}
.dk-action-date{
    color:var(--dk-green);
    font-size:16px;
    font-weight:700
}
.dk-action-title{
    margin:6px 0 0;
    font-size:22px;
    font-weight:900
}
.dk-action-desc{
    color:var(--dk-muted);
    margin:10px 0 0;
    font-size:18px;
    line-height:1.35
}
.dk-action-cta{
    margin-top:14px;
    display:flex;
    justify-content:flex-start
}

.dk-link-green{
    color:var(--dk-green);
    font-weight:800;
    display:inline-flex;
    align-items:center;
    gap:10px
}

.dk-news-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top: 14px;
}
.dk-news-item{
    background:#fff;
    border-radius: 14px;
    box-shadow: var(--dk-shadow);
    padding: 14px 14px;
    display:flex;
    gap:14px;
    align-items:center;
}
.dk-news-img{
    width:64px;
    height:64px;
    border-radius: 12px;
    object-fit:contain;
    background:#fff
}
.dk-news-date{
    color:var(--dk-green);
    font-weight:800;
    font-size:16px
}
.dk-news-title{
    margin:4px 0 0;
    font-size:18px;
    font-weight:900
}


/* 1) Panel muss eine echte Scroll-Fläche sein */
.dk-drawer__panel{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 2) Den Inhalt im Panel darf nicht über die Höhe wachsen */
.dk-drawer__panel{
    max-height: 100vh;
}


body:has(.dk-nav-toggle:checked){
    overflow: hidden;
    height: 100vh;
}

/* 4) Fallback ohne :has(): Seite "fixieren" über den Header-Wrapper */
.dk-nav-toggle:checked ~ .dk-main{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
}

/* Optional: wenn Footer noch sichtbar/scrollbar wird, ebenfalls fixieren */
.dk-nav-toggle:checked ~ .dk-footer{
    display: none;
}


.ui-widget-content a.linkGreenUnderline, a.linkGreenUnderline{
    color: #339900;
    font-weight: normal;
    text-decoration: underline;
}
.ui-widget-content a.linkGreenUnderline:hover, a.linkGreenUnderline:hover{
    color: black;
    font-weight: normal;
    text-decoration: none;
}
.dk-mutedText {
    color: var(--dk-muted);
}


.dk-aboutInfoLinks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.dk-aboutInfoCard {
    padding: 18px 16px;
}

.dk-aboutInfoCard h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #1D1D1D;
}

.dk-aboutInfoCard p {
    margin: 0;
    line-height: 1.68;
    color: #1D1D1D;
}

.dk-aboutInfoCard a {
    color: #339900;
    font-weight: 700;
    text-decoration: none;
}

.dk-muted, p.dk-muted{
    color: #666;
    font-size: 14px;
}

