.ukv2-guide-shell,
.ukv2-guide-shell * {
    box-sizing: border-box;
}

.ukv2-guide-shell {
    width: 100%;
    margin: 0;
    display: block;
    color: #07111f;
    background: #ffffff;
}

.ukv2-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
    overflow: hidden;
    background: #f4f6f8;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.ukv2-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.ukv2-body {
    width: min(80%, 1180px);
    margin: 22px auto 48px;
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 18px;
    align-items: start;
}

.ukv2-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.ukv2-sidebar-title {
    display: none;
}

.ukv2-nav-list {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 8px;
}

.ukv2-nav-button {
    width: 100%;
    display: block;
    text-align: left;
    border: 0;
    border-left: 3px solid transparent;
    background: transparent;
    padding: 12px 12px;
    color: #344054;
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.ukv2-nav-button:hover,
.ukv2-nav-button.is-active {
    background: #f2f4f7;
    color: #111827;
    border-left-color: #111827;
}

.ukv2-content {
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 28px;
}

.ukv2-panel {
    display: none;
}

.ukv2-panel.is-active {
    display: block;
}

.ukv2-panel-layout {
    width: 100%;
}

.ukv2-panel-layout.has-media {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(260px, 42%);
    gap: 24px;
    align-items: start;
}

.ukv2-panel-text,
.ukv2-panel-media {
    min-width: 0;
}

.ukv2-panel-media {
    display: grid;
    gap: 16px;
}

.ukv2-text-block-render {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.72;
}

.ukv2-text-block-render p:first-child {
    margin-top: 0;
}

.ukv2-text-block-render p:last-child {
    margin-bottom: 0;
}

.ukv2-text-block-render ul,
.ukv2-text-block-render ol {
    padding-left: 22px;
}

.ukv2-image-block-render {
    margin: 0;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.ukv2-image-block-render img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.ukv2-text-block-render img {
    max-width: 46%;
    height: auto;
    float: right;
    display: block;
    margin: 6px 0 16px 22px;
}

.ukv2-text-block-render::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 900px) {
    .ukv2-hero {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .ukv2-body {
        width: min(94%, 1180px);
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 18px;
    }

    .ukv2-sidebar {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .ukv2-nav-list {
        max-height: 260px;
    }

    .ukv2-panel-layout.has-media {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ukv2-text-block-render img {
        max-width: 100%;
        float: none;
        margin: 12px 0;
    }

    .ukv2-content {
        padding: 22px;
    }
}
