:root {
    --primary-color: #0d3b66;
    --secondary-color: #f95738;
    --accent-color: #1a936f;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--secondary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */

hero, .hero {
    position: relative;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), /* Затемнение слева направо */
        url('/images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff; 
}

hero a, .hero a {
    color: #ffffff !important;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-line {
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 30px auto;
}

/* Main Content */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio-text p {
    margin-bottom: 20px;
}

.bio-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.bio-image:hover img {
    transform: scale(1.03);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.timeline-year {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent-color);
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.award-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-icon {
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    padding: 25px;
    text-align: center;
}

.award-content {
    padding: 25px;
}

.award-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Family Section */
.family-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.family-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.family-card:hover {
    transform: translateY(-5px);
}

.family-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Hobbies */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.hobby-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.hobby-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.hobby-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hobby-item:hover .hobby-icon {
    color: white;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Секция новостей */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color, #0d3b66);
    margin-bottom: 1rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--secondary-color, #f95738);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color, #6c757d);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточка новости */
.news-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color, #1a936f);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card.featured {
    border-left-color: var(--secondary-color, #f95738);
    background: linear-gradient(to right, #fff, #fff8f6);
}

.news-card__header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.news-card__date {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--secondary-color, #f95738);
    font-weight: 500;
    margin-bottom: 0.5rem;
    background: #fef2f2;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.news-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color, #0d3b66);
    line-height: 1.3;
}

.news-card__content {
    color: #444;
    line-height: 1.6;
}

.news-intro {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #222;
}

.news-card__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color, #1a936f);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: color 0.2s;
}

.news-card__link:hover {
    color: var(--primary-color, #0d3b66);
}

/* Аккордеон */
.accordion {
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion__btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f7fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color, #0d3b66);
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion__btn:hover {
    background: #edf2f7;
}

.accordion__icon {
    transition: transform 0.3s ease;
}

.accordion__btn[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion__content {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.7;
}
/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ ОТКРЫТОГО ПИСЬМА ========== */

/* Контейнер страницы */
.open-letter-page {
    padding: 2rem 0 5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 70vh;
}

/* Хлебные крошки */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-color, #6c757d);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eaeaea;
}

.breadcrumb a {
    color: var(--primary-color, #0d3b66);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--secondary-color, #f95738);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-color, #6c757d);
}

/* Заголовок письма */
.letter-header {
    margin-bottom: 3rem;
    text-align: center;
}

.letter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color, #0d3b66);
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.letter-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #0d3b66), var(--secondary-color, #f95738));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.letter-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--gray-color, #6c757d);
    font-size: 1.05rem;
}

.letter-author {
    font-weight: 600;
    color: var(--primary-color, #0d3b66);
    position: relative;
    padding-left: 1.8rem;
}

.letter-author::before {
    content: '—';
    position: absolute;
    left: 0;
}

.letter-date {
    font-style: italic;
}

/* Контейнер основного текста */
.letter-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

/* Вступительный блок */
.letter-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #e2e8f0;
}

.salutation {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.new-year-greeting {
    font-size: 1.3rem;
    color: var(--secondary-color, #f95738);
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Основной текст письма */
.letter-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.letter-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto; /* Автоматическая расстановка переносов */
}

.highlight-paragraph {
    background-color: rgba(249, 151, 56, 0.05);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--secondary-color, #f95738);
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
}

/* Цитата */
.letter-quote {
    margin: 2.5rem 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f7ff 100%);
    border-left: 4px solid var(--accent-color, #1a936f);
    font-style: italic;
    color: #444;
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
    font-size: 1.15rem;
    position: relative;
}

.letter-quote::before {
    content: '“';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-color, #1a936f);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    line-height: 1;
}

.letter-quote p {
    margin: 0;
    text-align: left;
}

/* Контейнер для стихотворения */
.poem-container {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
    border: 1px solid #ffe4cc;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poem-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #0d3b66), var(--secondary-color, #f95738));
}

.poem {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.poem-line {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
    text-align: left;
}

.poem-line::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color, #f95738);
    font-size: 1rem;
}

.poem-signature {
    font-style: italic;
    color: var(--primary-color, #0d3b66);
    font-weight: 500;
    font-size: 1.1rem;
    border-top: 1px dashed #ccc;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Подпись в конце письма */
.letter-signature {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #eaeaea;
    text-align: right;
    font-style: italic;
    color: #555;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color, #0d3b66);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Навигационные кнопки */
.content-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary-color, #0d3b66);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-button:hover {
    background: white;
    color: var(--primary-color, #0d3b66);
    border-color: var(--primary-color, #0d3b66);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .letter-title {
        font-size: 2.2rem;
    }
    
    .letter-content {
        padding: 2rem 1.5rem;
    }
    
    .letter-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .letter-quote {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .letter-quote::before {
        font-size: 3rem;
    }
    
    .poem-container {
        padding: 2rem 1.5rem;
    }
    
    .poem {
        font-size: 1.2rem;
    }
    
    .content-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .letter-title {
        font-size: 1.8rem;
    }
    
    .letter-intro {
        font-size: 1.05rem;
    }
    
    .poem {
        font-size: 1.1rem;
    }
    
    .poem-line {
        padding-left: 1.5rem;
    }
}

/* =============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ОТКРЫТОГО ПИСЬМА
   (aktanysh-halkyna-achyk-hat.html)
   ============================================= */

/* Хлебные крошки */
.breadcrumbs {
    background-color: var(--light-gray);
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--gray-color);
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: var(--gray-color);
}

/* Контейнер основного содержимого письма */
.letter-container {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.letter-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.letter-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.letter-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.letter-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.letter-meta .author {
    font-weight: 600;
    color: var(--primary-color);
}

.letter-meta .date {
    font-style: italic;
}

/* Основной текст письма */
.letter-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.letter-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}

/* Вступительный блок */
.letter-intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.letter-intro p {
    margin-bottom: 15px;
}

.letter-intro strong {
    color: var(--primary-color);
}

/* Приветствие */
.letter-greeting {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    margin: 30px 0;
    font-style: italic;
    padding: 10px;
    border-bottom: 1px dashed var(--secondary-color);
    border-top: 1px dashed var(--secondary-color);
}

/* Цитаты */
.letter-quote {
    margin: 30px 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: #444;
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.letter-quote:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 10px;
}

/* Выделенные абзацы */
.highlighted-paragraph {
    background-color: #fef9f3;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    font-style: italic;
    font-weight: 500;
    color: #555;
}

/* Блоки с особым акцентом */
.emphasis-block {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(to right, #f8f9fa, #f0f7ff);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.emphasis-block p {
    margin-bottom: 15px;
}

/* Стихотворение */
.poem-section {
    margin: 40px 0 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f9f7f3 0%, #f5f2eb 100%);
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 1px solid #e9e5dd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.poem-section:before {
    content: '❝';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.poem-section:after {
    content: '❞';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    bottom: 10px;
    right: 20px;
    line-height: 1;
}

.poem {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.poem-line {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    text-align: left;
}

.poem-line:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    top: 0;
}

.poem-signature {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

/* Подпись в конце письма */
.letter-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
    text-align: right;
    font-style: italic;
    color: var(--gray-color);
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 10px;
    font-weight: 600;
}

/* Навигация в конце */
.content-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Адаптивность для страницы письма */
@media (max-width: 992px) {
    .letter-title {
        font-size: 2.4rem;
    }
    
    .letter-body {
        font-size: 1.1rem;
    }
    
    .letter-quote {
        margin: 20px;
        padding: 20px;
    }
    
    .poem {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .letter-container {
        padding: 25px;
    }
    
    .letter-title {
        font-size: 2rem;
    }
    
    .letter-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .content-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    .letter-quote {
        margin: 20px 0;
    }
    
    .poem-section {
        padding: 20px;
    }
    
    .poem-line {
        padding-left: 25px;
    }
}

@media (max-width: 576px) {
    .letter-title {
        font-size: 1.8rem;
    }
    
    .letter-body {
        font-size: 1rem;
    }
    
    .letter-intro {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .poem {
        font-size: 1.1rem;
    }
    
    .poem-line:before {
        font-size: 1rem;
    }
}

        
        /* Шапка сайта */
        .site-header {
            border-bottom: 3px solid #2c5aa0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        
        .site-title {
            font-size: 24px;
            color: #2c5aa0;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .site-subtitle {
            font-size: 16px;
            color: #666;
            font-style: italic;
        }
        
        /* Заголовок письма */
        .letter-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .letter-title {
            font-size: 32px;
            color: #2c5aa0;
            margin-bottom: 10px;
            font-weight: bold;
            line-height: 1.3;
        }
        
        .letter-date {
            color: #777;
            font-size: 16px;
            font-style: italic;
        }
        
        /* Содержание письма */
        .letter-content {
            font-size: 18px;
            text-align: justify;
        }
        
        .letter-content p {
            margin-bottom: 25px;
            text-indent: 30px;
        }
        
        .letter-greeting {
            font-weight: bold;
            color: #2c5aa0;
            font-size: 20px;
            text-indent: 0 !important;
            margin-bottom: 30px !important;
        }
        
        .letter-signature {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
            text-align: right;
            font-style: italic;
            color: #555;
            font-size: 20px;
            text-indent: 0 !important;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .site-container {
                padding: 20px;
            }
            
            .letter-title {
                font-size: 26px;
            }
            
            .letter-content {
                font-size: 16px;
            }
            
            .letter-content p {
                text-indent: 20px;
            }
        }
        
/* Блок "Публикации и официальные заявления" для главной страницы */
.news-section {
    margin: 60px 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section h2 {
    color: #2c5aa0;
    font-size: 28px;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 15px;
    margin-bottom: 35px;
}

.news-section .section-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
    font-style: italic;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    background-color: #fcfcfc;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.news-title {
    color: #2c5aa0;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-excerpt {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-update {
    color: #999;
    font-size: 13px;
}

.read-more {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.all-publications-btn {
    text-align: center;
    margin-top: 50px;
}

.all-publications-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

/* Эффекты при наведении */
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c5d4eb;
}

.news-title a:hover {
    text-decoration: underline;
}

.all-publications-link:hover {
    background-color: #1a3a6e;
}

/* Адаптивность */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-section h2 {
        font-size: 24px;
    }
    
    .news-section .section-subtitle {
        font-size: 16px;
    }
}
        /* Стилизация согласно общей стилистике сайта */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
            padding: 20px;
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* Заголовки */
        .article-title {
            font-size: 2.2em;
            line-height: 1.3;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }

        .article-meta {
            color: #7f8c8d;
            font-size: 0.95em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        /* Основной текст */
        .article-body p {
            margin-bottom: 1.5em;
            font-size: 1.1em;
            text-align: justify;
        }

        .article-body strong {
            color: #2c3e50;
        }

        /* Блоки с цитатами или прямой речью */
        .quote-block {
            border-left: 4px solid #3498db;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 0 5px 5px 0;
        }

        /* Маркированные списки */
        .facts-list {
            background-color: #f0f7ff;
            padding: 20px 20px 20px 40px;
            margin: 25px 0;
            border-radius: 5px;
        }

        .facts-list li {
            margin-bottom: 10px;
        }

        /* Блок для примечаний или ключевых моментов */
        .key-point {
            background-color: #fffde7;
            border: 1px solid #ffeaa7;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }

        /* Отзывчивый дизайн */
        @media (max-width: 768px) {
            .content-container {
                padding: 20px;
            }
            
            .article-title {
                font-size: 1.8em;
            }
        }
        
/* --- СТИЛИ ГАЛЕРЕИ --- */
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            min-height: 60vh;
        }

        .gallery-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
        }

        .gallery-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            font-size: 16px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* СЕТКА */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        /* КАРТОЧКА */
        .gallery-item {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background: #eee;
            aspect-ratio: 4/3; /* Ровные прямоугольники */
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* --- ЛАЙТБОКС (ОКНО ПРОСМОТРА) --- */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
            user-select: none;
        }

        .lightbox-content {
            max-width: 85%;
            max-height: 85vh;
            border-radius: 2px;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
            animation: zoomIn 0.3s ease;
        }

        /* КНОПКИ НАВИГАЦИИ */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 20px;
            margin-top: -50px;
            color: rgba(255,255,255,0.7);
            font-weight: bold;
            font-size: 50px;
            transition: 0.3s;
            text-decoration: none;
        }

        .next { right: 10px; }
        .prev { left: 10px; }

        .prev:hover, .next:hover {
            color: #fff;
            background: rgba(0,0,0,0.3);
            border-radius: 4px;
        }

        /* КНОПКА ЗАКРЫТИЯ */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: rgba(255,255,255,0.7);
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 10001;
            line-height: 1;
        }

        .close-btn:hover {
            color: #fff;
        }

        @keyframes zoomIn {
            from {transform: scale(0.95); opacity: 0;}
            to {transform: scale(1); opacity: 1;}
        }

        /* ПОДВАЛ */
        footer {
            background: #222;
            color: #aaa;
            padding: 40px 0;
            margin-top: 60px;
            font-size: 14px;
            border-top: 3px solid #444;
        }
        
        .footer-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
/* =========================================
   3. СТИЛИ ДЛЯ СТАТЬИ (НОВОСТИ)
   ========================================= */
.article-container {
    max-width: 800px; /* Оптимальная ширина для чтения текста */
    margin: 0 auto;
    padding: 60px 20px;
}

/* Дата над заголовком */
.article-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Главный заголовок новости */
.article-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}

/* Основной текст */
.article-body {
    font-size: 19px; /* Увеличенный шрифт для удобства чтения */
    color: #333;
}

.article-body p {
    margin-bottom: 25px;
}

/* Подзаголовки внутри текста */
.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Оформление цитат (Красная линия слева) */
.aarticle-body blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background-color: #f9f9f9;
    border-left: 5px solid #cc0000; /* Акцентный цвет */
    font-style: italic;
    font-size: 20px;
    color: #555;
    line-height: 1.5;
}

/* Жирный текст в статье */
.article-body strong {
    color: #000;
    font-weight: 700;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ "АНОНИМНЫЙ ИСТОЧНИК ИЗ АКТАНЫШСКОГО РАЙОНА" ========== */
/* Добавить в файл style.css сайта fattahov-engel.ru */

/* ----- Общие стили страницы (переопределения/дополнения) ----- */
.page-article {
    max-width: 900px;
    width: 100%;
    background-color: white;
    padding: 48px 56px;
    margin: 24px auto 40px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #edeae5;
}

/* ----- Мета-информация статьи (дата, статус) ----- */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #5f6a72;
    border-bottom: 1px solid #eae3dc;
    padding-bottom: 18px;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.post-date {
    background-color: #f1ede8;
    padding: 6px 16px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 13px;
}

/* ----- Заголовки ----- */
.article-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #0a1e2b;
    letter-spacing: -0.5px;
    border-left: 5px solid #b5343a;
    padding-left: 24px;
}

/* ----- Ведущий абзац (жирный вводный) ----- */
.article-lead {
    font-size: 20px;
    font-weight: 600;
    color: #1e3f53;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    border-left: 4px solid #8a6e4b;
    padding-left: 22px;
    background-color: #fbf9f7;
    padding: 20px 28px;
    border-radius: 0 8px 8px 0;
}

/* ----- Цитаты (анонимные источники, свидетели) ----- */
.blockquote-source {
    background-color: #f4f1ed;
    padding: 28px 32px;
    margin: 36px 0;
    border-left: 6px solid #8e6b4a;
    font-size: 19px;
    font-style: italic;
    color: #1e3a47;
    font-family: 'Georgia', serif;
    border-radius: 0 12px 12px 0;
}

.blockquote-source p {
    margin-bottom: 12px;
    font-size: 19px;
}

.blockquote-footer {
    font-size: 16px;
    margin-bottom: 0;
    font-style: normal;
    color: #4f5f69;
}

/* ----- Блоки аналитических вставок ("Мы это уже проходили") ----- */
.insight-block {
    background-color: #f1ebe6;
    padding: 24px 32px;
    margin: 40px 0;
    border-left: 5px solid #4b6f8a;
    font-weight: 500;
    border-radius: 0 14px 14px 0;
}

.insight-block strong {
    color: #12384a;
}

.insight-title {
    font-size: 1.2em;
    font-weight: 700;
}

/* ----- Акцентные блоки (коллауты) ----- */
.callout-block {
    background-color: #eae1d7;
    padding: 28px 32px;
    margin: 40px 0 32px;
    font-size: 20px;
    font-weight: 600;
    color: #1e2f3b;
    border-left: 6px solid #a1312d;
    font-family: 'Inter', sans-serif;
}

/* ----- Блок с вопросами ----- */
.question-block {
    background-color: #f8f2ea;
    padding: 28px 32px;
    margin: 44px 0 32px;
    border-radius: 0 16px 16px 0;
    border-left: 6px solid #8a3c3c;
}

.question-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a293b;
}

.question-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 19px;
    align-items: baseline;
    font-family: 'Georgia', serif;
}

.question-mark {
    color: #a4332c;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
}

/* ----- Блок информации об источнике ----- */
.source-info-block {
    background-color: #f7f3ef;
    padding: 22px 28px;
    margin: 32px 0 24px;
    border-left: 5px solid #7a6a5c;
    font-size: 17px;
    border-radius: 0;
}

.source-info-block p {
    margin-bottom: 8px;
}

.source-info-block p:last-child {
    margin-bottom: 0;
}

.source-label {
    font-weight: 700;
    margin-bottom: 8px;
}

/* ----- Подпись/авторский блок ----- */
.signature-block {
    margin-top: 48px;
    padding: 24px 32px;
    background-color: #f9f7f4;
    border: 1px solid #dbd2c9;
    font-style: normal;
    font-family: 'Georgia', serif;
    color: #1d2c3a;
}

.signature-author {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.signature-text {
    font-size: 16px;
    color: #3a4f5e;
}

/* ----- Футер источника (внизу статьи) ----- */
.source-footer {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 2px solid #e0d7cf;
    font-size: 16px;
    color: #4b5f6b;
    font-family: 'Inter', sans-serif;
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
}

.source-badge {
    background: #eae1d9;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* ----- Нижняя дата публикации ----- */
.publish-footer {
    margin-top: 24px;
    font-size: 14px;
    color: #6a7b86;
    border-top: 1px solid #ece4dd;
    padding-top: 20px;
    text-align: left;
}

/* ----- Ссылки в стиле сайта ----- */
.article-link {
    font-weight: 700;
    color: #0c364a;
    text-decoration: none;
    border-bottom: 2px solid #c5b2a0;
    transition: border-bottom 0.2s ease;
}

.article-link:hover {
    border-bottom: 2px solid #912b2b;
}

/* ----- Адаптация для мобильных устройств ----- */
@media (max-width: 700px) {
    .page-article {
        padding: 32px 24px;
        margin: 16px auto 32px auto;
    }
    
    .article-title {
        font-size: 28px;
        padding-left: 18px;
    }
    
    .article-lead {
        font-size: 18px;
        padding: 16px 20px;
    }
    
    p {
        font-size: 17px;
    }
    
    .blockquote-source {
        padding: 20px 24px;
    }
    
    .question-block {
        padding: 20px 24px;
    }
    
    .question-item {
        font-size: 17px;
    }
    
    .source-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ----- Стили для обычных параграфов внутри статьи (переопределение базовых) ----- */
.page-article p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #2a3642;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
}

.page-article h2 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 44px;
    margin-bottom: 20px;
    color: #153e5a;
    border-bottom: 1px solid #dad3cb;
    padding-bottom: 8px;
}

/* ----- Стиль для жирного акцентного текста внутри параграфа ----- */
.page-article .emphasis {
    font-weight: 700;
    color: #1a434e;
    font-size: 1.25em;
}

/* ----- Бейдж "Эксклюзивно" / "Анонимно" (верхний) ----- */
.exclusive-badge {
    display: inline-block;
    background-color: #002b4a;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-family: 'Inter', 'Arial', sans-serif;
}
.article-container { max-width: 800px; margin: 0 auto; background-color: #fff; padding: 40px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .article-title { font-size: 2.2em; line-height: 1.3; color: #2c3e50; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 15px; }
        .article-meta { color: #7f8c8d; font-size: 0.95em; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
        .article-content p { margin-bottom: 1.5em; font-size: 1.1em; text-align: justify; }
        .article-content strong { color: #2c3e50; }
        .article-content h2 { color: #2c3e50; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; font-size: 1.6em; }
        .article-key-point { background-color: #f0f7ff; border-left: 4px solid #3498db; padding: 20px; margin: 25px 0; border-radius: 0 5px 5px 0; }
        .article-quote-block { border-left: 4px solid #e74c3c; padding: 20px; margin: 25px 0; font-style: italic; color: #555; background-color: #f9f9f9; border-radius: 0 5px 5px 0; }
        .article-facts-list { background-color: #fffde7; padding: 20px 20px 20px 40px; margin: 25px 0; border-radius: 5px; border: 1px solid #ffeaa7; }
        .article-facts-list li { margin-bottom: 10px; }
        .article-facts-list__title { font-weight: bold; color: #2c3e50; margin-bottom: 10px; list-style: none; margin-left: -20px; }
        .article-footer-message { font-size: 1.2em; margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; }
        .article-footer-message strong { color: #2c3e50; }
        @media (max-width: 768px) { .article-container { padding: 20px; } .article-title { font-size: 1.8em; } }
        
        
/* Өстәмә стильләр - шигъри битләр өчен */
.article-poetry-block {
    background-color: #f9f3e9;
    border-left: 4px solid #d4a373;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    color: #5a4a3a;
}

.article-tender-message {
    background-color: #fef5e7;
    padding: 30px;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #fad4a8;
    text-align: center;
}

.article-styled-list {
    background-color: #fff9f0;
    padding: 20px 20px 20px 40px;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #ecd9c6;
}

.article-styled-list li {
    margin-bottom: 10px;
    list-style-type: "🌸 ";
}
