

/* Start:/local/components/main/author.detail/templates/.default/style.css?17828255406949*/
.author-detail {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.author-detail__card {
    min-width: 0;
    border-radius: var(--r, 24px);
    background: var(--white, #fff);
    box-shadow: var(--shadow-sm, 0 8px 22px rgba(122, 31, 61, .08));
}

.author-detail__card--profile {
    padding: 24px;
}

.author-detail__card--documents {
    padding: 24px;
}

.author-detail__avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 100%;
    background:
        radial-gradient(circle at 28% 22%, rgba(232, 95, 147, .17), transparent 30%),
        radial-gradient(circle at 80% 82%, rgba(122, 31, 61, .12), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .45), rgba(122, 31, 61, .08));
    color: rgba(122, 31, 61, .5);
}

.author-detail__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.author-detail__avatar svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.author-detail__profile-body {
    min-width: 0;
}

.author-detail__name {
    margin: 0;
    color: var(--text, #24141b);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
}

.author-detail__facts {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.author-detail__fact {
    padding: 12px 14px;
    border-radius: var(--r-sm, 16px);
    background: rgba(122, 31, 61, .045);
}

.author-detail__fact dt {
    margin: 0 0 4px;
    color: var(--muted, #7c6f78);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.author-detail__fact dd {
    margin: 0;
    color: var(--text, #24141b);
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 750;
}

.author-detail__about-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(122, 31, 61, .10);
}

.author-detail__about-title {
    margin: 0 0 12px;
    color: var(--text, #24141b);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.author-detail__about {
    margin: 0;
}

.author-detail__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
}

.author-detail__section-title {
    margin: 0;
    color: var(--text, #24141b);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.author-detail__section-count {
    min-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--burg, #7a1f3d);
    background: rgba(122, 31, 61, .08);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.author-detail__documents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.author-detail__document {
    min-width: 0;
    display: block;
    padding: 0;
    border: 1px solid rgba(122, 31, 61, .12);
    border-radius: var(--r-sm, 16px);
    overflow: hidden;
    background: var(--white, #fff);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--t, .2s ease), box-shadow var(--t, .2s ease), transform var(--t, .2s ease);
}

.author-detail__document:hover,
.author-detail__document:focus-visible {
    border-color: rgba(122, 31, 61, .28);
    box-shadow: var(--shadow-sm, 0 8px 22px rgba(122, 31, 61, .08));
    outline: none;
}

.author-detail__document-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(122, 31, 61, .06);
}

.author-detail__document-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--t, .2s ease);
}

.author-detail__document:hover .author-detail__document-image img,
.author-detail__document:focus-visible .author-detail__document-image img {
    transform: scale(1.035);
}

.author-detail__document-name {
    display: block;
    padding: 10px 12px 12px;
    color: var(--text, #24141b);
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.author-detail__documents-empty {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px;
    border: 1px dashed rgba(122, 31, 61, .18);
    border-radius: var(--r-sm, 16px);
    color: var(--muted, #7c6f78);
    text-align: center;
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 750;
    background: rgba(122, 31, 61, .035);
}

.author-detail__documents-empty svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.author-detail-materials__title {
    margin: 0;
    color: var(--text, #24141b);
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 900;
}

@media (max-width: 980px) {
    .author-detail {
        grid-template-columns: 1fr;
    }

    .author-detail__card--profile {
        display: grid;
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 20px;
        align-items: start;
    }

    .author-detail__avatar {
        width: 140px;
        height: 140px;
        margin: 0;
    }

    .author-detail__name {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .author-detail__card--profile,
    .author-detail__card--documents {
        padding: 18px;
    }

    .author-detail__card--profile {
        display: block;
    }

    .author-detail__avatar {
        width: 130px;
        height: 130px;
        margin: 0 auto 16px;
    }

    .author-detail__name {
        font-size: 22px;
        text-align: center;
    }

    .author-detail__documents {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .author-detail-materials__title {
        font-size: 23px;
    }
}

/* End */


/* Start:/local/components/main/catalog.list/assets/catalog-list.css?17884147428730*/
.catalog-empty {
    grid-column: 1 / -1;
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    text-decoration: none;
    font-family: var(--ff-body);
}
/* Mobile catalog controls and compact listing cards. */
.card__catalog-meta {
    display: block;
    min-width: 0;
    margin-top: 1px;
    overflow: hidden;
    color: var(--muted);
    font-family: var(--ff-body);
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card__catalog-meta-separator {
    margin: 0 4px;
    color: var(--border-dark, #b7a8ae);
}

[data-catalog] .card__author {
    margin-top: 5px;
}

.catalog-mobile-summary,
.catalog-mobile-dock {
    display: none;
}

.catalog-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (min-width: 769px) {
    /*
     * Desktop filter follows the viewport only inside its catalog grid.
     * .page-body must not be a synthetic scroll container; see main.css
     * where overflow-x uses clip rather than hidden.
     */
    .catalog-layout:not(.catalog-layout--no-filter) > .sidebar {
        position: sticky;
        top: 114px;
        align-self: start;
        z-index: 30;
    }
}


@media (max-width: 768px) {
    .catalog-layout:not(.catalog-layout--no-filter) .sort-bar {
        min-height: 52px;
        padding: 5px 6px;
        margin-bottom: 8px;
    }

    .catalog-layout:not(.catalog-layout--no-filter) .sort-filter-btn,
    .catalog-layout:not(.catalog-layout--no-filter) .sort-select {
        min-height: 40px;
        height: 40px;
    }

    .catalog-layout:not(.catalog-layout--no-filter) .sort-filter-btn {
        gap: 6px;
        padding: 0 12px;
    }

    .sort-filter-btn__count,
    .catalog-mobile-dock__count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        border-radius: 999px;
        background: var(--burg);
        color: #fff;
        font-family: var(--ff);
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
    }

    .sort-filter-btn__count[hidden],
    .catalog-mobile-dock__count[hidden] {
        display: none;
    }

    .catalog-mobile-summary {
        display: block;
        min-width: 0;
        margin: 0 0 10px;
    }

    .catalog-mobile-result-count {
        color: var(--muted);
        font-family: var(--ff);
        font-size: 12px;
        line-height: 1.35;
    }

    .catalog-mobile-result-count strong {
        color: var(--text);
        font-weight: 800;
    }

    .catalog-mobile-dock {
        position: fixed;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        left: 12px;
        z-index: 360;
        align-items: stretch;
        gap: 7px;
        padding: 7px;
        border: 1px solid rgba(95, 52, 69, .14);
        border-radius: 15px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 12px 30px rgba(41, 18, 28, .18);
        opacity: 0;
        transform: translateY(calc(100% + 24px));
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .catalog-mobile-dock.is-visible {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .catalog-mobile-dock__filter,
    .catalog-mobile-dock__sort-select {
        min-height: 40px;
        height: 40px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        background-color: var(--bg-light);
        color: var(--text);
        font-family: var(--ff);
        font-size: 13px;
        font-weight: 800;
    }

    .catalog-mobile-dock__filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        gap: 6px;
        padding: 0 12px;
        cursor: pointer;
    }

    .catalog-mobile-dock__filter svg {
        color: var(--muted);
    }

    .catalog-mobile-dock__sort {
        position: relative;
        display: block;
        min-width: 0;
        flex: 1 1 auto;
    }

    .catalog-mobile-dock__sort-select {
        width: 100%;
        padding: 0 34px 0 12px;
        outline: none;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='%237a5060' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 11px center;
    }

    .catalog-mobile-dock__sort-select:focus-visible,
    .catalog-mobile-dock__filter:focus-visible {
        border-color: var(--burg-l);
        box-shadow: 0 0 0 3px rgba(139, 26, 74, .10);
    }

    /* Drawer touch targets are intentionally larger than desktop controls. */
    .filter-drawer__close {
        width: 44px;
        height: 44px;
    }

    .filter-drawer__body .multiselect-search,
    .filter-drawer__body .single-select-input,
    .filter-drawer__body .price-input-wrap input {
        min-height: 44px;
        height: 44px;
    }

    .filter-drawer__body .multiselect-option,
    .filter-drawer__body .select-option {
        min-height: 44px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .filter-drawer__body .free-check {
        min-height: 44px;
    }

    /* Catalog cards show decision-making metadata on mobile only. */
    [data-catalog] .card__catalog-meta {
        display: block;
        min-width: 0;
        margin-top: 1px;
        overflow: hidden;
        color: var(--muted);
        font-family: var(--ff-body);
        font-size: 11px;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    [data-catalog] .card__catalog-meta-separator {
        margin: 0 3px;
        color: var(--border-dark, #b7a8ae);
    }
}

@media (max-width: 480px) {
    /* Keep mobile catalog dense enough to compare several materials at once. */
    [data-catalog] .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    [data-catalog] .card {
        border-radius: 12px;
    }

    [data-catalog] .card:hover {
        transform: none;
    }

    [data-catalog] .card__body {
        gap: 3px;
        padding: 8px 7px 0;
    }

    [data-catalog] .card__title {
        min-height: 2.5em;
        font-size: 12.5px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }

    [data-catalog] .card__catalog-meta {
        font-size: 10.5px;
    }

    [data-catalog] .card__author {
        display: none;
    }

    [data-catalog] .card__fav {
        top: 6px;
        right: 6px;
        width: 40px;
        height: 40px;
    }

    [data-catalog] .card__fav svg {
        width: 17px;
        height: 17px;
    }

    [data-catalog] .card__footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 100px;
        align-items: center;
        column-gap: 10px;
        padding: 7px 7px 8px;
    }

    [data-catalog] .card__footer .price-block,
    [data-catalog] .card__footer .price-free {
        min-width: 0;
        justify-self: stretch;
        text-align: center;
    }

    [data-catalog] .card__footer .btn {
        width: 80px;
        min-width: 80px;
        height: 38px;
        min-height: 38px;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 0;
        line-height: 0;
    }

    [data-catalog] .card__footer .btn svg {
        display: block;
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        margin: 0;
        transform: none;
    }

    [data-catalog] .card__action-label {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    [data-catalog] .price {
        font-size: 14px;
    }

    [data-catalog] .price-free {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-mobile-dock {
        transition: none;
    }
}

/* End */
/* /local/components/main/author.detail/templates/.default/style.css?17828255406949 */
/* /local/components/main/catalog.list/assets/catalog-list.css?17884147428730 */
