/* 
* КриптоРегуляция 2025
* Стили для блога о регулировании криптовалют в 2025 году
* 2024
*/

/* ===== ПЕРЕМЕННЫЕ И СБРОС СТИЛЕЙ ===== */
:root {
    /* Основные цвета */
    --primary-color: #3b5af5;
    --primary-light: #5e7bf6;
    --primary-dark: #2942c7;
    --secondary-color: #6553f5;
    --accent-color: #51db89;
    
    /* Нейтральные цвета */
    --dark: #121827;
    --dark-2: #1f2937;
    --gray-1: #374151;
    --gray-2: #4b5563;
    --gray-3: #6b7280;
    --gray-4: #9ca3af;
    --gray-5: #d1d5db;
    --gray-6: #e5e7eb;
    --light: #f3f4f6;
    --white: #ffffff;
    
    /* Функциональные цвета */
    --error: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #3b82f6;
    
    /* Типографика */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Размеры и отступы */
    --container-width: 1200px;
    --container-padding: 20px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Тени */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.1);
    
    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Сброс стилей */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--gray-1);
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

ul, ol {
    margin-bottom: 1.6rem;
    padding-left: 2rem;
}

blockquote {
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
    background-color: var(--gray-6);
    border-radius: var(--radius-sm);
}

blockquote p {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--gray-1);
}

blockquote cite {
    display: block;
    font-size: 1.4rem;
    color: var(--gray-2);
}

figure {
    margin: 2.5rem 0;
}

figcaption {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    color: var(--gray-3);
    text-align: center;
}

/* ===== УТИЛИТЫ ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    text-decoration: none;
    line-height: 1.4;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--light);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 6rem;
    height: 0.4rem;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: var(--radius-sm);
}

/* ===== ХЕДЕР И НАВИГАЦИЯ ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo img {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: var(--gray-1);
    font-size: 1.6rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: var(--primary-color);
    border-radius: var(--radius-sm);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--gray-1);
    font-size: 2.4rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 8rem 2rem 2rem;
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul li a {
        font-size: 1.8rem;
    }
    
    nav ul li a.active::after {
        bottom: -0.4rem;
    }
}

/* ===== ГЛАВНАЯ СТРАНИЦА ===== */
/* Hero секция */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f6f8ff 0%, #e3e9ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--gray-2);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 3.6rem;
    }
}

/* Блок с цитатой */
.quote-block {
    padding: 5rem 0;
    background-color: var(--white);
}

.quote {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    width: 4.8rem;
    height: 4.8rem;
    color: var(--primary-light);
    opacity: 0.2;
    margin: 0 auto 2rem;
}

.quote h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.quote p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quote-author {
    font-weight: 600;
    color: var(--gray-2);
}

/* Секция с постами */
.posts {
    padding: 8rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.post-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image {
    height: 20rem;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-2);
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more .arrow {
    transition: transform var(--transition-fast);
}

.read-more:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Чеклист */
.checklist-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.checklist {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checklist-item input[type="checkbox"] {
    appearance: none;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    margin-right: 1rem;
    cursor: pointer;
    position: relative;
}

.checklist-item input[type="checkbox"]:checked {
    background-color: var(--primary-color);
}

.checklist-item input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
}

.checklist-item label {
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== ФУТЕР ===== */
footer {
    background-color: var(--dark-2);
    color: var(--light);
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo img {
    width: 6rem;
    height: 6rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--gray-4);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-links h4, .footer-social h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--gray-4);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== О НАС ===== */
.page-header {
    background: linear-gradient(135deg, #f6f8ff 0%, #e3e9ff 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h2 {
    font-size: 3.6rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin: 0 auto;
    color: var(--gray-2);
}

.about-section {
    padding: 6rem 0;
}

.about-intro {
    max-width: 80rem;
    margin: 0 auto 6rem;
    text-align: center;
}

.about-intro h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.about-intro p {
    font-size: 1.7rem;
}

.team-section {
    margin-bottom: 6rem;
}

.team-section h3 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
    text-align: center;
    padding-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.team-card h3 {
    font-size: 2rem;
    margin: 1.5rem 0 0.5rem;
}

.team-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.team-card p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--gray-2);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.about-mission {
    margin-top: 6rem;
}

.about-mission h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mission-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mission-text {
    flex: 1;
}

.mission-text p {
    font-size: 1.7rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .mission-content {
        flex-direction: column;
    }
    
    .mission-image, .mission-text {
        width: 100%;
    }
}

/* CTA секция */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-dark);
    font-size: 1.7rem;
    padding: 1.2rem 3rem;
}

.cta-section .btn:hover {
    background-color: var(--light);
    transform: translateY(-3px);
}

/* ===== КОНТАКТЫ ===== */
.contact-section {
    padding: 6rem 0;
}

.contact-container {
    display: flex;
    gap: 6rem;
    margin-bottom: 6rem;
}

.contact-info {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    margin-right: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.info-text p {
    margin-bottom: 0;
    color: var(--gray-2);
}

.info-text p a {
    color: var(--gray-2);
    transition: color var(--transition-fast);
}

.info-text p a:hover {
    color: var(--primary-color);
}

.social-contact h4 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
}

.contact-form-container {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--gray-5);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.required {
    color: var(--error);
}

.map-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.map-container h3 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map {
    height: 40rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Модальное окно с благодарностью */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    max-width: 50rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--gray-3);
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--gray-1);
}

.thank-you-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    width: 6.4rem;
    height: 6.4rem;
    color: var(--success);
}

.thank-you-modal h3 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.thank-you-modal p {
    margin-bottom: 3rem;
    font-size: 1.7rem;
}

/* ===== СТРАНИЦА БЛОГА И ПОСТА ===== */
.post-content {
    padding: 6rem 0;
}

.blog-post {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.post-header {
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--gray-3);
    font-size: 1.4rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.post-featured-image {
    margin: 0 -3rem 3rem;
}

.post-featured-image img {
    width: 100%;
}

.post-body {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--gray-1);
}

.post-body h2 {
    font-size: 2.8rem;
    margin: 4rem 0 2rem;
}

.post-body h3 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
}

.post-body img {
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
}

.post-body ul, .post-body ol {
    margin: 1.5rem 0 2.5rem;
}

.post-body li {
    margin-bottom: 0.8rem;
}

.post-tags {
    margin: 4rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.tags-label {
    font-weight: 600;
    color: var(--gray-2);
}

.tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--light);
    color: var(--gray-2);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.tag:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.post-share {
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    font-weight: 600;
    color: var(--gray-2);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--gray-2);
    transition: all var(--transition-fast);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}

.post-navigation .btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.related-posts {
    padding: 6rem 0;
    background-color: var(--light);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.related-post-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-post-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.related-post-content {
    padding: 2rem;
}

.related-post-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 3rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ПЛАШКА С COOKIE ===== */
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-2);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 9000;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-btn.customize {
    background-color: var(--dark);
    color: var(--white);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--gray-4);
}

.cookie-more {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-4);
    font-size: 1.3rem;
}

.cookie-more:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-content p {
        width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 991px) {
    html {
        font-size: 60%;
    }
    
    .hero-content h2 {
        font-size: 3.6rem;
    }
    
    .blog-post {
        padding: 2rem;
    }
    
    .post-featured-image {
        margin: 0 -2rem 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .posts, 
    .about-section, 
    .contact-section, 
    .post-content {
        padding: 4rem 0;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .post-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-header h1 {
        font-size: 2.8rem;
    }
    
    .post-body h2 {
        font-size: 2.4rem;
    }
    
    .post-body h3 {
        font-size: 2rem;
    }
    
    .quote {
        padding: 2rem;
    }
    
    .checklist {
        padding: 2rem;
    }
}
