/* --- БАЗОВЫЕ СТИЛИ (Десктоп) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f0f0;
    font-family: Georgia, serif;
    color: #ab2828;
    line-height: 1.4;
    padding: 20px 0;
}

#inner {
    max-width: 950px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 40px 60px;
    border: solid #666;
    border-width: 8px 0 2px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Шапка */
#hd {
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#hd h1 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    line-height: 1;
}

#hd h2 {
    font-size: 110%;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-top: 5px;
}

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

.contact-info h3 {
    font-size: 110%;
    margin-bottom: 3px;
}

/* Кнопка Download PDF — белый текст на сером фоне.
   Специфичность #pdf выше чем a, поэтому !important не нужен. */
#pdf {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 6px 25px;
    text-decoration: none;
    font-size: 14px;
}

a {
    color: #4e4949;
    text-decoration: none;
}

/* Сетка */
.yui-gf {
    display: flex;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #ccc;
}

.yui-gf.last {
    border-bottom: none;
}

.yui-u.first {
    width: 120px;
    flex-shrink: 0;
}

.yui-u.first h2 {
    font-style: italic;
    font-size: 120%;
    color: #333;
}

.yui-u.main {
    flex-grow: 1;
    margin-left: 30px;
}

/* Текст */
.enlarge {
    font-size: 120%;
    color: #ab2828;
    margin-bottom: 10px;
}

p,
li {
    font-size: 14px;
    margin-bottom: 8px;
}

strong {
    color: #333;
}

ul {
    list-style: none;
}

.main li {
    border-bottom: 1px solid #ddd;
    padding: 2px 0;
}

/* Колонки Технические */
.talent {
    float: left;
    width: 31%;
    margin-right: 2%;
}

/* Заголовки в контентной области.
   body задаёт color: #ab2828 для всего документа.
   Здесь явно переопределяем для h2/h3/h4 внутри контента —
   без !important, потому что селекторы достаточно специфичны. */
.yui-u.main h2,
.job h2 {
    font-size: 120%;
    color: #333;
}

.yui-u.main h3,
.job h3 {
    font-size: 100%;
    color: #444;
}

.job h4 {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 100%;
    color: #666;
}

.job {
    position: relative;
    margin-bottom: 1em;
}

#ft {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
}

/* --- МОБИЛЬНАЯ ВЕРСИЯ --- */
@media screen and (max-width: 768px) {
    #inner {
        width: 95%;
        padding: 20px;
    }

    #hd {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        text-align: center;
        margin-top: 15px;
    }

    .yui-gf {
        flex-direction: column;
    }

    .yui-u.main {
        margin-left: 0;
        margin-top: 10px;
    }

    .yui-u.first h2 {
        border-bottom: 1px solid #ccc;
        display: block;
        margin-bottom: 5px;
    }

    .job h4 {
        position: static;
        margin-top: 5px;
    }

    .talent {
        width: 100%;
        float: none;
    }
}

/* --- ПЕЧАТЬ --- */
@media print {
    @page {
        margin: 0;
    }

    body {
        padding: 0;
        background: #fff;
    }

    #inner {
        width: 100%;
        margin: 0;
        padding: 5px 40px;
        box-shadow: none;
        background: #f5f5f5;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    #pdf,
    #ft {
        display: none;
    }

    #hd {
        margin-bottom: 0.5em;
        padding-bottom: 0.5em;
    }

    #hd h1 {
        font-size: 22pt;
    }

    .yui-gf {
        margin-bottom: 0.4em;
        padding-bottom: 0.4em;
    }

    .enlarge {
        font-size: 11pt;
        line-height: 1.1;
        margin-bottom: 5px;
    }

    p,
    li,
    .job p {
        font-size: 8.5pt;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .yui-u.first h2,
    .yui-u.main h2,
    .job h2 {
        font-size: 10pt;
    }

    .yui-u.main h3,
    .job h3,
    .job h4 {
        font-size: 9pt;
    }
}
