.article-page {
    padding: 160px 0 100px;
    background: var(--bg-main);
    min-height: 100vh;
}

.article-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: 0.3s var(--ease);
    font-size: 0.95rem;
}

.back-btn:hover {
    transform: translateX(-8px);
    filter: brightness(1.2);
}

.post-header .hero-badge {
    background: var(--secondary-dim);
    color: #c794ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(112, 0, 255, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
}

.post-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 50px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-content {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.15rem;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 50px 0 25px;
    font-weight: 700;
}

.post-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.post-content li::before {
    content: "—";
    position: absolute;
    left: -20px;
    color: var(--primary);
}

.cta-block {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-block h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .article-page {
        padding-top: 120px;
    }

    .post-header h1 {
        font-size: 2.2rem;
    }

    .post-main-img {
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .cta-block {
        padding: 30px 20px;
    }
}