/*
 * styleAdaptive.css
 *
 * Единый рабочий файл адаптивных стилей для поэтапного рефакторинга сайта.
 *
 * Важно:
 * 1. Не переносим все старые стили одним коммитом.
 * 2. Не меняем бизнес-логику шаблонов и имена переменных.
 * 3. Не меняем кардинально визуальный язык сайта: палитра, типографика,
 *    пропорции и порядок блоков должны оставаться узнаваемыми.
 * 4. Каждая следующая страница добавляется отдельной секцией в этот файл.
 * 5. Сначала переносим desktop-состояние максимально близко к старому виду,
 *    затем добавляем адаптивные правила через media queries.
 *
 * Старый порядок подключения CSS, который учитываем при переносе:
 * 1. reset.css
 * 2. main-23-03-2018.css
 * 3. cookie_warn_styles.css
 * 4. inner-01-03-2018.css / mainslider.css / test.css — по условиям
 * 5. textstyles-01-03-2018.css — для материалов
 * 6. penalties.css — для отдельных внутренних блоков
 * 7. recommend_articles.css / buttonsMobile.css — мобильные и рекомендательные блоки
 */

/* ========================================================================== 
   00. Design tokens from the old layout
   ========================================================================== */

:root {
    --site-bg-dark: #333639;
    --site-bg-light: #ffffff;
    --site-bg-soft: #f7f6f4;
    --site-border: #e3e0db;
    --site-border-light: #dddddd;

    --site-text-main: #444444;
    --site-text-dark: #333639;
    --site-text-muted: #666666;
    --site-text-light: #999999;
    --site-text-soft: #c1bcb0;

    --site-accent: #0099cc;
    --site-accent-hover: #18a2cf;
    --site-success: #88cc00;
    --site-cookie-accent: #ff7f00;

    --site-font-main: Arial, sans-serif;
    --site-font-title: 'PT Sans Narrow', Arial, sans-serif;

    --site-desktop-width: 1130px;
    --site-content-width: 810px;
    --site-sidebar-width: 300px;

    --site-transition-fast: 0.1s ease;
}

/* ========================================================================== 
   01. Reset
   Source: reset.css
   Kept close to the original reset to avoid unexpected visual changes.
   ========================================================================== */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

a {
    text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ========================================================================== 
   02. Base document styles
   Source basis: main-23-03-2018.css
   Only safe global rules are placed here. Page-specific rules are added later.
   ========================================================================== */

html,
body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    font-family: var(--site-font-main);
}

body {
    background-color: var(--site-bg-dark);
    color: var(--site-text-main);
}

button,
input,
select,
textarea {
    font-family: var(--site-font-main);
}

img {
    border: 0;
}

img,
video,
iframe {
    max-width: 100%;
}

/* Do not enable global border-box yet: the old fixed layout was written for
   content-box widths. We will add local border-box rules only inside refactored
   components when they are migrated. */

/* ==========================================================================
   03. Common layout shell
   Will be expanded while refactoring base.html/front_base/header/footer.
   ========================================================================== */

.wrapper1000,
.wrapper1000wf {
    width: var(--site-desktop-width);
    margin-right: auto;
    margin-left: auto;
    font-size: 0;
}

.wrapper1000wf {
    background: var(--site-bg-light);
}

.wrapper740 {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: var(--site-content-width);
    min-height: 640px;
    padding-bottom: 10px;
    font-size: 0;
}

#site {
    border: 0;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}

/* First safe responsive shell. Desktop remains visually equivalent because
   max-width equals the old fixed width. On narrow screens the outer shell can
   shrink instead of forcing the entire page outside the viewport. */
@media (max-width: 1169px) {
    .wrapper1000,
    .wrapper1000wf {
        width: 100%;
        max-width: var(--site-desktop-width);
    }
}


/* ==========================================================================
   04. Front base layout
   Used by templates/front/front_base.html after desktop/mobile base merge.
   The base template must stay universal: no page-type conditions here.
   ========================================================================== */

.siteLayout {
    position: relative;
    width: var(--site-desktop-width);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    background: var(--site-bg-light);
}

.contentLayout {
    width: 100%;
}

@media (max-width: 1169px) {
    .siteLayout,
    .contentLayout {
        box-sizing: border-box;
    }

    .siteLayout {
        width: 100%;
    }
}

/* ==========================================================================
   05. Shared typography primitives
   Detailed article typography will be moved from textstyles-01-03-2018.css
   during the material page step.
   ========================================================================== */

.mainCategoryHeader {
    margin: 4px 0 26px;
    color: var(--site-border);
    font: bold 34px/34px var(--site-font-title);
}

.mainCategoryHeader > a {
    color: var(--site-border);
}

.mainCategoryHeader > a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   06. Cookie warning
   Source: cookie_warn_styles.css
   Exact class names are preserved from templates/front/desktop/includes/cookie_warning.html.
   ========================================================================== */

.cookie-popup {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    gap: 10px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup .popupContentContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.cookie-popup a {
    color: var(--site-cookie-accent);
    text-decoration: underline;
}

.cookie-popup button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    background: var(--site-cookie-accent);
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 767px) {
    .cookie-popup .popupContentContainer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-popup button {
        margin-left: 0;
    }
}

/* ==========================================================================
   07. Shared site chrome: aside, header, navigation, banners, footer
   Source basis: desktop/mobile include templates + main-23-03-2018.css.
   Business URLs and old class/id names are preserved where they are useful.
   ========================================================================== */

/* Back-to-top and top service strip */
#upFixed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100px;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

#upFixed:hover {
    background: rgba(122, 138, 143, 0.5);
}

#upArrow {
    position: absolute;
    width: 29px;
    height: 29px;
    margin: 10px 0 0 8px;
    background: url('/static/img/sprite.png') -514px 0 no-repeat, var(--site-bg-dark);
}

.upArrowNoBg {
    background: url('/static/img/sprite.png') -514px 0 no-repeat, transparent !important;
}

#upText {
    display: none;
    width: 57px;
    height: 24px;
    margin-top: 10px;
    padding: 5px 0 0 43px;
    background: var(--site-accent);
    color: var(--site-border);
    font: 13px/17px sans-serif;
}

#headLinksList {
    position: relative;
    min-height: 26px;
    padding-top: 14px;
    background: var(--site-bg-dark);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}

#headLinksListLeft {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 500px;
    margin-left: 10px;
}

.ageLimit {
    position: absolute;
    top: -9px;
    display: inline-block;
    margin-right: 30px;
    color: #ffffff;
    font-size: 28px;
}

/* Header */
.siteHeader,
header.siteHeader {
    box-sizing: border-box;
    min-height: 110px;
    padding: 20px 20px 0 37px;
    background: var(--site-bg-light);
}

.siteHeaderInner {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

#logo,
.siteLogo {
    display: inline-block;
    flex: 0 0 166px;
    width: 166px;
    height: 76px;
    margin-right: 49px;
    background: url('/static/img/sprite.png') -2953px 0 no-repeat;
    vertical-align: middle;
}

.siteHeaderBanner,
.banner728x90 {
    position: relative;
    display: inline-block;
    width: 728px;
    max-width: 100%;
    min-height: 90px;
    vertical-align: middle;
}

.siteHeaderBanner .reclame-banners,
.banner728x90 > .reclame-banners {
    height: 16px;
    margin: 0;
    padding-top: 4px;
    text-align: right;
}

.siteHeaderBanner .reclame-banners > a,
.banner728x90 > .reclame-banners > a {
    color: var(--site-text-light);
    font-size: 12px;
}

.siteHeaderBanner .reclame-banners > a:hover,
.banner728x90 > .reclame-banners > a:hover {
    text-decoration: underline;
}

.siteMenuButton,
.mMenuButton {
    display: none;
}

/* Main navigation */
.mainMenu {
    position: relative;
    overflow: hidden;
    min-height: 58px;
    border-top: 1px solid var(--site-border-light);
    border-bottom: 1px solid var(--site-border-light);
    background: var(--site-bg-light);
}

.mainMenuLinksList {
    display: inline-block;
    margin: 17px 0 0 40px;
    vertical-align: top;
}

.mainMenuLinksList > a {
    margin-right: 34px;
    color: var(--site-text-main);
    font: 22px var(--site-font-main);
}

.mainMenuLinksList > a:last-child {
    margin-right: 0;
}

.mainMenuLinksList > a:hover {
    color: var(--site-text-main);
    text-decoration: underline;
}

.mainMenuLinksList > a.enable {
    color: var(--site-accent);
}

/* Sidebar banners */
.banners {
    display: inline-block;
    vertical-align: top;
    width: var(--site-sidebar-width);
}

.banners > .banner240x400,
.banner240x400 {
    width: var(--site-sidebar-width);
}

#banner2 {
    margin: 20px 0 0;
}

.banner240x400 > .reclame-banners {
    height: 16px;
    margin: 0;
    padding-top: 4px;
    text-align: right;
}

.banner240x400 > .reclame-banners > a {
    color: var(--site-text-light);
    font-size: 12px;
}

.banner240x400 > .reclame-banners > a:hover {
    text-decoration: underline;
}

/* Footer */
.siteFooter,
footer.siteFooter {
    clear: both;
    position: relative;
    min-height: 71px;
    background: var(--site-bg-dark);
    color: var(--site-text-soft);
}

.siteFooterInner {
    display: flex;
    align-items: center;
    min-height: 71px;
}

#csLogo {
    display: inline-block;
    flex: 0 0 52px;
    width: 52px;
    height: 27px;
    margin: 0 0 0 20px;
    vertical-align: middle;
}

#cs {
    display: inline-block;
    flex: 0 0 203px;
    margin-left: 15px;
    color: var(--site-text-soft);
    font: 12px/17px sans-serif;
    vertical-align: middle;
}

#csLink {
    color: var(--site-success);
    font: 12px/17px sans-serif;
}

#csLink:hover {
    text-decoration: underline;
}

#footerLinksList {
    display: inline-block;
    flex: 1 1 auto;
    position: relative;
    text-align: right;
    vertical-align: middle;
}

#footerLinksList a {
    margin-left: 50px;
    color: var(--site-text-soft);
    font: 12px/17px sans-serif;
    transition: 0.2s;
}

#footerLinksList a:hover {
    text-decoration: underline;
}

#copyright {
    display: inline-block;
    flex: 0 0 195px;
    margin-right: 20px;
    color: var(--site-text-soft);
    text-align: right;
    font: 12px/17px sans-serif;
    vertical-align: middle;
}

.siteFooterText {
    display: none;
}

@media (max-width: 1169px) {
    #headLinksList .wrapper1000,
    .siteHeader .wrapper1000,
    .siteFooter .wrapper1000 {
        box-sizing: border-box;
        width: 100%;
        max-width: var(--site-desktop-width);
    }

    .siteHeader,
    header.siteHeader {
        padding-right: 20px;
        padding-left: 20px;
    }

    #logo,
    .siteLogo {
        margin-right: 24px;
    }

    .siteHeaderBanner,
    .banner728x90 {
        flex: 1 1 auto;
        width: auto;
    }
}

@media (max-width: 767px) {
    #upFixed,
    #headLinksList,
    .siteHeaderBanner,
    .banner728x90,
    #csLogo,
    #cs {
        display: none;
    }

    .siteHeader,
    header.siteHeader {
        min-height: 66px;
        padding: 14px 16px;
    }

    .siteHeaderInner {
        align-items: center;
        justify-content: space-between;
    }

    #logo,
    .siteLogo {
        flex: 0 0 166px;
        width: 166px;
        height: 76px;
        margin: -16px auto -20px;
        transform: scale(0.72);
        transform-origin: center;
    }

    .siteMenuButton,
    .mMenuButton {
        display: block;
        position: relative;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 2px;
        background: var(--site-bg-dark);
        cursor: pointer;
    }

    .siteMenuButton::before,
    .siteMenuButton::after,
    .mMenuButton::before,
    .mMenuButton::after {
        content: '';
        position: absolute;
        left: 9px;
        width: 20px;
        height: 2px;
        background: #ffffff;
    }

    .siteMenuButton::before,
    .mMenuButton::before {
        top: 12px;
        box-shadow: 0 6px 0 #ffffff;
    }

    .siteMenuButton::after,
    .mMenuButton::after {
        top: 24px;
    }

    .mainMenu {
        min-height: 0;
    }

    .mainMenuLinksList {
        display: flex;
        box-sizing: border-box;
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0 12px;
    }

    .mainMenuLinksList > a {
        box-sizing: border-box;
        flex: 1 1 50%;
        margin: 0;
        padding: 14px 8px;
        border-bottom: 1px solid var(--site-border-light);
        text-align: center;
        font-size: 18px;
        line-height: 20px;
    }

    .banners {
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: var(--site-sidebar-width);
        margin-right: auto;
        margin-left: auto;
    }

    .siteFooter,
    footer.siteFooter {
        box-sizing: border-box;
        min-height: 0;
        padding: 22px 16px;
        font-size: 14px;
        line-height: 20px;
    }

    .siteFooterInner {
        display: block;
        min-height: 0;
        text-align: left;
    }

    .siteFooterText {
        display: block;
        margin-bottom: 14px;
        color: var(--site-text-soft);
        font-size: 14px;
        line-height: 20px;
    }

    #footerLinksList {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
        text-align: left;
    }

    #footerLinksList a {
        margin-left: 0;
        font-size: 14px;
    }

    #copyright {
        display: block;
        width: auto;
        margin-right: 0;
        text-align: left;
        font-size: 14px;
        line-height: 20px;
    }
}


/* ==========================================================================
   08. Main page
   Source basis: desktop/mobile main_page.html + main-23-03-2018.css + mainslider.css.
   The template keeps the same data variables: sliders, bigmaterials, smallmaterials, test.
   ========================================================================== */

.mainPage {
    width: 100%;
    background: var(--site-bg-light);
    font-size: 0;
}

#buffer {
    display: none;
}

#mainSlider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--site-desktop-width);
    height: 400px;
    background: var(--site-bg-light);
}

#mainSlider .mainSliderItem,
.mainSliderItem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.mainSliderItem img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mSlide {
    position: absolute;
    right: 43px;
    bottom: 53px;
    z-index: 5;
    padding: 4px;
}

.mSlide > li {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 16px;
    border: 2px solid var(--site-bg-dark);
    border-radius: 10px;
    background: var(--site-text-muted);
    vertical-align: middle;
    transition: 0.2s;
}

.mSlide > li:last-child {
    margin-right: 0;
}

.mSlide > li.active,
.mSlide > li:hover {
    background: var(--site-border);
    cursor: pointer;
}

.textSlide {
    position: absolute;
    bottom: 49px;
    left: 43px;
    max-width: 420px;
}

.textSlide span {
    display: inline-block;
    padding: 0 5px;
    background: var(--site-bg-dark);
    color: var(--site-border);
    font: bold 34px/40px var(--site-font-title);
    vertical-align: bottom;
    cursor: pointer;
    -webkit-touch-callout: none;
    user-select: none;
}

.mainNews {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    min-height: 666px;
    padding: 20px 20px 40px;
    background: var(--site-bg-light);
    font-size: 0;
}

.mainNewsContent {
    display: flex;
    align-items: flex-start;
    flex: 0 0 790px;
    min-width: 0;
}

.mainLastNewsList {
    display: inline-block;
    flex: 0 0 510px;
    margin-right: 20px;
    vertical-align: top;
}

.mainLastNewsItem {
    display: flex;
    overflow: hidden;
    width: 508px;
    height: 112px;
    margin-bottom: 20px;
    border: 1px solid var(--site-border);
    background: var(--site-bg-soft);
}

.mainLastNewsItem:last-child {
    margin-bottom: 0;
}

.mainLastNewsPreview {
    display: inline-block;
    flex: 0 0 200px;
    width: 200px;
    vertical-align: top;
}

.mainLastNewsPreview img {
    display: block;
    width: 200px;
    height: 112px;
    object-fit: cover;
}

.mainLastNewsDesc {
    display: inline-flex;
    align-items: center;
    width: 270px;
    height: 112px;
}

.mainLastNewsDesc > a {
    margin: auto 0 auto 12px;
    color: var(--site-text-dark);
    font: bold 18px/20px var(--site-font-title);
}

.mainLastNewsDesc > a:hover {
    text-decoration: underline;
}

.mainNewsList {
    display: inline-block;
    flex: 0 0 240px;
    width: 240px;
    margin-right: 20px;
    vertical-align: top;
}

.mainNewsItem {
    margin-top: 14px;
    padding-top: 17px;
    border-top: 1px solid var(--site-border-light);
}

.mainNewsItem:first-child {
    margin-top: 0 !important;
    padding-top: 0;
    border-top: 0;
}

.mainNewsItem > a {
    color: var(--site-text-main);
    font: 18px/20px var(--site-font-title);
}

.mainNewsItem > a:hover {
    text-decoration: underline;
}

.mainNewsItem > span {
    display: block;
    padding-top: 5px;
    padding-left: 4px;
    color: var(--site-text-light);
    font-size: 12px;
    line-height: 14px;
}

.mainPageAside {
    flex: 0 0 300px;
    width: 300px;
}

.mainPageBanners {
    display: block;
    width: 300px;
}

.mainPageBanners .banner_main,
.banner_main {
    width: 240px;
    min-height: 420px;
    margin-left: 30px;
}

.banner_main > .reclame-banners {
    height: 16px;
    margin: 0;
    padding-top: 4px;
    text-align: right;
}

.banner_main > .reclame-banners > a {
    color: var(--site-text-light);
    font-size: 12px;
}

.banner_main > .reclame-banners > a:hover {
    text-decoration: underline;
}

.followUs {
    width: 240px;
    height: 248px;
    margin-left: 30px;
    background: url('/static/img/sprite.png') -1230px 0 no-repeat;
}

.followUs > a {
    display: inline-block;
    float: left;
    vertical-align: top;
    transition: var(--site-transition-fast);
}

.followUs > a:hover {
    opacity: 0.7;
}

#followUsVk,
#followUsFb,
#followUsOk {
    width: 46px;
    height: 46px;
}

#followUsVk {
    margin: 94px 0 0 25px;
    background: url('/static/img/sprite.png') -195px 0 no-repeat;
}

#followUsFb {
    margin: 94px 0 0 26px;
    background: url('/static/img/sprite.png') -246px 0 no-repeat;
}

#followUsOk {
    margin: 94px 25px 0 26px;
    background: url('/static/img/sprite.png') -297px 0 no-repeat;
}

#followUsYt {
    width: 110px;
    height: 46px;
    margin: 26px 0 0 30px;
    background: url('/static/img/sprite.png') -399px 0 no-repeat;
}

#followUsTw {
    width: 46px;
    height: 37px;
    margin: 30px 0 0 29px;
    background: url('/static/img/sprite.png') -348px 0 no-repeat;
}

.mainPageTest {
    display: none;
}

@media (max-width: 1169px) {
    #mainSlider {
        height: auto;
        aspect-ratio: 1130 / 400;
    }

    .mainSliderItem img {
        height: auto;
        aspect-ratio: 1130 / 400;
    }

    .mainNews {
        gap: 20px;
    }

    .mainNewsContent {
        flex: 1 1 auto;
    }

    .mainLastNewsList {
        flex: 1 1 64%;
        width: auto;
    }

    .mainLastNewsItem {
        width: 100%;
    }

    .mainLastNewsDesc {
        flex: 1 1 auto;
        width: auto;
        padding-right: 12px;
    }

    .mainNewsList {
        flex: 0 0 240px;
        margin-right: 0;
    }

    .mainPageAside {
        flex: 0 0 260px;
        width: 260px;
    }

    .mainPageBanners {
        width: 260px;
    }

    .mainPageBanners .banner_main,
    .banner_main,
    .followUs {
        margin-left: 10px;
    }
}

@media (max-width: 900px) {
    .mainNews {
        display: block;
        min-height: 0;
        padding: 20px 16px 32px;
    }

    .mainNewsContent {
        display: block;
    }

    .mainLastNewsList,
    .mainNewsList {
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .mainLastNewsList {
        margin-bottom: 22px;
    }

    .mainLastNewsItem {
        width: 100%;
    }

    .mainPageAside {
        width: 100%;
        margin-top: 24px;
    }

    .mainPageBanners {
        width: 100%;
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
    }

    .mainPageBanners .banner_main,
    .banner_main,
    .followUs {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    #mainSlider {
        display: none;
    }

    .mainPage {
        background: var(--site-bg-light);
    }

    .mainNews {
        padding: 0 12px 28px;
    }

    .mainLastNewsItem {
        display: block;
        height: auto;
        margin-bottom: 18px;
        border: 0;
        border-bottom: 1px solid var(--site-border-light);
        background: var(--site-bg-light);
    }

    .mainLastNewsPreview {
        display: block;
        width: 100%;
    }

    .mainLastNewsPreview img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .mainLastNewsDesc {
        display: block;
        width: auto;
        height: auto;
        padding: 10px 0 14px;
    }

    .mainLastNewsDesc > a {
        display: block;
        margin: 0;
        color: var(--site-text-main);
        font: bold 20px/24px var(--site-font-title);
    }

    .mainNewsItem {
        margin-top: 0;
        padding: 14px 0;
    }

    .mainNewsItem:first-child {
        padding-top: 14px;
        border-top: 1px solid var(--site-border-light);
    }

    .mainNewsItem > a {
        font: bold 18px/22px var(--site-font-title);
    }

    .mainPageAside {
        display: none;
    }

    .mainPageTest {
        display: block;
        margin-top: 20px;
        padding: 0 12px 28px;
        background: var(--site-bg-light);
    }

    .CategoryHeader {
        clear: both;
        margin: 15px 0 0;
        color: var(--site-text-main);
        font: 28px/30px var(--site-font-title);
    }

    .CategoryHeaderLink {
        float: right;
        margin-top: 8px;
        color: var(--site-accent);
        font: 14px/18px var(--site-font-main);
    }

    .testTicket {
        margin-top: 14px;
    }

    .testTicket img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }

    .question {
        margin: 0 0 16px;
        color: var(--site-text-muted);
        font: 21px/24px var(--site-font-title);
    }

    .test-btn-wrap {
        margin-top: 12px;
    }

    .test-btn {
        display: inline-block;
        padding: 9px 14px;
        border-radius: 2px;
        background: var(--site-accent);
        color: #ffffff;
        font: 15px/20px var(--site-font-main);
    }

    .test-btn:hover {
        background: var(--site-accent-hover);
    }
}


/* ==========================================================================
   09. News list and pagination
   Templates: front/news/list.html, pagination.html
   ========================================================================== */

.innerPageLayout {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 0 20px 40px 0;
    background: var(--site-bg-light);
}

.innerPageContent {
    box-sizing: border-box;
    flex: 0 0 var(--site-content-width);
    width: var(--site-content-width);
    min-width: 0;
    padding-bottom: 10px;
    min-height: 640px;
    font-size: 0;
}

.newsListPage .banners {
    flex: 0 0 var(--site-sidebar-width);
    width: var(--site-sidebar-width);
}

.CategoryHeader {
    clear: both;
    margin: 15px 0 0 39px;
    color: var(--site-text-main);
    font: 28px/30px var(--site-font-title);
}

.materialCategories {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 29px;
    width: 730px;
    min-height: 40px;
    padding: 0 96px 0 40px;
    margin: 15px 40px 29px 0;
    background: var(--site-border);
}

.materialCategories a,
.materialCategories span {
    display: inline-block;
    vertical-align: middle;
    color: var(--site-text-muted);
    font: 13px/17px var(--site-font-main);
}

.materialCategories a:hover,
.materialCategories span:hover,
.hnews:hover,
.paginator a:hover {
    text-decoration: underline;
}

.materialCategories .archiveLink,
.archiveLink {
    position: absolute;
    top: 7px;
    right: 7px;
    margin: 0;
    padding: 5px 10px 4px;
    border-radius: 2px;
    background: var(--site-bg-soft);
    color: var(--site-text-main);
    font: 13px/17px var(--site-font-main);
}

.materialList {
    box-sizing: border-box;
    margin-top: 24px;
    width: 100%;
}

.materialListItem,
.news {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding-right: 40px;
    padding-left: 39px;
    margin-bottom: 28px;
    font-size: 0;
}

.preview {
    box-sizing: border-box;
    display: block;
    flex: 0 0 270px;
    width: 270px;
    height: 151px;
    margin-right: 19px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    background: var(--site-bg-soft);
}

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

.specific {
    box-sizing: border-box;
    flex: 0 1 270px;
    width: 270px;
    min-height: 151px;
    padding-right: 7px;
    border-top: 1px solid var(--site-border-light);
    margin-top: 1px;
}

.news-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 22px;
    font-size: 0;
}

.news-info span {
    display: inline-block;
    vertical-align: top;
    margin-top: 7px;
    color: var(--site-text-light);
    font: 12px/14px var(--site-font-main);
}

.news-info .date,
span.date {
    width: 213px;
}

.ico-news {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    min-width: 40px;
    text-align: right;
}

.ico-news span {
    margin-right: 15px;
}

.ico-news span:last-child {
    margin-right: 0;
}

.ico-news-views,
.ico-news-photo,
.ico-news-video {
    display: inline-block;
    vertical-align: middle;
    height: 9px;
    margin: 9px 5px 0 0;
}

.ico-news-views {
    width: 15px;
    background: url('/static/img/sprite.png') -2893px 0 no-repeat;
}

.ico-news-photo {
    width: 15px;
    background: url('/static/img/sprite.png') -2913px 0 no-repeat;
}

.ico-news-video {
    width: 15px;
    background: url('/static/img/sprite.png') -2933px 0 no-repeat;
}

.hnews {
    display: inline-block;
    color: var(--site-text-main);
    font: bold 15px/20px var(--site-font-main);
}

.desc {
    margin-top: 9px;
    color: var(--site-text-main);
    font: 13px/20px var(--site-font-main);
}

.paginator {
    margin: 0 0 25px -4px;
    text-align: center;
    font-size: 0;
}

.paginator span,
.paginator a,
.paginator .paginationLink {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 5px 4px;
    padding: 0 5px;
    color: var(--site-text-main);
    font-size: 14px;
    line-height: 20px;
}

.paginationLink.selectedLink,
.paginator .selectedLink,
#page-selected {
    color: var(--site-text-dark);
    font-weight: 700;
    text-decoration: none;
}

.current {
    color: var(--site-text-main);
    font: 14px/20px var(--site-font-main);
}

.dispNone {
    display: none !important;
}

@media (max-width: 1169px) {
    .innerPageLayout {
        display: block;
        max-width: 810px;
        padding: 0 20px 36px;
        margin-right: auto;
        margin-left: auto;
    }

    .innerPageContent {
        width: 100%;
        min-height: 0;
    }

    .newsListPage .banners {
        width: 100%;
        max-width: 300px;
        margin: 28px auto 0;
    }

    .materialCategories {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .innerPageLayout {
        max-width: none;
        padding: 0 12px 30px;
    }

    .CategoryHeader {
        margin: 18px 0 14px;
        font-size: 28px;
        line-height: 32px;
    }

    .materialCategories {
        gap: 8px 16px;
        min-height: 0;
        padding: 12px;
        margin: 0 0 18px;
    }

    .materialCategories .archiveLink,
    .archiveLink {
        position: static;
        margin-left: auto;
    }

    .materialListItem,
    .news {
        display: block;
        padding: 0;
        margin-bottom: 24px;
        border-bottom: 1px solid var(--site-border-light);
        padding-bottom: 20px;
    }

    .preview {
        width: 100%;
        height: auto;
        aspect-ratio: 270 / 151;
        margin: 0 0 12px;
    }

    .specific {
        width: 100%;
        min-height: 0;
        padding-right: 0;
        border-top: 0;
        margin-top: 0;
    }

    .news-info {
        margin-bottom: 7px;
    }

    .news-info .date,
    span.date {
        width: auto;
    }

    .hnews {
        font: bold 18px/22px var(--site-font-title);
    }

    .desc {
        margin-top: 8px;
        font-size: 14px;
        line-height: 21px;
    }

    .newsListPage .banners {
        display: none;
    }

    .paginator {
        margin-top: 4px;
        margin-bottom: 20px;
    }

    .paginator a,
    .paginator .paginationLink,
    .paginator span {
        min-width: 28px;
        min-height: 28px;
        box-sizing: border-box;
        padding: 4px 8px;
        line-height: 20px;
    }
}


/* ==========================================================================
   10. Material detail placeholders
   Filled during details.html/material_content.html refactoring step.
   ========================================================================== */

/* ==========================================================================
   11. SEO materials placeholders
   Filled during seo_materials refactoring step.
   ========================================================================== */

/* ==========================================================================
   12. Static pages
   Templates: front/static/about.html, advertising.html, cookie_policy.html, policy.html
   ========================================================================== */

.staticPageLayout {
    align-items: flex-start;
}

.staticPageLayout .banners {
    flex: 0 0 var(--site-sidebar-width);
    width: var(--site-sidebar-width);
}

.staticPageContent {
    box-sizing: border-box;
    background: var(--site-bg-light);
}

.staticPageArticle {
    box-sizing: border-box;
    width: 100%;
    min-height: 600px;
    padding: 16px 40px 40px;
    color: var(--site-text-main);
    font: 16px/1.55 var(--site-font-main);
}

.staticPageArticle h1,
.staticPageContent > .CategoryHeader {
    margin: 0 0 24px;
    color: var(--site-text-main);
    font: 32px/36px var(--site-font-title);
    font-weight: 700;
}

.staticPageContent > .CategoryHeader {
    padding: 16px 40px 0;
}

.staticPageContent > .CategoryHeader + .staticPageArticle {
    min-height: 600px;
    padding-top: 0;
}

.staticPageArticle h2 {
    margin: 28px 0 14px;
    color: var(--site-text-main);
    font: 25px/30px var(--site-font-title);
    font-weight: 700;
}

.staticPageArticle h3 {
    margin: 14px 0 10px;
    color: var(--site-text-main);
    font: 20px/25px var(--site-font-title);
    font-weight: 700;
}

.staticPageArticle p {
    margin: 0 0 15px;
}

.staticPageArticle ul,
.staticPageArticle ol {
    margin: 0 0 18px 24px;
    padding: 0;
}

.staticPageArticle li {
    margin-bottom: 8px;
}

.staticPageArticle a {
    color: var(--site-accent);
    text-decoration: underline;
}

.staticPageArticle a:hover {
    color: var(--site-accent-hover);
}

.staticPageArticle strong {
    font-weight: 700;
}

@media (max-width: 1169px) {
    .staticPageLayout {
        display: block;
        padding: 0 15px 40px;
    }

    .staticPageContent {
        width: 100%;
        max-width: var(--site-content-width);
        margin: 0 auto;
    }

    .staticPageLayout .banners {
        width: 100%;
        max-width: var(--site-content-width);
        margin: 24px auto 0;
    }

    .staticPageArticle,
    .staticPageContent > .CategoryHeader {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    .staticPageLayout {
        padding: 0 12px 30px;
    }

    .staticPageLayout .banners {
        display: none;
    }

    .staticPageArticle {
        min-height: 0;
        padding: 16px 15px 28px;
        font-size: 15px;
        line-height: 1.55;
    }

    .staticPageArticle h1,
    .staticPageContent > .CategoryHeader {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 32px;
    }

    .staticPageContent > .CategoryHeader {
        padding: 16px 15px 0;
    }

    .staticPageArticle h2 {
        margin-top: 24px;
        font-size: 23px;
        line-height: 28px;
    }

    .staticPageArticle h3 {
        font-size: 19px;
        line-height: 24px;
    }
}

/* ==========================================================================
   13. Utility media rules
   Add only project-wide rules that are proven safe for migrated templates.
   ========================================================================== */

@media (max-width: 767px) {
    .wrapper740 {
        width: 100%;
        min-height: 0;
    }
}

/* ==========================================================================
   10. Material detail page
   ========================================================================== */

.materialDetailPage {
    align-items: flex-start;
}

.materialDetailContent {
    background: var(--site-bg-light);
    margin-top: 24px;
}

.breadCrumbs {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 40px 0;
    margin-bottom: 26px;
    font-size: 0;
}

.breadCrumbs a {
    font: 12px/14px sans-serif;
    color: var(--site-accent);
    text-decoration: none;
}

.breadCrumbs a:hover {
    text-decoration: underline;
}

.breadCrumbs span {
    font: 12px/14px sans-serif;
    color: var(--site-text-muted);
    margin: 0 3px;
}

.materialArticle {
    width: 100%;
}

.materialInner {
    box-sizing: border-box;
    width: 100%;
    padding-right: 40px;
    font-size: 0;
}

.articleContent {
    width: 100%;
}

.articleContent h1 {
    color: var(--site-accent);
    font: bold 34px/40px 'PT Sans Narrow', sans-serif;
    margin: 4px 0 17px 40px;
}

.articleContent h2,
.articleContent h3,
.articleContent h4 {
    color: #666;
    font-family: 'PT Sans Narrow', sans-serif;
    margin: 0 0 19px 40px;
}

.articleContent h2 {
    font-size: 28px;
    line-height: 32px;
}

.articleContent h3 {
    font-size: 21px;
    line-height: 24px;
}

.articleContent h4 {
    font-size: 18px;
    line-height: 20px;
}

.articleContent p {
    color: var(--site-text-main);
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 20px 40px;
}

.articleContent p.date {
    color: var(--site-text-muted);
    font: 12px/14px sans-serif;
    margin: 0 0 0 40px;
}

.articleContent p.desc {
    font: italic 17px/20px sans-serif;
}

.articleContent p.asterisk {
    color: #888;
    font: 13px/17px sans-serif;
    margin-bottom: 17px;
}

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

.articleContent a:hover {
    text-decoration: underline;
}

.articleContent strong,
.articleContent b {
    font-weight: 700;
}

.articleContent sup {
    font-size: 10px;
    vertical-align: super;
}

.articleContent sub {
    font-size: 10px;
    vertical-align: sub;
}

.materialFigure {
    width: 770px;
    max-width: 100%;
    margin: 0 0 16px;
}

.materialFigure .img-news,
.articleContent .img-news,
.articleContent figure img {
    display: block;
    width: 770px;
    max-width: 100%;
    height: auto !important;
}

.figcaptionImage {
    color: #999;
    font: italic 0.75rem/20px sans-serif;
    margin: 4px 0 20px 20px;
    text-align: right;
}

.figcaptionImage::before {
    content: '© ';
}

.materialText {
    width: 100%;
}

.articleContent blockquote {
    box-sizing: border-box;
    background: url('/static/img/quotes.png') top 7px left 40px no-repeat;
    color: var(--site-text-main);
    font: italic 15px/20px sans-serif;
    padding: 21px 0 0 120px;
    margin-bottom: 40px;
}

.articleContent blockquote > p {
    margin: 0 0 20px;
}

.articleContent blockquote.grey {
    position: relative;
    background: url('/static/img/angle.png') bottom 0 right 0 no-repeat, var(--site-border-warm);
    color: var(--site-dark-bg);
    font: 15px/20px sans-serif;
    padding: 20px 20px 20px 39px;
    margin-bottom: 20px;
}

.articleContent table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 660px;
    max-width: calc(100% - 80px);
    margin: 0 40px 24px;
    font: 13px/17px sans-serif;
}

.articleContent table th {
    background: var(--site-border-warm);
    border: 1px solid #bbb8af;
    color: var(--site-dark-bg);
    padding: 12px 12px 11px;
    text-align: left;
}

.articleContent table td {
    border: 1px solid #ddd;
    color: var(--site-text-main);
    padding: 12px 12px 11px;
}

.articleContent ol,
.articleContent ul {
    color: var(--site-text-main);
    font: 15px/20px sans-serif;
    margin-left: 61px;
}

.articleContent ol li,
.articleContent ul li {
    padding: 0 0 20px 12px;
}

.articleContent ol li {
    list-style: decimal;
}

.articleContent ul li::before {
    content: '•';
    color: var(--site-accent);
    float: left;
    font: 20px/20px sans-serif;
    margin: 1px 0 0 -33px;
}

.articleContent ul.innerlist {
    color: var(--site-text-main);
    font: 15px/20px sans-serif;
    margin-left: 96px;
}

.articleContent ul.innerlist li::before {
    content: '•';
    color: var(--site-text-main);
    float: left;
    font: 13px/20px sans-serif;
    margin: 0 0 0 -35px;
}

.articleContent div.read-also {
    float: right;
    width: 200px;
    margin: 0 0 20px 40px;
}

.articleContent div.read-also div.hname {
    background: var(--site-border-warm);
    padding: 24px 10px 15px 14px;
}

.articleContent div.read-also div.hname span.hn1 {
    display: block;
    color: #666;
    font: italic 12px/14px sans-serif;
}

.articleContent div.read-also div.hname p {
    margin: 1px 0 0;
}

.articleContent div.read-also div.hname a {
    color: var(--site-dark-bg);
    font: 18px/20px 'PT Sans Narrow', sans-serif;
}

.articleContent div.read-also div.line {
    height: 4px;
    background: #fff;
}

.articleContent div.read-also img {
    width: 200px;
    margin: 0;
}

.preferredBtnContainer {
    box-sizing: border-box;
    margin: 0 40px 20px;
}

.preferred-source-btn {
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 2px;
    background: var(--site-accent);
    color: #fff !important;
    font: 13px/18px sans-serif;
    text-decoration: none !important;
    transition: background 0.2s;
}

.preferred-source-btn:hover {
    background: var(--site-accent-hover);
    text-decoration: none !important;
}

.materialMiddleBanner,
.innerBottomBanners {
    box-sizing: border-box;
    clear: both;
    width: 728px;
    max-width: calc(100% - 80px);
    margin: 0 0 20px 40px;
    text-align: center;
}

.materialMiddleBanner {
    display: none;
}

.materialBottomBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.zenBottomBanner img,
.materialBottomBanner img {
    display: block;
    max-width: 100%;
    height: auto;
}

p.author {
    margin: 0 40px 20px;
    color: var(--site-text-main);
    font: 700 18px/20px 'PT Sans Narrow', sans-serif;
    text-align: right;
}

.social {
    box-sizing: border-box;
    margin: 0 40px 20px;
}

.articleCopyright {
    clear: both;
}

.shareBtnsContainer {
    display: none;
    box-sizing: border-box;
    margin: 20px 40px;
    padding: 14px;
    background: #f7f6f4;
    border: 1px solid #e3e0db;
}

.buttonsBlockHeadline {
    margin: 0 0 12px !important;
    color: var(--site-text-main);
    font: 700 15px/20px sans-serif !important;
}

.shareBtnItem {
    display: inline-block;
    vertical-align: middle;
}

.shareLink,
.shareLink img {
    display: block;
}

.gallery-previews {
    padding-left: 20px;
}

.gallery-previews img,
.gallery-previews div#more {
    float: left;
    margin: 0 0 36px 36px;
}

.gallery-previews div#more {
    width: 150px;
    height: 70px;
    padding-top: 30px;
    background: var(--site-border-warm);
    color: var(--site-dark-bg);
    cursor: pointer;
    font: 18px/20px 'PT Sans Narrow', sans-serif;
    text-align: center;
    transition: 0.2s;
}

.gallery-previews div#more:hover {
    background: var(--site-dark-bg);
    color: var(--site-border-warm);
}

@media (max-width: 1169px) {
    .materialDetailPage {
        display: block;
    }

    .materialDetailContent {
        width: 100%;
        max-width: 810px;
        margin: 24px auto 0 auto;
    }

    .materialDetailPage > .banners {
        max-width: 810px;
        margin: 24px auto 0;
    }
}

@media (max-width: 900px) {
    .materialDetailPage > .banners {
        display: none;
    }
}

@media (max-width: 767px) {
    .breadCrumbs {
        padding: 14px 15px 0;
        margin-bottom: 18px;
    }

    .materialInner {
        padding-right: 0;
    }

    .articleContent h1 {
        margin: 4px 15px 15px;
        font-size: 28px;
        line-height: 32px;
    }

    .articleContent h2,
    .articleContent h3,
    .articleContent h4 {
        margin-left: 15px;
        margin-right: 15px;
    }

    .articleContent h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .articleContent h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .articleContent p,
    .articleContent p.date,
    .articleContent p.desc,
    .articleContent p.asterisk {
        margin-left: 15px;
        margin-right: 15px;
    }

    .materialFigure {
        width: 100%;
        margin-bottom: 14px;
    }

    .figcaptionImage {
        margin-left: 15px;
        margin-right: 15px;
    }

    .articleContent blockquote {
        background-position: top 7px left 15px;
        padding: 60px 15px 0;
        margin-bottom: 28px;
    }

    .articleContent blockquote.grey {
        padding: 16px 15px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .articleContent table {
        display: block;
        width: auto;
        max-width: none;
        margin: 0 15px 24px;
        overflow-x: auto;
    }

    .articleContent ol,
    .articleContent ul {
        margin-left: 38px;
        margin-right: 15px;
    }

    .articleContent ul.innerlist {
        margin-left: 54px;
    }

    .articleContent div.read-also {
        float: none;
        width: auto;
        margin: 0 15px 20px;
    }

    .articleContent div.read-also img {
        width: 100%;
        height: auto;
    }

    .preferredBtnContainer,
    .shareBtnsContainer,
    .social,
    p.author {
        margin-left: 15px;
        margin-right: 15px;
    }

    .materialMiddleBanner {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: none;
        min-height: 250px;
        margin: 20px 15px;
    }

    .innerBottomBanners {
        width: auto;
        max-width: none;
        margin: 20px 15px;
    }

    .zenBottomBanner {
        display: none;
    }

    .shareBtnsContainer {
        display: block;
    }

    p.author {
        text-align: left;
    }

    .gallery-previews {
        padding-left: 0;
    }

    .gallery-previews img,
    .gallery-previews div#more {
        float: none;
        display: block;
        max-width: calc(100% - 30px);
        margin: 0 15px 20px;
    }
}


/* ==========================================================================
   11. SEO materials
   ========================================================================== */

.seoMaterialsListPage .CategoryHeader {
    margin-bottom: 20px;
}

.seoMaterialsList {
    margin-top: 20px;
}

.seoMaterialListItem .hnews {
    display: block;
}

.seoMaterialListItem .desc {
    margin-top: 10px;
}

.seoMaterialDetailPage .innerPageContent {
    min-width: 0;
}

.seoMaterialArticle {
    width: 100%;
}

.seoMaterialInner {
    margin-top: 20px;
}

.seoArticleContent h1 {
    margin: 8px 40px 20px;
}

.seoMaterialFigure {
    display: block;
    margin: 0 40px 20px;
}

.seoMaterialFigure img {
    display: block;
    width: 100%;
    max-width: 728px;
    height: auto;
}

.seoMaterialText {
    width: auto;
}

.seoMobileBanner {
    display: none;
}

.seoSubscribeBanner,
.seoBottomBanner {
    width: 728px;
    max-width: calc(100% - 80px);
    margin: 20px 40px;
    clear: both;
}

.seoSubscribeBanner img {
    display: block;
    width: 100%;
    height: auto;
}

.seoCopyrightNotice {
    margin-top: 20px;
}

.seoCopyrightNotice .asterisk {
    margin: 0 40px 20px;
    color: #777;
    font-size: 14px;
    line-height: 1.45;
}

.seoCopyrightNotice .asterisk a {
    color: var(--site-accent);
    text-decoration: underline;
}

@media (max-width: 1169px) {
    .seoSubscribeBanner,
    .seoBottomBanner {
        max-width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    }

    .seoArticleContent h1,
    .seoMaterialFigure,
    .seoCopyrightNotice .asterisk {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .seoMaterialsList {
        margin-top: 15px;
    }

    .seoMaterialInner {
        margin-top: 0;
    }

    .seoArticleContent h1 {
        margin: 8px 15px 16px;
    }

    .seoMaterialFigure {
        margin: 0 0 15px;
    }

    .seoMaterialFigure img {
        max-width: none;
    }

    .seoMobileBanner {
        display: flex;
    }

    .seoSubscribeBanner,
    .seoBottomBanner {
        display: none;
    }

    .seoCopyrightNotice .asterisk {
        margin: 0 15px 20px;
        font-size: 13px;
    }
}
