/*
Theme Name: dds_cncnn.ru
Author: Алексей Зимин
Description: Финансово-аналитический портал cncnn.ru. Дизайн-концепция «Финансовый атлас»: картографический визуальный язык и деловая строгость.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: finmap
*/

/* ============================================================
   ПЕРЕМЕННЫЕ
   ============================================================ */
:root {
    --bg:          #F8F6F2;
    --bg-alt:      #EEEAE0;
    --bg-accent:   #E2DDD2;
    --dark:        #1C2526;
    --sidebar-bg:  #F0EDE4;
    --text:        #212121;
    --accent:      #C65D47;
    --accent2:     #4A6B6B;
    --muted:       #6E6B63;
    --border:      #DAD5C8;
    --grid-line:   #E3DFD5;
    --font-head:   "Eurostile", "Gotham", "Montserrat", "Segoe UI", "Arial Narrow", system-ui, sans-serif;
    --font-body:   Charter, Georgia, "Times New Roman", serif;
    --shell:       1180px;
}

/* ============================================================
   БАЗА
   ============================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    /* миллиметровая бумага: бледные горизонтальные линии, шаг 40px */
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 39px,
        var(--grid-line) 39px,
        var(--grid-line) 40px
    );
    overflow-x: hidden;
}

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

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

/* текстовые ссылки: пунктирный «трек» при наведении */
.entry-content a,
.widget a,
.footer-widgets a {
    background-image: linear-gradient(var(--accent2), var(--accent2));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size .25s ease, color .2s ease;
    padding-bottom: 1px;
}
.entry-content a:hover,
.widget a:hover,
.footer-widgets a:hover {
    background-size: 100% 1px;
    background-image: repeating-linear-gradient(to right, var(--accent2) 0 4px, transparent 4px 8px);
}

p { margin: 0 0 1.1em; }

/* ============================================================
   КОНТЕЙНЕР ШИРИНЫ (единый источник)
   ============================================================ */
.shell {
    width: min(92%, var(--shell));
    margin-inline: auto;
}

/* ============================================================
   ТИПОГРАФИКА ЗАГОЛОВКОВ
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 .6em;
    font-weight: 700;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }

/* «Топографическая линия» перед крупными заголовками */
.topo-title {
    position: relative;
    padding-left: 62px;
}
.topo-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 46px;
    height: 2px;
    background: var(--accent);
}
.topo-title::after {
    content: "";
    position: absolute;
    left: 46px;
    top: calc(.62em - 3px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .7em 1.6em;
    border: 2px solid var(--accent);
    border-radius: 4px;
    color: var(--accent);
    background: transparent;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { background: var(--accent); color: #fff; }

.btn-solid {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.btn-solid:hover { background: transparent; color: var(--accent); }

.btn-ghost {
    border: none;
    border-radius: 0;
    padding: .4em 0;
    color: var(--accent2);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.btn-ghost:hover { background: transparent; color: var(--accent); }

/* ============================================================
   ШАПКА
   ============================================================ */
.site-header {
    background: var(--dark);
    color: var(--bg);
    border-bottom: 3px solid var(--accent);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    flex-wrap: wrap;
}
.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
}
.brand-logo { display: block; width: auto; height: 56px; }
.brand-mark { flex: 0 0 auto; }
.brand-text { min-width: 0; }
.brand-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--bg);
    display: block;
    margin: 0;
    max-width: 640px;
}
.brand-title a { color: var(--bg); }
.brand-desc {
    font-size: .82rem;
    color: #B9BEBD;
    margin: 4px 0 0;
    max-width: 640px;
    line-height: 1.45;
}

/* Навигация */
.main-nav { flex: 0 0 auto; min-width: 0; }
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #48514F;
    color: var(--bg);
    border-radius: 4px;
    padding: 8px 12px;
    font-family: var(--font-head);
    cursor: pointer;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.main-nav a {
    display: block;
    font-family: var(--font-head);
    font-size: .92rem;
    letter-spacing: .03em;
    color: #D7DBDA;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: #fff;
    border-color: var(--accent);
}

/* ============================================================
   МАКЕТ КОНТЕНТА
   ============================================================ */
.site-main { padding: 42px 0 60px; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 67fr) minmax(0, 27fr);
    gap: 46px;
    align-items: start;
}
.layout-single .content-area,
.layout-narrow .content-area { width: 100%; }

.layout-single { display: block; }

/* ============================================================
   ХЛЕБНЫЕ КРОШКИ
   ============================================================ */
.breadcrumbs {
    font-family: var(--font-head);
    font-size: .82rem;
    color: var(--muted);
    margin: 0 0 26px;
    letter-spacing: .02em;
}
.breadcrumbs a { color: var(--accent2); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--border); margin: 0 6px; }

/* ============================================================
   РАЗДЕЛИТЕЛЬ СЕКЦИЙ (линия с ромбом)
   ============================================================ */
.atlas-sep {
    border: none;
    height: 1px;
    background: var(--border);
    position: relative;
    margin: 0;
}
.atlas-sep::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--bg);
    border: 1px solid var(--accent);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ============================================================
   КАРТОЧКИ ЗАПИСЕЙ
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 26px;
}
.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(28,37,38,.08);
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.card:hover {
    box-shadow: 0 8px 20px rgba(28,37,38,.14);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.card-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-alt);
}
.card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%) contrast(.96);
    transition: filter .3s ease;
}
.card:hover .card-thumb img { filter: grayscale(35%); }
.card-thumb-ph {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--accent2);
    opacity: .5;
}
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 24px;
    min-width: 0;
}
.card-title {
    font-size: 1.28rem;
    margin: 0 0 10px;
}
.card-title a { color: var(--dark); background: none; }
.card-title a:hover { color: var(--accent); }
.card-coord {
    font-family: var(--font-head);
    font-size: .74rem;
    letter-spacing: .04em;
    color: var(--accent2);
    text-transform: uppercase;
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.card-coord::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
}
.card-excerpt {
    color: #34322D;
    font-size: .98rem;
    margin: 0 0 16px;
}
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-more { margin-top: auto; }

/* ============================================================
   ПАГИНАЦИЯ (type => plain, .page-numbers)
   ============================================================ */
.atlas-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 44px 0 0;
    align-items: center;
}
.atlas-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-head);
    font-size: .92rem;
    color: var(--dark);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.atlas-pagination a.page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.atlas-pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.atlas-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
}

/* ============================================================
   ЗАПИСЬ / СТРАНИЦА
   ============================================================ */
.entry-header { margin: 0 0 26px; }
.entry-title { font-size: 2.6rem; margin: 0 0 14px; }
.entry-meta {
    font-family: var(--font-head);
    font-size: .8rem;
    letter-spacing: .03em;
    color: var(--muted);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.entry-meta::before {
    content: "";
    width: 34px; height: 2px;
    background: var(--accent);
}
.entry-thumb {
    display: block;
    margin: 0 0 28px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.entry-thumb img { display: block; width: 100%; height: auto; }
.entry-content { font-size: 1.05rem; }
.entry-content h2,
.entry-content h3 {
    position: relative;
    padding-left: 44px;
    margin-top: 1.6em;
}
.entry-content h2::before,
.entry-content h3::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 30px; height: 2px;
    background: var(--accent);
}
.entry-content h2::after,
.entry-content h3::after {
    content: "";
    position: absolute;
    left: 30px; top: calc(.55em - 3px);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.entry-content img { border-radius: 6px; }
.entry-content blockquote {
    margin: 1.6em 0;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 100%);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    font-style: italic;
    color: #33312C;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }

/* Таблицы */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: .96rem;
}
.entry-content table th,
.entry-content table td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
}
.entry-content table th {
    background: var(--bg-alt);
    font-family: var(--font-head);
    color: var(--dark);
}

/* ============================================================
   САЙДБАР
   ============================================================ */
.sidebar {
    min-width: 0;
    background: var(--sidebar-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 24px 8px;
}
.sidebar .widget { margin-bottom: 26px; color: var(--text); }
.widget-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--dark);
    margin: 0 0 16px;
    padding-left: 26px;
    position: relative;
}
.widget-title::before {
    content: "";
    position: absolute;
    left: 0; top: .5em;
    width: 18px; height: 2px;
    background: var(--accent);
}
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--text);
    font-size: .96rem;
}
.sidebar li:last-child { border-bottom: none; }
.sidebar a { color: var(--accent2); background: none; }
.sidebar a:hover { color: var(--accent); }

/* ============================================================
   ФОРМА ПОИСКА
   ============================================================ */
.search-form {
    display: flex;
    gap: 8px;
    min-width: 0;
}
.search-form input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: .96rem;
    background: #fff;
    color: var(--text);
}
.search-form button {
    flex: 0 0 auto;
    font-family: var(--font-head);
    padding: 0 18px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.search-form button:hover { background: transparent; color: var(--accent); }

/* ============================================================
   ГЛАВНАЯ — ОБЩЕЕ
   ============================================================ */
.front { position: relative; }
.front-section { padding: 58px 0; }
.front-section.alt {
    background: var(--bg-alt);
    background-image: repeating-linear-gradient(
        to bottom, transparent 0, transparent 39px,
        #DED9CD 39px, #DED9CD 40px);
}
.front-inner { width: min(85%, var(--shell)); margin-inline: auto; }
.section-head { margin: 0 0 34px; }
.section-kicker {
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin: 0 0 10px;
}

/* БЛОК 1 — HERO */
.hero {
    position: relative;
    color: #fff;
    background: var(--dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/hero-atlas.jpg");
    background-size: cover;
    background-position: center;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 37, 38, .6);
}
.hero-inner {
    position: relative;
    width: min(85%, var(--shell));
    margin-inline: auto;
    padding: 96px 0 100px;
    max-width: 820px;
}
.hero-kicker {
    font-family: var(--font-head);
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .82rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
}
.hero-kicker::before {
    content: "";
    width: 44px; height: 2px; background: var(--accent);
}
.hero h1 {
    color: #fff;
    font-size: 3.2rem;
    margin: 0 0 20px;
}
.hero p {
    font-size: 1.15rem;
    color: #E4E1DA;
    max-width: 620px;
    margin: 0 0 32px;
}

/* БЛОК 2 — СТАТИСТИКА */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}
.stat {
    text-align: center;
    padding: 14px 22px;
    border-left: 1px solid var(--border);
    min-width: 0;
}
.stat:first-child { border-left: none; }
.stat-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    display: block;
}
.stat-label {
    font-family: var(--font-body);
    font-size: .96rem;
    color: var(--muted);
    margin-top: 10px;
    display: block;
}

/* БЛОК «ПОСЛЕДНИЕ ЗАПИСИ» на главной */
.latest-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 30px;
}

/* БЛОК 3 — ТАЙМЛАЙН */
.timeline {
    position: relative;
    margin: 8px 0 0;
    padding-left: 34px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 6px; top: 6px; bottom: 6px;
    width: 2px;
    background: var(--border);
}
.tl-item {
    position: relative;
    padding: 0 0 30px 26px;
    min-width: 0;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: "";
    position: absolute;
    left: -34px; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--accent);
}
.tl-item:nth-child(even) { margin-left: 26px; }
.tl-coord {
    font-family: var(--font-head);
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent2);
    display: block;
    margin: 0 0 6px;
}
.tl-item h3 { font-size: 1.2rem; margin: 0 0 6px; }
.tl-item p { margin: 0; color: #3A382F; font-size: .98rem; }

/* БЛОК 4 — РУБРИКАТОР */
.rubric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.rubric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--dark);
    min-width: 0;
    transition: background .25s ease, border-color .25s ease;
}
.rubric svg { width: 40px; height: 40px; }
.rubric .ic-stroke { stroke: var(--accent2); transition: stroke .25s ease; }
.rubric .ic-fill { fill: var(--accent2); transition: fill .25s ease; }
.rubric-name {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 700;
}
.rubric:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.rubric:hover .ic-stroke { stroke: #fff; }
.rubric:hover .ic-fill { fill: #fff; }

/* Декоративный компас — только на главной, правый нижний угол */
.front::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%234A6B6B' stroke-width='2'%3E%3Ccircle cx='100' cy='100' r='88'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Cline x1='100' y1='6' x2='100' y2='194'/%3E%3Cline x1='6' y1='100' x2='194' y2='100'/%3E%3Cline x1='30' y1='30' x2='170' y2='170'/%3E%3Cline x1='170' y1='30' x2='30' y2='170'/%3E%3C/g%3E%3Cpolygon points='100,20 82,100 100,180 118,100' fill='%234A6B6B'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .06;
    z-index: 0;
}
.front > * { position: relative; z-index: 1; }

/* ============================================================
   ПОДВАЛ
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: #C4C9C8;
    border-top: 3px solid var(--accent);
    margin-top: 40px;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 52px 0 40px;
}
.footer-col { min-width: 0; }
.footer-col .widget-title { color: #fff; }
.footer-col .widget-title::before { background: var(--accent); }
.footer-col,
.footer-col p,
.footer-col li { color: #C4C9C8; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 7px 0; border-bottom: 1px dashed #3A4241; font-size: .94rem; }
.footer-col li:last-child { border-bottom: none; }
.footer-col a { color: #D7DBDA; background: none; }
.footer-col a:hover { color: var(--accent); }
.footer-contacts a[href^="mailto"] { color: var(--accent); }
.footer-social { display: flex; gap: 14px; margin-top: 12px; }
.footer-social a { font-family: var(--font-head); font-size: .86rem; }

.site-copy {
    border-top: 1px solid #2C3534;
    padding: 20px 0;
    font-family: var(--font-head);
    font-size: .8rem;
    letter-spacing: .02em;
    color: #8E9493;
}

/* ============================================================
   COOKIE-БАННЕР
   ============================================================ */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--dark);
    color: #E4E1DA;
    border-top: 2px solid var(--accent);
    padding: 16px 0;
}
.cookie-inner {
    width: min(92%, var(--shell));
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-inner p { margin: 0; font-size: .92rem; max-width: 760px; min-width: 0; }
.cookie-inner a { color: var(--accent); }

/* ============================================================
   404
   ============================================================ */
.error-404 { text-align: center; padding: 30px 0 50px; }
.error-404 .big { font-family: var(--font-head); font-size: 6rem; color: var(--accent); margin: 0; }
.error-404 .search-form { max-width: 460px; margin: 26px auto 0; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 960px) {
    h1, .hero h1 { font-size: 2.5rem; }
    .entry-title { font-size: 2.1rem; }
    .layout-with-sidebar { grid-template-columns: 1fr; gap: 34px; }
    .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
    .stat:nth-child(odd) { border-left: none; }
    .rubric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-widgets { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 17px; }
    h1, .hero h1 { font-size: 2.1rem; }
    h2 { font-size: 1.7rem; }
    .front-section { padding: 42px 0; }
    .front-inner, .hero-inner { width: min(90%, var(--shell)); }
    .hero-inner { padding: 64px 0 68px; }
    .header-inner { flex-direction: column; align-items: stretch; gap: 16px; }
    .nav-toggle { display: block; align-self: flex-start; }
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 4px;
        margin-top: 12px;
    }
    .main-nav.open ul { display: flex; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .rubric-grid { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; gap: 30px; }
    .cookie-inner { justify-content: flex-start; }
    .timeline .tl-item:nth-child(even) { margin-left: 0; }
}
