/* Сайдпейдж с вариантами скачивания — общий для страниц логотипов и иконок продуктов */

.sidepage {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    /* Эффект «Sidepage/Right» из Kontur UI 2.0 (Figma): three drop shadows */
    box-shadow:
        -4px 0 12px rgba(0, 0, 0, 0.08),
        -12px 0 32px rgba(0, 0, 0, 0.04),
        -16px 0 40px rgba(0, 0, 0, 0.04);
    z-index: 200;
    /* Сайдпейдж уезжает за правый край экрана, а не растворяется */
    transition: transform .3s ease;
}
.sidepage_is-hidden {
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
}
.sidepage_header {
    padding: 24px 108px 16px 32px;
}
.sidepage_title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.88);
}
.sidepage_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px 28px 22px 24px;
    border: none;
    background: none;
    font-size: 24px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.54);
    cursor: pointer;
}
.sidepage_close:hover {
    color: #000;
}
.sidepage_body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 24px 32px 20px;
}
.sidepage_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.sidepage_container-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.88);
}
.sidepage_preview {
    display: block;
}
.sidepage_rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidepage_row {
    display: flex;
    gap: 16px;
    font-size: 16px;
    line-height: 22px;
}
.sidepage_row-label {
    width: 40px;
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.4);
}
.sidepage_format {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    color: #000;
}
/* Подчёркивание как у остальных ссылок проекта (.content .wrapper a в common.css) */
.sidepage_link {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #ADADAD;
}
.sidepage_link:hover {
    border-bottom-color: #222222;
}
