/* article.css - Styles for Article Detail Page */
.article-page-body {
    background-color: #1C1A29;
    color: #ffffff;
}

.article-container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Breadcrumbs */
.article-breadcrumb {
    background: #1C1A29;
    padding-top: 166px;          /* clears the absolute header */
    padding-bottom: 18px;
    font-size: 16px;
    color: rgba(255, 248, 234, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.article-breadcrumb a {
    color: rgba(255, 248, 234, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.article-breadcrumb a:hover {
    color: #FDC667;
}
.article-breadcrumb__sep {
    color: rgba(255, 248, 234, 0.3);
    margin: 0 8px;
}
.article-breadcrumb__current {
    color: #ffffff;
    font-weight: 400;
}

/* Main Article Box */
.article-detail-section {
    padding-bottom: 80px;
}

.article-meta {
    font-size: 14px;
    color: #FDC667;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
}

.article-main-image-wrap {
    width: 100%;
    max-height: 550px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(253, 198, 103, 0.1);
}

.article-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.7;
    color: #D1D5DB;
}

.article-content-body p {
    margin-bottom: 24px;
}

.article-content-body strong {
    color: #ffffff;
}

.article-content-body h2, .article-content-body h3 {
    color: #ffffff;
    font-weight: 700;
    margin: 40px 0 20px 0;
    font-size: clamp(20px, 2.5vw, 28px);
}

.article-content-body ul, .article-content-body ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content-body li {
    margin-bottom: 12px;
}

/* Procedures section embedding adjustment */
.article-procedures-section {
    background-color: #F8F5EE;
    color: #050409;
    padding: 100px 0;
}

.article-procedures-section .procedures__title {
    color: #050409 !important;
}

.article-procedures-section .procedures__subtitle {
    color: #555555 !important;
}

/* Reviews and FAQ margins */
.article-reviews-section {
    background-color: #1C1A29;
    padding: 100px 0;
}

.article-faq-section {
    background-color: #1C1A29;
    padding: 100px 0;
}
