/* MATCHDAY ZW — mobile-first advertorial. Без bootstrap/font-awesome/вебшрифтов:
   трафик мобильный и дорогой, каждый килобайт платный. */

:root {
    --navy: #1b1b5c;
    --navy-soft: #2a2a75;
    --red: #c8102e;
    --gold: #f5a623;
    --gold-dark: #e8890b;
    --ink: #1a1a1a;
    --muted: #6b6b76;
    --line: #e3e3e8;
    --bg-soft: #f6f7fb;
    --fb: #3b5998;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.62;
    overflow-x: hidden;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ------------------------------- шапка ------------------------------- */

.topbar {
    background: var(--navy);
    color: #cfd0ea;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; }
.topbar span { white-space: nowrap; }

header.site {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}
header.site .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}
.brand {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--navy);
    line-height: 1;
}
.brand em { font-style: normal; color: var(--red); }
.brand small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}
nav.site ul {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
nav.site a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #444;
}
nav.site a:hover { color: var(--red); text-decoration: none; }
@media (max-width: 640px) {
    nav.site { display: none; }
    .brand { font-size: 21px; }
}

.breaking {
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 0;
}
.breaking .container { display: flex; align-items: center; gap: 10px; }
.breaking .tag {
    background: #fff;
    color: var(--red);
    padding: 2px 7px;
    border-radius: 2px;
    letter-spacing: .06em;
}

/* ------------------------------ статья ------------------------------ */

article { padding: 22px 0 8px; }

h1 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -.015em;
    margin: 0 0 12px;
    color: #111;
}
@media (min-width: 700px) { h1 { font-size: 42px; } }

.standfirst {
    font-size: 19px;
    line-height: 1.5;
    color: #3d3d47;
    margin: 0 0 18px;
}

.byline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}
.byline .avatar { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px; }
.byline b { color: #222; }
.byline .shares { margin-left: auto; white-space: nowrap; }

figure { margin: 0 0 22px; }
figure img { width: 100%; border-radius: 3px; }
figure.shot img {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}
figure.shot figcaption { text-align: center; }

figcaption {
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
    padding: 8px 2px 0;
    font-style: italic;
}

p { margin: 0 0 20px; }

h2 {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.25;
    margin: 34px 0 14px;
    color: #111;
}

h3 {
    font-size: 18px;
    margin: 26px 0 10px;
}

blockquote {
    margin: 0 0 22px;
    padding: 4px 0 4px 16px;
    border-left: 4px solid var(--gold);
    font-size: 18px;
    line-height: 1.55;
    color: #2d2d36;
}
blockquote p:last-child { margin-bottom: 0; }
blockquote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    color: var(--muted);
    margin-top: 8px;
}

ul.ticks { list-style: none; margin: 0 0 22px; padding: 0; }
ul.ticks li {
    position: relative;
    padding: 0 0 10px 30px;
    line-height: 1.5;
}
ul.ticks li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 6px;
    height: 11px;
    border: solid var(--red);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(42deg);
}

/* тот же список, но для минусов — галочка читалась бы как плюс */
ul.ticks.minus li::before {
    top: 12px;
    left: 2px;
    width: 11px;
    height: 0;
    border-width: 0 0 2.5px 0;
    border-color: var(--muted);
    transform: none;
}

.factbox {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--navy);
    padding: 16px 18px;
    margin: 0 0 24px;
    font-size: 16px;
}
.factbox h3 { margin: 0 0 10px; font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.factbox dl { margin: 0; }
.factbox dt { font-weight: 700; font-size: 14px; color: #333; }
.factbox dd { margin: 0 0 9px; font-size: 15px; color: #444; }
.factbox dd:last-child { margin-bottom: 0; }

/* --------------------------- оффер и CTA --------------------------- */

.offer {
    background: var(--navy);
    color: #fff;
    border-radius: 5px;
    padding: 20px 18px;
    margin: 0 0 26px;
    text-align: center;
}
.offer .logo { max-width: 190px; margin: 0 auto 14px; }
.offer .kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.offer .headline {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 12px;
}
.offer p { color: #d8d9ee; font-size: 15px; margin: 0 0 16px; }
.offer .terms { font-size: 12px; color: #a6a8ce; margin: 12px 0 0; }

.btn {
    display: block;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 15px 18px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 3px 0 #b96f08;
    animation: grow 1.9s ease-in-out infinite;
}
.btn:hover, .btn:focus { text-decoration: none; color: var(--navy); filter: brightness(1.05); }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 #b96f08; }
.btn small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .75;
    margin-top: 3px;
}
@keyframes grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.028); }
}
@media (prefers-reduced-motion: reduce) {
    .btn { animation: none; }
}

.cta-inline { margin: 26px 0 30px; text-align: center; }
.cta-inline .note { font-size: 12px; color: var(--muted); margin: 9px 0 0; }

/* ------------------------------- шаги ------------------------------- */

.steps { margin: 0 0 28px; padding: 0; list-style: none; counter-reset: s; }
.steps li {
    counter-increment: s;
    position: relative;
    padding: 0 0 16px 52px;
    min-height: 44px;
}
.steps li::before {
    content: counter(s);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 800;
    font-size: 17px;
    line-height: 36px;
    text-align: center;
}
.steps b { display: block; }
.steps span { font-size: 15px; color: #4a4a55; }

/* ---------------------------- отзывы ---------------------------- */

.reviews { margin: 0 0 30px; }
.review {
    display: flex;
    gap: 13px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px;
    margin-bottom: 12px;
}
.review img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex: 0 0 56px;
    object-fit: cover;
}
.review .who { font-size: 14px; font-weight: 700; color: #222; }
.review .where { font-size: 12px; color: var(--muted); margin-bottom: 5px; }
.review .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.review p { font-size: 15px; line-height: 1.5; margin: 5px 0 0; color: #33333c; }

.disclosure {
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
    background: #fffbf0;
    border: 1px dashed #e0c98a;
    border-radius: 3px;
    padding: 10px 12px;
    margin: 0 0 26px;
}

/* --------------------------- комментарии --------------------------- */

.comments {
    background: #fff;
    border-top: 6px solid var(--bg-soft);
    padding: 24px 0 10px;
}
.comments h2 { margin-top: 0; font-family: var(--sans); font-size: 17px; color: var(--fb); }
.comments .addbox {
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 10px 12px;
    font-size: 13px;
    color: #9a9aa5;
    margin-bottom: 6px;
}
.media {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #e9e9ef;
}
.media img {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    flex: 0 0 44px;
    object-fit: cover;
}
.media .name { font-size: 13.5px; font-weight: 700; color: var(--fb); line-height: 1.3; }
.media .text { font-size: 14px; line-height: 1.45; color: #1a1a1a; margin: 2px 0 4px; }
.media .meta { font-size: 12px; color: var(--fb); }
.media .meta .time { color: #8b8b95; margin-left: 8px; }

/* ------------------------------ подвал ------------------------------ */

footer.site {
    background: #14142e;
    color: #8d8fb4;
    font-size: 13px;
    line-height: 1.6;
    padding: 26px 0 34px;
    margin-top: 24px;
}
footer.site a { color: #b9bbdd; text-decoration: underline; }
footer.site .rg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #262649;
}
footer.site .badge18 {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border: 2px solid #8d8fb4;
    border-radius: 50%;
    color: #d5d6ea;
    font-size: 14px;
    font-weight: 800;
    line-height: 36px;
    text-align: center;
}
footer.site .links { margin-top: 12px; }
footer.site .links a { margin-right: 14px; }
