.publisher-page {
    padding: 2.5rem 0 4rem;
}

.publisher-page__container {
    display: grid;
    gap: 2rem;
}

.publisher-page__hero,
.publisher-page__section {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(118, 86, 56, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(77, 50, 30, 0.08);
    backdrop-filter: blur(12px);
}

.publisher-page__hero {
    padding: 1.25rem;
}

.publisher-page__intro {
    display: grid;
    gap: 0.75rem;
}

.publisher-page__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.publisher-page__lead {
    margin: 0;
    color: #4e4036;
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 68ch;
}

.publisher-page__section {
    padding: 1.25rem;
}

.publisher-page__section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.publisher-page__section-title {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
}

.publisher-page__result-count {
    margin: 0.35rem 0 0;
    color: #7b6554;
    font-size: 0.92rem;
}

.publisher-page__sort {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.publisher-page__sort-link {
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.publisher-page__sort-link.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.publisher-page__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.publisher-page__search {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: min(100%, 420px);
}

.publisher-page__search-input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.4rem;
    padding: 0 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(118, 86, 56, 0.22);
    background: #fff;
    color: #3f332a;
}

.publisher-page__search-input:focus {
    outline: none;
    border-color: #8d5f3c;
    box-shadow: 0 0 0 3px rgba(141, 95, 60, 0.14);
}

.publisher-page__search-submit,
.publisher-page__filters-reset {
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1;
}

.publisher-page__sections {
    display: grid;
    gap: 1.5rem;
}

.publisher-page__letter-section {
    display: grid;
    gap: 0.85rem;
}

.publisher-page__letter {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #8d5f3c;
}

.publisher-page__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem 0.9rem;
}

.publisher-page__item {
    min-width: 0;
}

.publisher-page__link,
.publisher-page__name {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(118, 86, 56, 0.12);
    color: #4e4036;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.publisher-page__link:hover {
    color: #8d5f3c;
    border-color: rgba(118, 86, 56, 0.22);
    box-shadow: 0 12px 26px rgba(77, 50, 30, 0.08);
}

.publisher-page__empty {
    margin: 1rem 0 0;
    color: #4e4036;
    font-size: 1rem;
    line-height: 1.7;
}

.publisher-page--detail {
    padding: 0;
}

.publisher-page__detail-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.publisher-page__detail-header-copy {
    min-width: 0;
}

.publisher-page__detail-title {
    overflow-wrap: anywhere;
}

.publisher-page__detail-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.publisher-page__detail-link {
    color: #8d5f3c;
    font-weight: 700;
    text-decoration: none;
}

.publisher-page__detail-link:hover {
    color: #6f4a2f;
}

@media (max-width: 760px) {
    .publisher-page {
        padding: 1.5rem 0 3rem;
    }

    .publisher-page__hero,
    .publisher-page__section {
        border-radius: 22px;
    }

    .publisher-page__section-header {
        align-items: start;
        flex-direction: column;
    }

    .publisher-page__detail-header {
        align-items: start;
        flex-direction: column;
    }

    .publisher-page__detail-actions {
        justify-content: start;
    }

    .publisher-page__search {
        min-width: 100%;
    }
}

@media (max-width: 520px) {
    .publisher-page__list {
        grid-template-columns: 1fr;
    }
}