/* Современные стили для блога */

/* === ОСНОВНОЙ КОНТЕЙНЕР БЛОГ-ПОСТА === */
.blog-post {
    max-width: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.blog-post .card-body {
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* === ИЗОБРАЖЕНИЕ БЛОГ-ПОСТА === */
.blog-post__image {
    float: right;
    max-width: 400px;
    width: auto;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin: 2.5rem 2.5rem 1rem 2rem;
    border-radius: 8px;
    display: block;
}

/* === КОНТЕНТ БЛОГ-ПОСТА === */
.blog-post-content {
    padding: 2.5rem;
    line-height: 1.7;
    font-size: 16px;
    color: #334155;
}

/* === ТИПОГРАФИКА === */
.blog-post-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 2rem 0 1rem 0;
    color: #1e293b;
    letter-spacing: -0.02em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem 0;
    color: #334155;
}

.blog-post-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.25rem 0 0.5rem 0;
    color: #475569;
}

.blog-post-content p {
    margin: 0 0 1.25rem 0;
    line-height: 1.7;
    font-size: 16px;
    color: #334155;
}

.blog-post-content p:last-child {
    margin-bottom: 0;
}

/* === СПИСКИ === */
.blog-post-content ul,
.blog-post-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.blog-post-content ul li,
.blog-post-content ol li {
    margin: 0.5rem 0;
    line-height: 1.7;
    color: #334155;
}

.blog-post-content ul li {
    list-style-type: none;
    position: relative;
}

.blog-post-content ul li:before {
    content: "•";
    color: #206bc4;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.blog-post-content ol li {
    padding-left: 0.25rem;
}

/* === ТАБЛИЦЫ === */
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-post-content table thead th {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: #718096;
}

.blog-post-content table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.blog-post-content table tbody tr:hover {
    background-color: #f8fafc;
}

.blog-post-content table tbody tr:last-child {
    border-bottom: none;
}

.blog-post-content table tbody td {
    padding: 1rem 1.25rem;
    font-size: 14px;
    color: #475569;
    vertical-align: top;
    border: none;
}

.blog-post-content table tbody td:first-child {
    font-weight: 500;
    color: #334155;
}

/* === ЦИТАТЫ И БЛОКИ === */
.blog-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid #206bc4;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

.blog-post-content code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e11d48;
}

.blog-post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* === РАЗДЕЛИТЕЛИ === */
.blog-post-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 3rem 0;
}

/* === ССЫЛКИ === */
.blog-post-content a {
    color: #206bc4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-post-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* === ИЗОБРАЖЕНИЯ В ТЕКСТЕ === */
.blog-post-content img:not(.blog-post__image) {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ИСПРАВЛЕНИЕ ДЛЯ CKEDITOR RESIZED IMAGES */
.blog-post-content .image_resized {
    max-width: none !important;
}

.blog-post-content .image_resized img {
    max-width: none !important;
    width: 100% !important;
}

.blog-post-content figure {
    margin: 2rem 0 !important;
    text-align: center;
}

/* Особое правило для figure с inline стилями width */
.blog-post-content figure[style*="width"] {
    max-width: none !important;
}

/* === ПОДДЕРЖКА РАЗМЕРОВ ИЗОБРАЖЕНИЙ CKEDITOR === */
/* Переопределяем глобальное правило max-width: 100% для изображений с указанным размером */
.blog-post-content img[style*="width"] {
    max-width: none !important;
}

/* Поддержка всех возможных форматов размеров */
.blog-post-content img[style*="width: 25%"] {
    width: 25% !important;
    max-width: 25% !important;
}

.blog-post-content img[style*="width: 50%"] {
    width: 50% !important;
    max-width: 50% !important;
}

.blog-post-content img[style*="width: 75%"] {
    width: 75% !important;
    max-width: 75% !important;
}

/* Поддержка конкретных пиксельных размеров */
.blog-post-content img[style*="width:"] {
    max-width: none !important;
}

/* Поддержка всех вариантов процентных размеров в figure */
.blog-post-content figure[style*="width"][style*="%"] {
    max-width: none !important;
}

.blog-post-content figure[style*="width"][style*="%"] img {
    max-width: none !important;
    width: 100% !important;
}

/* Классы выравнивания CKEditor */
.blog-post-content .image-style-align-left,
.blog-post-content figure.image-style-align-left {
    float: left;
    margin-right: 1.5rem;
    margin-left: 0;
}

.blog-post-content .image-style-align-right,
.blog-post-content figure.image-style-align-right {
    float: right;
    margin-left: 1.5rem;
    margin-right: 0;
}

.blog-post-content .image-style-align-center,
.blog-post-content figure.image-style-align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

/* Поддержка CKEditor side стиля */
.blog-post-content .image-style-side,
.blog-post-content figure.image-style-side {
    float: right;
    margin-left: 1.5rem;
    max-width: 50%;
}

.blog-post-content figcaption {
    margin-top: 0.75rem;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

/* Clearfix для контейнера с плавающими изображениями */
.blog-post-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Дополнительная поддержка для inline стилей */
.blog-post-content img[style*="width"][style*="%"] {
    max-width: none !important;
}

.blog-post-content figure[style*="width"][style*="%"] {
    max-width: none !important;
}

/* Убираем отступы у figure если у него есть классы выравнивания */
.blog-post-content figure.image-style-align-left,
.blog-post-content figure.image-style-align-right,
.blog-post-content figure.image-style-side {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* КРИТИЧЕСКИ ВАЖНЫЕ ПРАВИЛА - ДОЛЖНЫ БЫТЬ В КОНЦЕ ФАЙЛА */
/* Переопределяем ВСЕ правила для изображений с размерами */

/* Основное правило для figure с inline стилем width */
/* Более специфичное правило чем .blog-post figure */
.blog-post .blog-post-content figure.image_resized[style*="width"] {
    max-width: none !important;
    width: inherit !important;
    /* НЕ переопределяем width, чтобы сохранить размер из style */
}

.blog-post-content figure.image_resized[style*="width"] {
    max-width: none !important;
    /* НЕ переопределяем width, чтобы сохранить размер из style */
}

/* Для изображений внутри figure с размером */
.blog-post-content figure.image_resized[style*="width"] img {
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
}

/* Дополнительная поддержка для всех figure с width */
/* Переопределяем .blog-post figure { width: auto !important; } */
.blog-post .blog-post-content figure[style*="width"] {
    max-width: none !important;
    width: inherit !important;
}

.blog-post-content figure[style*="width"] {
    max-width: none !important;
}

.blog-post-content figure[style*="width"] img {
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
}

/* Дополнительные правила для поддержки width атрибута */
.blog-post-content img[width] {
    max-width: none !important;
}

.blog-post-content figure img[width] {
    max-width: none !important;
}

/* Поддержка style width в любом формате */
.blog-post-content *[style*="width:"] {
    max-width: none !important;
}

.blog-post-content *[style*="width: "] {
    max-width: none !important;
}

/* ФИНАЛЬНОЕ ПЕРЕОПРЕДЕЛЕНИЕ - МАКСИМАЛЬНАЯ СПЕЦИФИЧНОСТЬ */
/* Переопределяем .blog-post figure { width: auto !important; } */
body .blog-post .blog-post-content figure[style*="width"] {
    width: inherit !important;
    max-width: none !important;
}

/* Дублируем с еще большей специфичностью */
html body .blog-post .blog-post-content figure.image_resized[style*="width"] {
    width: inherit !important;
    max-width: none !important;
}

/* И еще более агрессивно */
html body .blog-post .blog-post-content figure[style*="width:"] {
    width: inherit !important;
    max-width: none !important;
}

/* ПОСЛЕДНЯЯ ПОПЫТКА - СУПЕР АГРЕССИВНО */
/* Извлекаем width из style атрибута через CSS переменные */
.blog-post-content figure.image_resized[style*="width:"] {
    /* Переопределяем ВСЕ возможные конфликтующие правила */
    width: revert !important;
    max-width: none !important;
    min-width: auto !important;
}

/* Для ЛЮБЫХ размеров в процентах из админки */
.blog-post-content figure.image_resized[style*="%"] {
    width: inherit !important;
    max-width: none !important;
    margin: 0 auto !important;
}

/* === АДАПТИВНЫЙ ДИЗАЙН === */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
        font-size: 15px;
    }
    
    .blog-post-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .blog-post-content h3 {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .blog-post__image {
        float: none;
        max-width: 100%;
        max-height: 250px;
        margin: 0 auto 1.5rem auto;
        display: block;
    }
    
    .blog-post-content table {
        font-size: 12px;
        margin: 1.5rem 0;
    }
    
    .blog-post-content table thead th,
    .blog-post-content table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .blog-post-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        padding: 1rem;
    }
    
    .blog-post-content h1 {
        font-size: 1.375rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.125rem;
    }
    
    .blog-post__image {
        float: none;
        max-width: 100%;
        max-height: 200px;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
    .blog-post-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* === ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ === */
.blog-post-meta {
    padding: 0 2.5rem 2rem;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
    padding-top: 2rem;
}

.blog-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.blog-post-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-post-tag:hover {
    background: #e2e8f0;
    color: #334155;
}

/* === АНИМАЦИИ === */
.blog-post .card-body {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SCROLL BEHAVIOR === */
html {
    scroll-behavior: smooth;
}

/* === ACCESSIBILITY === */
.blog-post-content a:focus {
    outline: 2px solid #206bc4;
    outline-offset: 2px;
}

.blog-post-content button:focus {
    outline: 2px solid #206bc4;
    outline-offset: 2px;
}
