/* ── BLOG ARTICLE PAGE ── */

/* ── BREADCRUMB (shared pattern with product-details) ── */

.breadcrumb {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding: 80px 120px 0;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #F0956A;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #555;
}

.breadcrumb-current {
    color: #555;
}

/* ── ARTICLE WRAPPER ── */

.article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    box-sizing: border-box;
}

.article-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 34px;
}

.article-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 34px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.35;
}

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

.article-meta-sep {
    color: #999;
}

.article-cover {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    margin-bottom: 44px;
}

/* ── ARTICLE BODY ── */

.article-body {
    display: flex;
    flex-direction: column;
}

.article-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 46px 0 20px;
    line-height: 1.4;
}

.article-body > .article-heading:first-child {
    margin-top: 0;
}

.article-p {
    font-family: Montserrat, sans-serif;
    font-size: 15.5px;
    font-weight: 300;
    color: #222;
    line-height: 1.9;
    letter-spacing: -0.1px;
    margin: 0 0 20px;
}

.article-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 4px auto 28px;
    object-fit: cover;
}

.article-list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-list li {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: #F0956A;
    border-radius: 50%;
}

/* ── CTA BOX ── */

.article-cta {
    margin: 20px 0 60px;
    padding: 44px 40px;
    background: #F5F4EF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.article-cta-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.article-cta-btn {
    display: inline-block;
    height: 43px;
    line-height: 43px;
    padding: 0 32px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background: #F8630D;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.2s;
}

.article-cta-btn:hover {
    opacity: 0.8;
}

/* ── RELATED ARTICLES ── */

.related-section {
    padding: 20px 120px 90px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0 0 40px;
    text-align: center;
}

.related-blog-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
}

/* ── RESPONSIVE ── */

@media (max-width: 1130px) {
    .breadcrumb {
        padding: 36px 20px 0;
    }

    .related-section {
        padding: 10px 20px 60px;
    }

    .related-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
}

@media (max-width: 700px) {
    .article-title {
        font-size: 26px;
    }

    .article-cover {
        height: 240px;
        margin-bottom: 30px;
    }

    .article-cta {
        padding: 34px 24px;
    }
}

@media (max-width: 480px) {
    .related-blog-grid {
        grid-template-columns: 1fr;
    }
}
