/*
Theme Name: dds_easybip.ru
Author: Дмитрий Савельев
Description: Информационная тема для easybip.ru — экспертная база знаний и инструменты самостоятельной аренды недвижимости. Дизайн в духе японского минимализма (wabi-sabi): много воздуха, тактильная бумажная текстура, строгая типографика и асимметричный баланс.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: ebip
*/

/* ==========================================================================
   Токены
   ========================================================================== */
:root {
    --bg: #F9F6F0;
    --bg-alt: #F1EDE5;
    --foot: #2A2A2A;
    --ink: #2B2825;
    --accent: #B45D3A;
    --sage: #8B9A7A;
    --muted: #8A857F;
    --border: #E3DDD2;
    --shell: min(92%, 1180px);
    --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
    --sans: "Helvetica Neue", "Arial Narrow", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", sans-serif;
}

/* ==========================================================================
   База
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    color: var(--ink);
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.shell { width: var(--shell); margin-inline: auto; }

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }

/* Ссылки внутри контента — тонкое пунктирное подчёркивание только при наведении */
.entry-content a,
.card-excerpt a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: none;
}
.entry-content a:hover,
.card-excerpt a:hover {
    border-bottom-color: var(--accent);
}

/* ==========================================================================
   Типографика
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: var(--ink);
    margin: 0 0 .6em;
}

h1 { font-size: 4.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

@media (max-width: 960px) { h1 { font-size: 3rem; } h2 { font-size: 2rem; } }
@media (max-width: 600px) { h1 { font-size: 2.3rem; } h2 { font-size: 1.7rem; } body { font-size: 17px; } }

/* Асимметричный заголовок секции с короткой акцентной линией (1/3 ширины) */
.sec-title {
    position: relative;
    margin-bottom: 1.6rem;
}
.sec-title::after {
    content: "";
    display: block;
    width: 33%;
    height: 2px;
    background: var(--accent);
    margin-top: .7rem;
}
.sec-title.to-right { text-align: right; }
.sec-title.to-right::after { margin-left: auto; }

/* Списки: каллиграфический квадрат-буллет */
.entry-content ul { list-style: none; padding-left: 0; }
.entry-content ul > li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: .5em;
}
.entry-content ul > li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    opacity: .7;
    font-size: .8em;
    line-height: 1.9;
}

/* ==========================================================================
   Кнопки
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    letter-spacing: .03em;
    font-size: .95rem;
    padding: .7em 1.5em;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
}
.btn-outline {
    border: 1.5px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #F9F6F0;
}
.btn-text {
    border: 0;
    color: var(--accent);
    padding: .4em 0;
}
.btn-text::after { content: " →"; }

/* ==========================================================================
   Шапка (не липкая)
   ========================================================================== */
.site-head {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0;
}
.head-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand-logo { display: block; max-height: 56px; width: auto; }
.brand-mark svg { display: block; }
.brand-text { min-width: 0; max-width: 520px; }
.site-name {
    display: block;
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: .01em;
    color: var(--ink);
}
.site-desc {
    margin: .35rem 0 0;
    font-size: .8rem;
    line-height: 1.5;
    color: var(--muted);
}

.primary-nav .nav-list {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.primary-nav .nav-list a {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 1rem;
    color: var(--ink);
    padding: .2em 0;
    border-bottom: 2px solid transparent;
}
.primary-nav .nav-list a:hover,
.primary-nav .nav-list .current-menu-item > a {
    border-bottom-color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
    }
    .primary-nav.open { max-height: 60vh; margin-top: 1rem; }
    .primary-nav .nav-list { flex-direction: column; gap: .4rem; }
}

/* ==========================================================================
   Раскладки контента
   ========================================================================== */
.site-main { padding: 3rem 0 4rem; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 67fr) minmax(0, 27fr);
    gap: 3.5%;
    align-items: start;
}
.layout-single { display: block; }
.layout-single .content-area,
.entry-narrow { width: 85%; margin-left: auto; margin-right: auto; }

@media (max-width: 960px) {
    .layout-with-sidebar { grid-template-columns: 1fr; gap: 2.5rem; }
    .layout-single .content-area, .entry-narrow { width: 100%; }
}

.content-area { min-width: 0; }

.sidebar {
    background: var(--bg-alt);
    padding: 1.6rem 1.4rem;
    border-top: 3px solid var(--accent);
}

/* ==========================================================================
   Хлебные крошки
   ========================================================================== */
.crumbs {
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 .35em; color: var(--border); }
.crumbs span:last-child { color: var(--ink); }

/* ==========================================================================
   Карточки записей
   ========================================================================== */
.card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 2rem;
    padding-left: 1.4rem;
    transition: transform .15s ease;
}
.card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    opacity: 0;
}
.card:hover { transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

.card-row { display: flex; gap: 1.5rem; align-items: stretch; }

.card-thumb-wrap {
    flex: 0 0 260px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.card-thumb-wrap a {
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.card-title { font-size: 1.5rem; margin: 0 0 .5rem; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--accent); }

.card-meta {
    font-family: var(--sans);
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .7rem;
}
.card-meta a { color: var(--muted); }
.card-meta a:hover { color: var(--accent); }

.card-excerpt { margin-bottom: 1rem; }
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-more { margin-top: auto; }

@media (max-width: 600px) {
    .card-row { flex-direction: column; gap: 1rem; }
    .card-thumb-wrap {
        flex: none;
        width: 100%;
        position: static;
    }
    .card-thumb-wrap a { position: static; }
    .card-thumb-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/* ==========================================================================
   Пагинация
   ========================================================================== */
.pager {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 2.5rem;
    font-family: var(--sans);
}
.pager .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 .7em;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--ink);
    font-weight: 700;
    font-stretch: condensed;
}
.pager a.page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.pager .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #F9F6F0;
}
.pager .page-numbers.dots { border: 0; }

/* ==========================================================================
   Записи и страницы
   ========================================================================== */
.entry-header { margin-bottom: 1.8rem; }
.entry-title { font-size: 3rem; }
.entry-meta {
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--muted);
    margin-top: .6rem;
}
.entry-meta a { color: var(--muted); }
.entry-thumb { margin-bottom: 1.8rem; border-radius: 4px; overflow: hidden; }
.entry-thumb img { display: block; width: 100%; }
.entry-content { }
.entry-content h2 { margin-top: 1.8rem; }
.entry-content img { border-radius: 4px; display: block; margin: 1.2rem 0; }
.entry-content blockquote {
    margin: 1.6rem 0;
    padding: 1.4rem 1.6rem;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    font-style: italic;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
}
.entry-content table, .entry-content th, .entry-content td {
    border: 1px solid var(--border);
}
.entry-content th, .entry-content td { padding: .6em .8em; text-align: left; }
.entry-content th { background: var(--bg-alt); font-family: var(--sans); }

.tags-line { margin-top: 2rem; font-size: .85rem; font-family: var(--sans); color: var(--muted); }
.tags-line a { color: var(--sage); }

/* ==========================================================================
   Комментарии
   ========================================================================== */
.comments-area { margin-top: 3rem; }
.comments-title { font-size: 1.6rem; margin-bottom: 1.4rem; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; margin: 0 0 0 1.6rem; padding: 0; }
.comment-inner {
    padding: 1.1rem 0;
    border-top: 1px solid var(--border);
}
.comment-head {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    font-family: var(--sans);
    margin-bottom: .5rem;
}
.comment-author { font-weight: 700; color: var(--ink); }
.comment-date { font-size: .8rem; color: var(--muted); }
.comment-reply a { font-family: var(--sans); font-size: .85rem; }
.comment-await { color: var(--muted); font-size: .85rem; }
.comment-respond { margin-top: 2rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: .6em .8em;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    font-family: var(--serif);
    margin-top: .3rem;
}
.comment-form label { font-family: var(--sans); font-size: .9rem; }
.comment-form p { margin-bottom: 1rem; }

/* ==========================================================================
   Форма поиска
   ========================================================================== */
.search-form { display: flex; gap: .5rem; }
.search-form .search-field {
    flex: 1;
    min-width: 0;
    padding: .55em .8em;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    font-family: var(--serif);
}
.search-form .search-submit {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: transparent;
    border-radius: 4px;
    padding: .5em 1.1em;
    cursor: pointer;
}
.search-form .search-submit:hover { background: var(--accent); color: #F9F6F0; }

/* ==========================================================================
   Сайдбар — виджеты (светлый фон → тёмный текст)
   ========================================================================== */
.sidebar .widget { margin-bottom: 2rem; color: var(--ink); }
.sidebar .widget:last-child { margin-bottom: 0; }
.sidebar .widget-title {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--ink);
    position: relative;
    padding-bottom: .5rem;
}
.sidebar .widget-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 33%;
    height: 2px;
    background: var(--accent);
}
.sidebar .widget ul { list-style: none; margin: 0; padding: 0; }
.sidebar .widget li {
    padding: .5em 0;
    border-bottom: 1px dotted var(--border);
    font-size: .95rem;
}
.sidebar .widget a { color: var(--ink); }
.sidebar .widget a:hover { color: var(--accent); }

/* ==========================================================================
   Подвал — тёмный фон → светлый текст
   ========================================================================== */
.site-foot {
    background: var(--foot);
    color: #D8D2C8;
    padding: 3rem 0 1.6rem;
    font-family: var(--serif);
}
.foot-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}
.site-foot .widget-title {
    font-size: 1.05rem;
    color: #F4EFE7;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .5rem;
}
.site-foot .widget-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.site-foot .widget { color: #C9C2B7; font-size: .92rem; }
.site-foot .widget p { color: #C9C2B7; }
.site-foot .widget ul { list-style: none; margin: 0; padding: 0; }
.site-foot .widget li { padding: .35em 0; }
.site-foot .widget a { color: #D8D2C8; }
.site-foot .widget a:hover { color: var(--accent); }
.foot-bottom {
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid #3d3d3d;
}
.copyright { margin: 0; font-size: .82rem; color: #9c968c; font-family: var(--sans); }

@media (max-width: 960px) { .foot-cols { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   Cookie-баннер
   ========================================================================== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: #2A2A2A;
    color: #E9E3D9;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 2px solid var(--accent);
}
.cookie-text { margin: 0; font-size: .88rem; max-width: 820px; }
.cookie-banner .cookie-accept { border-color: var(--accent); color: #E9E3D9; white-space: nowrap; }
.cookie-banner .cookie-accept:hover { background: var(--accent); color: #fff; }

/* ==========================================================================
   ГЛАВНАЯ
   ========================================================================== */
.front { position: relative; }

/* Декоративный SVG-«ключ» в правом верхнем углу */
.front::before {
    content: "";
    position: absolute;
    top: -40px; right: -60px;
    width: 460px; height: 460px;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M70 60c-22 0-40 18-40 40s18 40 40 40c17 0 32-11 38-26l52 0 0 18 16 0 0-18 14 0 0-20 0 0-134 0c-6-15-21-14-38-14zm-4 26c8 0 14 6 14 14s-6 14-14 14-14-6-14-14 6-14 14-14z' fill='%238B9A7A' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.front > * { position: relative; z-index: 1; }

.front-section { padding: 4rem 0; }
.front-section.alt {
    background-color: var(--bg-alt);
    background-image: repeating-linear-gradient(45deg, rgba(139,154,122,.05) 0, rgba(139,154,122,.05) 1px, transparent 1px, transparent 22px);
}

/* Блок 1 — Hero асимметричный */
.hero { padding: 0; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 520px;
}
.hero-text {
    padding: 4.5rem 4rem 4.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid var(--accent);
}
.hero-kicker {
    font-family: var(--sans);
    font-stretch: condensed;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--sage);
    margin-bottom: 1rem;
}
.hero-title { font-size: 4.2rem; margin-bottom: 1.2rem; }
.hero-lead { font-size: 1.15rem; color: #4a4640; margin-bottom: 2rem; max-width: 30ch; }
.hero-media {
    position: relative;
    overflow: hidden;
}
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(.95);
}

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-text { padding: 3rem 0; border-right: 0; border-bottom: 2px solid var(--accent); }
    .hero-title { font-size: 2.6rem; }
    .hero-media { min-height: 300px; }
}

/* Блок 2 — Карта тем / рубрикатор (асимметричная плитка) */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}
.topic-tile {
    background: #FFFDF9;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 170px;
    justify-content: space-between;
    transition: border-color .15s ease;
}
.topic-tile:hover { border-color: var(--accent); }
.topic-tile svg { width: 40px; height: 40px; }
.topic-tile .topic-name {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
}
/* асимметрия: некоторые плашки шире / выше */
.topic-tile.wide { grid-column: span 4; }
.topic-tile.mid { grid-column: span 2; }
.topic-tile.narrow { grid-column: span 2; }
.topic-tile.half { grid-column: span 3; }

@media (max-width: 960px) {
    .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .topic-tile.wide, .topic-tile.mid, .topic-tile.narrow, .topic-tile.half { grid-column: span 1; }
}
@media (max-width: 600px) { .topics-grid { grid-template-columns: 1fr; } }

/* Последние записи на главной */
.latest-list { margin-top: 2rem; }

/* Блок 3 — Статистика «лесенкой» */
.stats-stair {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.stat-item {
    display: flex;
    align-items: baseline;
    gap: 1.4rem;
    max-width: 640px;
}
.stat-item:nth-child(1) { margin-left: 0; }
.stat-item:nth-child(2) { margin-left: 12%; }
.stat-item:nth-child(3) { margin-left: 24%; }
.stat-item:nth-child(4) { margin-left: 36%; }
.stat-num {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1;
    color: var(--accent);
    flex: 0 0 auto;
}
.stat-label { font-size: 1rem; color: #4a4640; }

@media (max-width: 600px) {
    .stat-item { margin-left: 0 !important; gap: 1rem; }
    .stat-num { font-size: 2.6rem; }
}

/* Блок 4 — Пошаговый таймлайн (зигзаг) */
.steps-timeline {
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
}
.steps-timeline::before {
    content: "";
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 0;
    border-left: 2px dashed var(--border);
    transform: translateX(-50%);
}
.step-row {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
}
.step-row:last-child { margin-bottom: 0; }
.step-row.left { justify-content: flex-start; }
.step-row.right { justify-content: flex-end; }
.step-card {
    position: relative;
    width: 44%;
    background: #FFFDF9;
    border: 1px solid var(--border);
    padding: 2rem 1.8rem;
    overflow: hidden;
}
.step-num {
    position: absolute;
    top: -.2em; right: .3em;
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    font-size: 7rem;
    line-height: 1;
    color: var(--accent);
    opacity: .1;
    z-index: 0;
}
.step-card h3, .step-card p { position: relative; z-index: 1; }
.step-card h3 { margin-bottom: .5rem; }
.step-card p { margin: 0; color: #4a4640; }

@media (max-width: 700px) {
    .steps-timeline::before { left: 12px; transform: none; }
    .step-row.left, .step-row.right { justify-content: flex-start; }
    .step-card { width: 100%; margin-left: 30px; }
}

/* CTA-плашка (общая, с отступами со всех сторон) */
.fs-cta {
    background: var(--foot);
    color: #EDE7DD;
    padding: 3rem 2.6rem;
    border-radius: 6px;
    text-align: center;
}
.fs-cta h2 { color: #F4EFE7; }
.fs-cta p { color: #C9C2B7; max-width: 60ch; margin-inline: auto; }
.fs-cta .btn-outline { border-color: var(--accent); color: #F4EFE7; margin-top: 1rem; }
.fs-cta .btn-outline:hover { background: var(--accent); color: #fff; }

@media (max-width: 600px) { .fs-cta { padding: 2rem 1.4rem; } .front-section { padding: 2.8rem 0; } }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { text-align: center; padding: 2rem 0; }
.notfound .big404 {
    font-family: var(--sans);
    font-stretch: condensed;
    font-weight: 700;
    font-size: 7rem;
    color: var(--accent);
    line-height: 1;
    margin: 0;
}
.notfound .search-form { max-width: 460px; margin: 2rem auto; }

/* ==========================================================================
   Прочее
   ========================================================================== */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px; overflow: hidden;
}
.page-title { margin-bottom: 1.8rem; }
