/* ===== BLOG-ALL.CSS ===== */
/* Полный набор стилей для блога - объединяет blog.css, article.css, 
   blogunique.css, enneagram.css, founderstory.css, mindpath16.css, 
   tips.css, badges.css, tree-view.css
*/

/* Использует переменные из main.css: 
   --white, --border-color, --primary-color, --light-text, 
   --background-light, --secondary-color, --border-radius-lg, 
   --border-radius-md, --border-radius-sm, --transition-base
*/

/* ===== ARTICLE.CSS - Базовые стили для статей ===== */
/* Заголовок статьи */
.article-header {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--white);
    padding: 40px 30px;
    position: relative;
}

.article-header::before {
    font-size: 60px;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.3;
}

/* Мета информация статьи */
.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-top: 10px;
}

/* Контент статьи */
.article-content {
    padding: 40px;
}

.article-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 30px 0 15px;
}

.article-content h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 25px 0 10px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Выделенный блок */
.highlight-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

/* Таблицы */
.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--background-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.feature-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.feature-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.feature-table tr:last-child td {
    border-bottom: none;
}

.feature-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 30%;
}

/* Блоки кода */
.code-block {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 30px 0;
}

/* Дерево проекта */
.tree-view {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
    margin: 30px 0;
    border: 2px solid var(--border-color);
}

.tree-view .folder {
    color: var(--primary-color);
    font-weight: bold;
}

.tree-view .file {
    color: var(--text-color);
}

.tree-view .comment {
    color: #999;
    font-style: italic;
}

.tree-view .folder::before {
    content: "📁 ";
    font-size: 14px;
}

.tree-view .file::before {
    content: "📄 ";
    font-size: 14px;
}

/* Блоки заметок */
.note-box {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin: 30px 0;
}

/* Блоки цитат */
.quote-box {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin: 40px 0;
    font-style: italic;
    font-size: 18px;
    text-align: center;
}

/* Бейджи */
.badge-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
}

/* CTA кнопки */
.cta-box {
    background: var(--background-light);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition-base);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Сетка для обратной связи */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Типографика для списков */
.article-content ul, 
.article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin: 10px 0;
}

/* Feedback Cards - для статей и блога */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feedback-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feedback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feedback-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feedback-card p {
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.5;
}

.feedback-card a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    word-break: break-all;
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feedback-card a:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Медиа-запросы для feedback cards */
@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feedback-card {
        padding: 20px;
    }
    
    .feedback-card h3 {
        font-size: 1.2em;
    }
}

/* ===== BLOG.CSS - Общие стили блога ===== */

/* Панель управления блогом */
.blog-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid #f0f0f0;
}

/* Поиск */
.search-container {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition-base);
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Фильтры */
.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    background: #f0f2ff;
    border: none;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.filter-chip:hover {
    background: #e0e4ff;
    transform: translateY(-2px);
}

.filter-chip.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Сортировка */
.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
}

.sort-select {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sort-select:hover {
    border-color: var(--primary-color);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Теги */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.tags-label {
    color: var(--light-text);
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}

.tag {
    background: #f5f5f5;
    color: var(--light-text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.tag.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tag.more-tag {
    background: transparent;
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    cursor: default;
}

.tag.more-tag:hover {
    transform: none;
    background: transparent;
}

/* Посты блога */
.blog-posts {
    display: grid;
    gap: 30px;
    min-height: 300px;
}

.post-meta {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.post-category {
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.post-tag {
    background: #e8f5e9;
    color: #4caf50;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.post-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.post-excerpt {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Состояния */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    color: var(--light-text);
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.no-results.hidden {
    display: none;
}

.clear-search {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.clear-search:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.posts-count {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 20px;
    text-align: right;
    font-weight: 500;
}

/* ===== BLOGUNIQUE.CSS - Страница-редиректор блога ===== */

.blog-redirect-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.blog-redirect-message {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
}

.blog-redirect-message h2 {
    color: #667eea;
    margin-bottom: 15px;
}

.blog-redirect-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blog-redirect-lang-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-redirect-lang-links a {
    color: #667eea;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #667eea;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-redirect-lang-links a:hover {
    background: #667eea;
    color: white;
}

/* ===== ENNEAGRAM ARTICLE STYLES ===== */

.type-section {
    margin-bottom: 20px;
}

.type-section-title {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
    font-size: 16px;
}

.type-traits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-traits li {
    background: #f0f2f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.integration-card.stress {
    background: #fff5f5;
    border-left: 4px solid #f56565;
}

.integration-card.growth {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.integration-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.arrow {
    font-size: 20px;
    margin-right: 8px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.subtype-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
}

.subtype-title {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
}

/* ===== FOUNDER STORY ARTICLE STYLES ===== */

.result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
}

.result-card:last-of-type {
    background: linear-gradient(135deg, #764ba2 0%, #9c27b0 100%);
}

.result-type {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.result-name {
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.result-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.profile-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    margin: 20px 0;
}

.profile-card h3 {
    margin-top: 0;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.badge-container--types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.trait-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.trait-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.trait-card h3 {
    margin-top: 0;
    color: #667eea;
}

.trait-card p {
    margin-bottom: 0;
    font-style: italic;
}

.type-item {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.type-number {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.type-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.type-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.badge-container--centered {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* ===== MINDPATH 16 ARTICLE STYLES ===== */

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.dimension-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
}

.dimension-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.preference-pair {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.preference {
    flex: 1;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius-xs);
    border: 1px solid var(--border-color);
}

.preference strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.type-card {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.type-code {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.type-title {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.section-subhead {
    font-size: 20px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.archetype-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* ===== TIPS ARTICLE STYLES ===== */

.tip-box {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
    border: 2px solid var(--border-color);
}

.tip-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-icon {
    font-size: 24px;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.dos-card {
    background: #e8f5e9;
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid #4caf50;
}

.donts-card {
    background: #ffebee;
    padding: 25px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid #f44336;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.custom-list li::before {
    position: absolute;
    left: 0;
}

.dos-card .custom-list li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
}

.donts-card .custom-list li::before {
    content: "✗";
    color: #f44336;
    font-weight: bold;
}

.myth-box {
    background: #fff3e0;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
    border-left: 4px solid #ff9800;
}

.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: step;
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.steps-list li::before {
    content: counter(step);
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* ===== ОБЩИЕ МЕДИА-ЗАПРОСЫ ===== */

@media (max-width: 768px) {
    /* Article */
    .article-header {
        padding: 30px 20px;
    }
    
    .article-header::before {
        font-size: 40px;
        top: 10px;
        right: 20px;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content h4 {
        font-size: 18px;
    }
    
    .feature-table td:first-child {
        width: 40%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog */
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group,
    .sort-group {
        justify-content: center;
    }
    
    .tags-container {
        justify-content: center;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    /* Enneagram */
    .type-grid {
        grid-template-columns: 1fr;
    }
    
    /* Founder Story */
    .result-type {
        font-size: 36px;
    }
    
    .result-name {
        font-size: 20px;
    }
    
    .result-description {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* MindPath 16 */
    .dimensions-grid,
    .type-grid {
        grid-template-columns: 1fr;
    }
    
    .preference-pair {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Tips */
    .dos-donts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Article */
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Blog */
    .post-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .search-input {
        padding: 12px 15px 12px 45px;
        font-size: 14px;
    }
    
    /* Blog Unique */
    .blog-redirect-message {
        padding: 20px;
    }
    
    .blog-redirect-message h2 {
        font-size: 20px;
    }
    
    .blog-redirect-lang-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
}