/* ==========================================================================
   Типографика — шрифт Exo 2, базовая линия 16px / line-height 1.28
   ========================================================================== */

/* --- Заголовки --- */
h1, h2, h3, h4, h5, h6,
.typography-h1, .typography-h2, .typography-h3, .typography-h4, .typography-h5, .typography-h6 {
    /*color: #34393c;*/
    display: block;
    font-family: "Exo 2", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 0.5em;
}

h1, .typography-h1 {
    font-size: 2rem; /* 32px */
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media screen and (max-width: 640px) {
    h1, .typography-h1 {
        font-size: 1.625rem;
    }
}

h2, .typography-h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: bold;
    letter-spacing: -0.01em;
}

@media screen and (max-width: 640px) {
    h2, .typography-h2 {
        font-size: 1.25rem;
    }
}

h3, .typography-h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: bold;
}

h4, .typography-h4 {
    font-size: 1.125rem; /* 18px */
    font-weight: bold;
}

h5, .typography-h5 {
    font-size: 1rem; /* 16px */
    font-weight: bold;
}

h6, .typography-h6 {
    font-size: 0.875rem; /* 14px */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* --- Текст --- */
p {
    margin: 0 0 1em;
    font-size: 1rem;
    line-height: 1.28;
    color: #34393c;
}

p:last-child {
    margin-bottom: 0;
}

.lead, .typography-lead {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 300;
}

.small, .typography-small {
    font-size: 0.875rem; /* 14px */
    line-height: 1.35;
}

.typography-tiny {
    font-size: 0.75rem; /* 12px */
    line-height: 1.35;
}

/* --- Списки --- */
ul, ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
    font-size: 1rem;
    line-height: 1.28;
    color: #34393c;
}

ul ul, ol ol, ul ol, ol ul {
    margin: 0.25em 0;
}

/* --- Цитаты --- */
blockquote {
    margin: 0 0 1em;
    padding: 0.5em 0 0.5em 1em;
    border-left: 3px solid #0cb28b;
    font-size: 1rem;
    line-height: 1.28;
    color: #34393c;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 0.5em;
    font-size: 0.875rem;
    font-style: normal;
    color: #6b7174;
}

/* --- Ссылки в тексте --- */
.typography a {
    color: #0cb28b;
    text-decoration: none;
}

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

/* --- Выделение и код --- */
.typography strong, .typography b {
    font-weight: bold;
}

.typography em, .typography i {
    font-style: italic;
}

.typography code, .typography kbd {
    font-family: "Consolas", "Monaco", "Courier New", monospace;
    font-size: 0.9em;
    padding: 0.15em 0.35em;
    background: #e8eaeb;
    border-radius: 3px;
    color: #34393c;
}

.typography pre {
    margin: 0 0 1em;
    padding: 1em;
    overflow-x: auto;
    background: #e8eaeb;
    border-radius: 4px;
    font-family: "Consolas", "Monaco", "Courier New", monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #34393c;
}

.typography pre code {
    padding: 0;
    background: none;
}

/* --- Утилиты шрифтов --- */
.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-bold {
    font-weight: bold;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* --- Обёртка контента --- */
.typography {
    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
    line-height: 1.28;
    color: #34393c;
}

.typography > *:first-child {
    margin-top: 0;
}

.typography > *:last-child {
    margin-bottom: 0;
}

