

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

:root {
    --color-bg: #f1f1f1;
    --color-header: #adadad;
    --color-text: #292929;
    --color-muted: #999999;
    --color-light-text: #666666;
    --color-border: #e5e5e5;
    --color-card-bg: #f5f5f5;
    --color-white: #ffffff;
    --color-primary: #525252;
    --color-gold: #cfb53b;

    --container-width: 1200px;
    --main-width: 880px;
    --sidebar-width: 300px;

    --radius: 4px;
    --font-main: "Helvetica Neue", Arial, sans-serif;
    --transition: .22s ease;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 16px;
}

.layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.layout__header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--color-header);
}

.header {
    width: var(--container-width);
    height: 120px;
    margin: 0 auto;
    padding-top: 28px;
    display: grid;
    grid-template-columns: 180px 1fr 260px;
    align-items: start;
}

.header__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 28px;
}

.header__center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 24px;
}

.header__logo {
    display: block;
}

.header__logo img {
    display: block;
    height: 72px;
    width: auto;
    max-width: 390px;
    object-fit: contain;
}

.header__burger,
.header__close {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.header__burger::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 10px;
    width: 22px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.header__close {
    display: none;
}

.header__close::before,
.header__close::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 9px;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.header__close::before {
    transform: rotate(45deg);
}

.header__close::after {
    transform: rotate(-45deg);
}

.layout__header.is-open .header__burger {
    display: none;
}

.layout__header.is-open .header__close {
    display: block;
}

.header__search-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 26px;
}

.header__search-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.header__search-icon::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -5px;
    width: 10px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transform: rotate(45deg);
}

.header__time {
    color: #d8d8d8;
    font: 400 12px/1.3 var(--font-main);
    white-space: nowrap;
}

.menu-container {
    width: var(--main-width);
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
        opacity .28s ease,
        transform .28s ease,
        visibility .28s ease;
}

.layout__header.is-open .menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
}

.menu__item {
    white-space: nowrap;
}

.menu__link {
    display: block;
    color: #ffffff;
    padding: 4px 12px 6px;
    border-radius: 3px;
    font: 400 16px/22px var(--font-main);
}

.menu__link:hover,
.menu__link.active {
    background: rgba(255, 255, 255, 0.14);
}

.layout__content {
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
    width: var(--container-width);
    margin: 130px auto 0;
    padding: 30px;
    background: #ffffff;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    transition: margin-top .28s ease;
}

.section {
    display: grid;
    grid-template-columns: minmax(0, 820px) 280px;
    gap: 20px;
    align-items: start;
}

.main-container {
    width: 100%;
    min-width: 0;
}

.sidebar {
    width: 100%;
    min-width: 0;
}

.index-page {
    width: 100%;
}

.tapenews {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.tapenews__column {
    width: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.tapenews__first {
    border-bottom: 1px solid var(--color-border);
}

.main-card {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
    color: var(--color-text);
}

.main-card:hover .main-card__title {
    color: var(--color-primary);
}

.main-card__image-wrap {
    width: 100%;
    height: 186px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dddddd;
}

.main-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card__titles {
    margin-top: 10px;
}

.main-card__title {
    color: #222222;
    font: 800 20px/24px var(--font-main);
}

.main-card__info {
    margin-top: 6px;
    color: var(--color-muted);
    font: 400 10px/14px var(--font-main);
}

.small-card {
    display: flex;
    align-items: flex-start;
    min-height: 72px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.small-card__text {
    flex-grow: 1;
    min-width: 0;
}

.small-card__title {
    color: #333333;
    font: 400 16px/22px var(--font-main);
    transition: color var(--transition);
}

.small-card:hover .small-card__title {
    color: var(--color-primary);
}

.small-card__info {
    margin-top: 3px;
    color: var(--color-muted);
    font: 400 10px/14px var(--font-main);
}

.all-news-button-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 38px;
}

.all-news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 34px;
    padding: 0 18px;
    border: 2px solid #525252;
    border-radius: 3px;
    color: #292929;
    background: #ffffff;
    font: 400 14px/1 var(--font-main);
    transition: background-color .2s ease, color .2s ease;
}

.all-news-button:hover {
    background: #525252;
    color: #ffffff;
}

.social-row {
    display: none !important;
}

.exclusive-block,
.main-news {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.exclusive-block__title,
.main-news__title {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-gold);
    color: #333333;
    font: 900 20px/24px var(--font-main);
}

.exclusive-main {
    display: block;
    margin-bottom: 18px;
    color: #292929;
}

.exclusive-main__image-wrap {
    display: block;
    width: 100%;
    height: 185px;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 12px;
    background: #dddddd;
}

.exclusive-main__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-main__title {
    display: block;
    color: #222222;
    font: 800 21px/24px var(--font-main);
}

.exclusive-main__date {
    display: block;
    margin-top: 8px;
    color: #999999;
    font: 400 11px/14px var(--font-main);
}

.exclusive-list {
    display: flex;
    flex-direction: column;
}

.exclusive-small {
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #e4e4e4;
    color: #292929;
}

.exclusive-small__title {
    color: #333333;
    font: 400 16px/21px var(--font-main);
}

.exclusive-small__image-wrap {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 3px;
    background: #dddddd;
}

.exclusive-small__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-main:hover .exclusive-main__title,
.exclusive-small:hover .exclusive-small__title {
    color: #525252;
}

.main-news__list {
    padding-top: 4px;
}

.mini-card {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mini-card:last-child {
    border-bottom: none;
}

.mini-card__text {
    flex-grow: 1;
}

.mini-card__title {
    color: #333333;
    font: 400 15px/20px var(--font-main);
}

.mini-card:hover .mini-card__title {
    color: var(--color-primary);
}

.mini-card__info {
    margin-top: 3px;
    color: var(--color-muted);
    font: 400 10px/14px var(--font-main);
}

.mini-card__image-wrap {
    order: 1;
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin: 5px 0 0 10px;
    overflow: hidden;
    border-radius: 3px;
}

.mini-card__image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.category-header {
    display: block;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    font: 400 15px/20px var(--font-main);
}

.category-header__title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.category-header__title {
    color: #333333;
    font: 900 32px/1.1 var(--font-main);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
}

.news-card {
    width: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    color: var(--color-text);
}

.news-card__image-wrap {
    display: block;
    width: 100%;
    height: 186px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dddddd;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding-top: 10px;
}

.news-card__category {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--color-muted);
    font: 400 11px/14px var(--font-main);
}

.news-card__title {
    margin-bottom: 7px;
    font: 700 19px/23px var(--font-main);
}

.news-card__title a {
    color: var(--color-text);
}

.news-card__title a:hover {
    color: var(--color-primary);
}

.news-card__excerpt {
    margin-bottom: 8px;
    color: var(--color-light-text);
    font: 400 14px/20px var(--font-main);

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__date {
    display: block;
    color: var(--color-muted);
    font: 400 10px/14px var(--font-main);
}

.empty-text {
    color: var(--color-muted);
    font: 400 15px/22px var(--font-main);
    padding: 24px 0;
}

.category-page {
    width: 100%;
}

.category-page .category-header {
    margin-bottom: 20px;
}

.category-breadcrumbs {
    display: flex;
    gap: 7px;
    margin-bottom: 12px;
    color: var(--color-muted);
    font: 400 13px/18px var(--font-main);
}

.category-breadcrumbs a {
    color: var(--color-muted);
}

.category-breadcrumbs a:hover {
    color: var(--color-text);
}

.category-title {
    color: #333333;
    font: 900 32px/1.1 var(--font-main);
    margin-bottom: 15px;
}

.article-page {
    width: 100%;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 300px;
    gap: 40px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-sidebar {
    width: 300px;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: #999999;
    font: 400 13px/18px var(--font-main);
}

.article-breadcrumbs a {
    color: #777777;
}

.article-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.article-category {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 12px;
    color: #525252;
    font: 700 13px/18px var(--font-main);
    text-transform: uppercase;
}

.article-date {
    display: inline-block;
    color: #999999;
    font: 400 13px/18px var(--font-main);
}

.article-title {
    max-width: 780px;
    margin: 0 0 14px;
    color: #292929;
    font: 900 40px/1.12 var(--font-main);
    letter-spacing: -0.02em;
}

.article-lead {
    max-width: 760px;
    color: #555555;
    font: 400 19px/1.45 var(--font-main);
}

.article-image {
    width: 100%;
    margin: 0 0 26px;
    overflow: hidden;
    border-radius: 4px;
    background: #f2f2f2;
}

.article-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.article-image figcaption {
    padding: 8px 0 0;
    color: #999999;
    font: 400 12px/16px var(--font-main);
}

.article-content {
    max-width: 780px;
    color: #292929;
    font: 400 18px/1.72 var(--font-main);
}

.article-content p {
    margin: 0 0 20px;
}

.article-content a {
    color: #525252;
    text-decoration: underline;
}

.article-content strong,
.article-content b {
    font-weight: 700;
}

.article-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid #525252;
    background: #f5f5f5;
    color: #333333;
    font: 600 18px/1.55 var(--font-main);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-related {
    margin-top: 46px;
    padding-top: 8px;
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
}

.article-related__grid .news-card {
    width: 100%;
    margin-bottom: 0;
}

.article-related__grid .news-card__image-wrap {
    height: 190px;
}

.article-related__grid .news-card__title {
    font-size: 18px;
    line-height: 1.2;
}

.article-related__grid .news-card__excerpt {
    -webkit-line-clamp: 3;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 10px;
}

.pagination__pages {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination__btn,
.pagination__page,
.pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-text);
    background: #ffffff;
    font: 600 14px/1 var(--font-main);
}

.pagination__page--active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.pagination__btn--disabled {
    opacity: .45;
    pointer-events: none;
}

.pagination__dots {
    border-color: transparent;
}

.layout__footer {
    position: relative;
    z-index: 2;
    width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    box-sizing: border-box;
}

.footer {
    padding: 26px 0 28px;
    color: var(--color-muted);
}

.footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: start;
}

.footer__brand {
    min-width: 0;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 10px;
    color: #292929;
    font: 900 24px/1.1 var(--font-main);
    letter-spacing: -0.02em;
}

.footer__description {
    max-width: 560px;
    color: #777777;
    font: 400 14px/1.55 var(--font-main);
}

.footer__right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 28px;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.footer__link {
    color: #292929;
    font: 500 14px/1.4 var(--font-main);
    transition: color .2s ease;
}

.footer__link:hover {
    color: #9b0000;
}

.footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    border: 2px solid #9b0000;
    border-radius: 3px;
    color: #9b0000;
    font: 900 14px/1 var(--font-main);
    margin-top: -4px;
}

@media (max-width: 720px) {
    .layout__footer {
        width: calc(100% - 24px);
        padding: 0 14px;
    }

    .footer {
        padding: 22px 0 24px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer__right {
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .footer__nav {
        justify-content: flex-start;
        gap: 14px;
    }

    .footer__logo {
        font-size: 21px;
    }

    .footer__age {
        margin-top: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 1260px) {
    .header,
    .layout__content,
    .layout__footer {
        width: calc(100% - 64px);
    }

    .section {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 20px;
    }

    .tapenews {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .header {
        width: calc(100% - 40px);
        grid-template-columns: 90px 1fr 90px;
    }

    .header__logo img {
        height: 56px;
    }

    .header__time {
        display: none;
    }

    .header__search-link {
        margin-right: 0;
    }

    .menu-container {
        width: calc(100% - 40px);
    }

    .layout__content {
        width: calc(100% - 40px);
        padding: 24px 20px;
    }

    .layout__footer {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        display: block;
    }

    .main-container {
        width: 100%;
    }

    .sidebar,
    .article-sidebar {
        display: none;
    }

    .tapenews {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        display: block;
    }

    .article-title {
        font-size: 34px;
    }

    .article-content {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .layout__header {
        height: 220px;
    }

    .header {
        width: calc(100% - 24px);
        height: 96px;
        padding-top: 18px;
        grid-template-columns: 60px 1fr 60px;
    }

    .header__left,
    .header__right {
        padding-top: 18px;
    }

    .header__logo img {
        height: 44px;
        max-width: 220px;
    }

    .menu-container {
        width: calc(100% - 24px);
    }

    .menu__list {
        justify-content: flex-start;
        gap: 14px;
        overflow-x: auto;
        padding: 10px 0 24px;
    }

    .layout__content {
        width: calc(100% - 24px);
        padding: 18px 14px;
    }

    .layout__footer {
        width: calc(100% - 24px);
        padding-left: 14px;
        padding-right: 14px;
    }

    .tapenews {
        display: block;
    }

    .tapenews__column {
        width: 100%;
    }

    .main-card__image-wrap,
    .news-card__image-wrap {
        height: 210px;
    }

    .news-list {
        display: block;
    }

    .news-card {
        width: 100%;
    }

    .category-header__title,
    .category-title {
        font-size: 26px;
    }

    .article-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .article-lead {
        font-size: 16px;
        line-height: 1.5;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.65;
    }

    .article-image img {
        max-height: none;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .article-related__grid .news-card__image-wrap {
        height: 210px;
    }

    .pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination__btn {
        width: 100%;
    }
}

.tape-page {
    width: 100%;
}

.tape-list {
    display: block;
}

.news-list-card {
    display: block;
    padding: 14px 0 13px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.news-list-card__title {
    margin-bottom: 7px;
    color: #333333;
    font: 500 17px/23px var(--font-main);
    transition: color var(--transition);
}

.news-list-card:hover .news-list-card__title {
    color: var(--color-primary);
}

.news-list-card__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--color-muted);
    font: 400 10px/14px var(--font-main);
}

.news-list-card__date,
.news-list-card__category {
    display: inline-block;
    color: var(--color-muted);
}

@media (max-width: 720px) {
    .tape-list {
        grid-template-columns: 1fr;
    }

    .news-list-card__title {
        font-size: 16px;
        line-height: 22px;
    }
}

.search-page {
    width: 100%;
}

.search-form {
    margin-bottom: 24px;
}

.search-form__block {
    display: flex;
    width: 100%;
    max-width: 620px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    background: #ffffff;
}

.search-form__block input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 14px;
    border: none;
    outline: none;
    color: var(--color-text);
    font: 400 16px/1 var(--font-main);
    background: #ffffff;
}

.search-form__block input::placeholder {
    color: var(--color-muted);
}

.search-form__block button {
    width: 112px;
    height: 100%;
    border: none;
    background: var(--color-primary);
    color: #ffffff;
    cursor: pointer;
    font: 700 14px/1 var(--font-main);
    transition: background-color var(--transition);
}

.search-form__block button:hover {
    background: #3f3f3f;
}

.search-result-title {
    margin: 0 0 14px;
    color: var(--color-muted);
    font: 400 14px/20px var(--font-main);
}

.search-result-title strong {
    color: var(--color-text);
    font-weight: 700;
}

.search-page > .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 28px 0 10px;
}

@media (max-width: 720px) {
    .search-form__block {
        max-width: 100%;
        height: auto;
        flex-direction: column;
        border: none;
        background: transparent;
        gap: 10px;
    }

    .search-form__block input {
        height: 42px;
        border: 1px solid var(--color-border);
        border-radius: 3px;
    }

    .search-form__block button {
        width: 100%;
        height: 42px;
        border-radius: 3px;
    }
}

.error-page {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 90px;
    background:
        radial-gradient(circle at 50% 42%, rgba(150, 0, 0, 0.055), transparent 34%),
        #ffffff;
}

.error-page__inner {
    width: 100%;
    max-width: 680px;
    text-align: center;
}

.error-page__code {
    color: #292929;
    font: 900 126px/0.9 var(--font-main);
    letter-spacing: -0.07em;
}

.error-page__line {
    width: 72px;
    height: 4px;
    margin: 28px auto 26px;
    background: #9b0000;
}

.error-page__title {
    margin: 0 0 14px;
    color: #292929;
    font: 900 42px/1.1 var(--font-main);
    letter-spacing: -0.02em;
}

.error-page__text {
    max-width: 430px;
    margin: 0 auto 32px;
    color: #666666;
    font: 400 17px/1.55 var(--font-main);
}

.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 44px;
    padding: 0 24px;
    border: 2px solid #525252;
    border-radius: 3px;
    background: #ffffff;
    color: #292929;
    font: 800 14px/1 var(--font-main);
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.error-page__button:hover {
    background: #525252;
    border-color: #525252;
    color: #ffffff;
}

@media (max-width: 720px) {
    .error-page {
        min-height: 420px;
        padding: 48px 14px 64px;
    }

    .error-page__code {
        font-size: 92px;
    }

    .error-page__line {
        margin: 22px auto 22px;
    }

    .error-page__title {
        font-size: 30px;
    }

    .error-page__text {
        font-size: 15px;
    }

    .error-page__button {
        width: 100%;
        max-width: 270px;
    }
}