/* Xlive – hlavní výbava a pruh s dopravou a servisem v detailu kola (xlive-detail-info-v3.js) */
body.type-detail .xlive-info {
    display: grid;
    gap: 18px;
    margin: 20px 0;
}

body.type-detail .xlive-info__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

body.type-detail .xlive-info__benefits li {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.35;
}

body.type-detail .xlive-info__benefits li::before {
    content: none;
}

body.type-detail .xlive-info__benefits a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #333;
    text-decoration: none;
}

body.type-detail .xlive-info__benefits a:hover,
body.type-detail .xlive-info__benefits a:focus-visible {
    color: var(--color-primary-hover, #d93621);
}

body.type-detail .xlive-info__check {
    position: relative;
    flex: none;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    border-radius: 50%;
    background: #2e7d32;
}

body.type-detail .xlive-info__check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.type-detail .xlive-info__title {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

/* Hlavní výbava v jednom podbarveném rámečku pro všechna kola */
body.type-detail .xlive-info__list {
    display: grid;
    grid-template-columns: auto 1fr;
    margin: 0;
    padding: 2px 12px;
    background: #f4f4f4;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.35;
}

body.type-detail .xlive-info__list dt,
body.type-detail .xlive-info__list dd {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #e3e3e3;
}

body.type-detail .xlive-info__list > :nth-last-child(-n+2) {
    border-bottom: 0;
}

body.type-detail .xlive-info__list dt {
    padding-right: 16px;
    color: #555;
    font-weight: 400;
    white-space: nowrap;
}

body.type-detail .xlive-info__list dd {
    color: #111;
    font-weight: 600;
}

body.type-detail .xlive-info__more {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--color-primary, #111);
    text-decoration: underline;
}

@media (max-width: 479px) {
    body.type-detail .xlive-info__benefits {
        grid-template-columns: 1fr;
    }
}
