/* ============================================================
   BLOG ARTICLE — стили в стиле страницы пакетов
   ============================================================ */

/* ===== HERO ===== */
.blog-article-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #3b3b3b 0%, #000000 50%, #3b3b3b 100%);
    overflow: hidden;
    color: white;
    text-align: center;
}

.blog-article-hero::before,
.blog-article-hero::after {
    display: none;
}

.blog-article-hero__label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--warm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
    font-family: 'Open Sans Condensed', sans-serif;
}

.blog-article-hero__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 6vw, 64px);
    color: white;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.1;
}

.blog-article-hero__divider {
    width: 60px;
    height: 2px;
    background: var(--warm);
    margin: 24px auto;
}

.blog-article-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-article-hero__meta span {
    gap: 6px;
}


/* ===== СТАТЬЯ ===== */
.blog-article {
    padding: 100px 0;
    background: var(--white);
}

.blog-article__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-article__intro-text {
    font-size: 20px;
    color: rgba(59, 59, 59, 0.85);
    line-height: 1.8;
    font-style: italic;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(187, 168, 153, 0.2);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.blog-article__intro-text::before {
    content: '"';
    font-family: 'Cormorant', serif;
    font-size: 80px;
    color: var(--warm);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}


/* ===== СЕКЦИЯ ===== */
.blog-article__section {
    margin-bottom: 50px;
}

.blog-article__section:last-child {
    margin-bottom: 0;
}

.blog-article__subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--main-color);
    margin: 0 0 30px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-article__subtitle em {
    font-style: italic;
    color: var(--accent-light);
}


/* ===== ЧЕКЛИСТ ===== */
.blog-article__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-article__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(59, 59, 59, 0.08);
    transition: all 0.3s ease;
}

.blog-article__checklist li:last-child {
    border-bottom: none;
}

.blog-article__checklist li:hover {
    padding-left: 10px;
}

.blog-article__check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(59, 59, 59, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.blog-article__check-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--main-color);
    transition: all 0.3s ease;
}

.blog-article__checklist li:hover .blog-article__check-icon {
    background: var(--main-color);
    transform: scale(1.1);
}

.blog-article__checklist li:hover .blog-article__check-icon svg {
    fill: var(--secondary);
}

.blog-article__check-text {
    font-size: 18px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.8;
}


/* ===== ЗАКЛЮЧЕНИЕ ===== */
.blog-article__conclusion {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.blog-article__conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--warm));
}

.blog-article__conclusion p {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.9;
    margin: 0 0 16px;
}

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

.blog-article__conclusion .highlight {
    font-weight: 600;
    color: var(--main-color);
}

.blog-article__ps {
    display: block;
    margin-top: 20px;
    font-style: italic;
    color: var(--accent-light);
}


/* ===== АВТОР ===== */
.blog-article__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(59, 59, 59, 0.08);
}

.blog-article__author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--warm);
}

.blog-article__author-info {
    display: flex;
    flex-direction: column;
}

.blog-article__author-name {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    color: var(--main-color);
    font-weight: 600;
}

.blog-article__author-link {
    font-size: 14px;
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-article__author-link:hover {
    color: var(--main-color);
}


/* ===== CTA ===== */
.blog-article-cta {
    padding: 100px 0;
    background: url(../../assets/images/feedback.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.blog-article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-article-cta__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--secondary);
    margin: 0 0 16px;
    font-weight: 600;
    position: relative;
}

.blog-article-cta__text {
    font-size: 18px;
    color: rgba(222, 216, 216, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.blog-article-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    font-family: inherit;
}

.blog-article-cta__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--main-color);
}

.blog-article-cta__btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 767px) {
    .blog-article-hero {
        padding: 140px 0 80px;
    }

    .blog-article {
        padding: 70px 0;
    }

    .blog-article-cta {
        padding: 60px 0;
    }

    .blog-article__intro-text {
        font-size: 18px;
        padding: 0 0 30px;
    }

    .blog-article__conclusion {
        padding: 30px 24px;
    }

    .blog-article-hero__meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== ГАЛЕРЕЯ ===== */
.blog-article-gallery {
    padding: 100px 0;
    background: var(--bg);
}

.blog-article-gallery__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 16px;
    font-weight: 600;
}

.blog-article-gallery__subtitle {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
    margin: 0 0 50px;
}

.blog-article-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-article-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.blog-article-gallery__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .blog-article-gallery {
        padding: 70px 0;
    }

    .blog-article-gallery__grid {
        grid-template-columns: 1fr;
    }
}

