/* Подключаем шрифт похожий на газетный (Arial или Inter) */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* Ограничитель ширины */
.paper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    position: relative; /* Для позиционирования кнопки "на главную" */
    min-height: 100vh;
}

/* --- ШАПКА --- */
.paper-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    line-height: 0.9;
    width: 200px; /* Фиксированная ширина логотипа */
}

.main-title {
    flex-grow: 1; /* Занимает все место */
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    position: absolute; /* Чтобы встал ровно по центру страницы */
    left: 0;
    right: 0;
    top: -10px;
}

/* --- СЕТКА (4 колонки) --- */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 равные колонки */
    gap: 40px; /* Отступ между колонками */
    align-items: start;
}

/* Стили контента */
h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

p {
    font-size: 14px;
    margin: 0 0 20px 0;
    color: #111;
}

.caption {
    font-size: 13px;
    margin-top: 10px;
}

/* Картинки */
.full-width-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    /* Можно добавить фильтр ч/б если нужно как в газете */
    /* filter: grayscale(100%); */
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Рукописный текст */
.handwritten-img {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    transform: rotate(-2deg); /* Легкий наклон */
}

/* Линии разделители */
.separator-line {
    border-top: 2px solid #000;
    margin: 15px 0;
    width: 100%;
}

.logo-small {
    font-weight: 900;
    font-size: 14px;
    line-height: 0.9;
    margin-top: 50px;
}

/* Блок рекламы борща (снизу 1 колонки) */
.ad-block {
    margin-top: 100px; /* Большой отступ сверху */
}
.ad-block h3 {
    text-transform: uppercase;
    font-size: 18px;
}
.footnotes {
    margin-top: 40px;
    font-size: 10px;
    color: #444;
}
.footnotes p {
    margin-bottom: 2px;
}

/* --- КНОПКА НА ГЛАВНУЮ --- */
.nav-home {
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 32px;
    font-weight: 900;
    color: #333;
    text-decoration: none;
    transform: rotate(15deg);
    transition: transform 0.3s;
}
.nav-home:hover {
    transform: rotate(0deg) scale(1.1);
    color: #000;
}

/* --- АДАПТИВНОСТЬ (МОБИЛЬНЫЙ) --- */
@media (max-width: 900px) {
    .paper-header {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .main-title {
        position: static; /* Отключаем абсолют */
        text-align: left;
        font-size: 40px;
        margin-top: 20px;
    }

    .grid-layout {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 60px;
    }

    .nav-home {
        position: static;
        display: block;
        margin-top: 60px;
        text-align: center;
        transform: none;
    }
}