.block__article-catalog {
    min-height: 100vh;
    padding-bottom: 104px;
    color: #2c2b29;
    background: #fff;
}

.b_article-catalog--wrapper {
    width: calc(100% - 88px);
    margin: 0 auto;
}

.b_article-catalog--head {
    display: flex;
    min-height: 416px;
    padding: 62px 24px 48px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.b_article-catalog--title {
    margin: 0;
    color: #2c2b29;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 4.2vw, 64px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.b_article-catalog--intro {
    margin: 18px 0 0;
    color: #474541;
    font-size: 18px;
    line-height: 1.5;
}

.b_article-catalog--grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 72px;
}

.b_article-catalog--item {
    min-width: 0;
}

.b_article-catalog--link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.b_article-catalog--link:focus-visible {
    outline: 2px solid #2c2b29;
    outline-offset: 6px;
}

.b_article-catalog--media {
    display: flex;
    aspect-ratio: 8 / 5;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e2dfda;
}

.b_article-catalog--mark {
    color: #b5b0a8;
    font-family: Georgia, serif;
    font-size: 80px;
}

.b_article-catalog--img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .25s ease;
}

.b_article-catalog--copy {
    padding-top: 28px;
}

.b_article-catalog--name {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(23px, 1.45vw, 29px);
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: 1.15;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.b_article-catalog--lead {
    margin: 12px 0 0;
    color: #4d4a46;
    font-size: 17px;
    line-height: 1.48;
}

.b_article-catalog--link:hover .b_article-catalog--name,
.b_article-catalog--link:focus-visible .b_article-catalog--name {
    text-decoration: underline;
}

.b_article-catalog--link:hover .b_article-catalog--img,
.b_article-catalog--link:focus-visible .b_article-catalog--img {
    filter: brightness(.82);
}

.b_article-catalog--button {
    display: flex;
    min-width: 190px;
    min-height: 44px;
    margin: 78px auto 0;
    padding: 0 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid #2c2b29;
    color: #2c2b29;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.b_article-catalog--button:hover,
.b_article-catalog--button:focus-visible {
    color: #fff;
    background: #2c2b29;
}

.b_article-catalog--button:disabled {
    opacity: .55;
    cursor: wait;
}

.b_article-catalog--status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.b_article-catalog--status.__error {
    position: static;
    width: auto;
    height: auto;
    margin: 18px 0 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: #8f2f28;
    text-align: center;
}

.b_article-catalog--empty {
    padding: 72px 0;
    text-align: center;
}

.b_article-catalog--empty h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

@media (max-width: 980px) {
    .b_article-catalog--head {
        min-height: 340px;
    }

    .b_article-catalog--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .block__article-catalog {
        padding-bottom: 72px;
    }

    .b_article-catalog--wrapper {
        width: calc(100% - 32px);
    }

    .b_article-catalog--head {
        min-height: 260px;
        padding: 48px 12px 36px;
    }

    .b_article-catalog--title {
        font-size: 34px;
    }

    .b_article-catalog--grid {
        grid-template-columns: 1fr;
        row-gap: 52px;
    }

    .b_article-catalog--button {
        width: 100%;
        margin-top: 56px;
    }
}
