.herni-pocitace .hc-config-btn {

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;

    width:100%;
    margin-top:14px;
    margin-bottom:16px;
    padding:16px 18px;

    background:#f4f7fc;
    color:#1e3f73 !important;

    border-radius:8px;
    border:1px solid #e1e7f2;

    text-decoration:none !important;
    font-weight:400;

    transition:all .18s ease;
    position:relative;

}

.herni-pocitace .hc-config-btn::before{
    content:"";
    position:absolute;
    top:-10px;
    left:0;
    width:100%;
    height:1px;
    background:#e6ecf5;
}

/* hover */

.herni-pocitace .hc-config-btn:hover {

    background:#eef3fb;
    border-color:#d5deed;

}

/* levá část (ikona + text blok) */

.herni-pocitace .hc-config-left{
    display:flex;
    align-items:center;
    gap:10px;
}

/* textový blok */

.herni-pocitace .hc-config-text{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:10px;
    line-height:1.25;
    white-space:nowrap;
}

/* hlavní text */

.herni-pocitace .hc-config-text{
    font-size:15px;
    font-weight:400;
    color:#1b3a6b;
    letter-spacing:.25px;
}

/* podtext */

.herni-pocitace .hc-config-sub{
    font-size:11px;
    opacity:.65;
    font-weight:400;
    white-space:nowrap;
    letter-spacing:.25px;
}

/* ikonka */

.herni-pocitace .hc-config-icon {

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#e8eef9;
    border-radius:6px;

    flex-shrink:0;

}

.herni-pocitace .hc-config-icon::before {

    font-family:"Font Awesome 6 Pro";
    content:"\f085";

    font-size:14px;
    color:#225097;
    line-height:1;

}

/* šipka vpravo */

.herni-pocitace .hc-config-arrow{
    font-size:14px;
    opacity:.6;
}

.herni-pocitace .hc-config-arrow::before{
    font-family:"Font Awesome 6 Pro";
    content:"\f061";
    font-size:13px;
    color:#225097;
}

.herni-pocitace .hc-config-btn:hover .hc-config-arrow{
    transform:translateX(3px);
    transition:transform .15s ease;
}

/* ===============================
   Mobile layout
================================ */

@media (max-width: 768px){

    .herni-pocitace .hc-config-btn{
        padding:14px 16px;
    }

    .herni-pocitace .hc-config-left{
        gap:10px;
    }

    .herni-pocitace .hc-config-text{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .herni-pocitace .hc-config-sub{
        white-space:normal;
        font-size:11px;
        opacity:.75;
        line-height:1.3;
    }

    .herni-pocitace .hc-config-arrow{
        margin-left:8px;
    }

    .herni-pocitace .hc-config-btn{
        max-width:none;
        margin-left:0;
        margin-right:0;
        padding:14px 16px;
    }

    .herni-pocitace .hc-config-icon{
        position:static;
        transform:none;
        width:26px;
        height:26px;
        background:#eaf1fb;
        border-radius:6px;
    }

    .herni-pocitace .hc-config-icon::before{
        color:#1f4f9a;
    }

}