/* Blog Banner */
.blog-banner {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
}

.blog-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-item h3 {
    margin: 0 !important;
}

/* Blog Hero */
.blog-hero {
    padding: 60px 0 30px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #b8c0d3;
}

/* Blog Grid */
.blog-grid-section {
    padding: 30px 0 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #181F2B;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(218, 57, 79, 0.15);
    color: #da394f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #da394f;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #b8c0d3;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-link {
    color: #da394f;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    gap: 10px;
}

/* Article Layout */
.article-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #b8c0d3;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

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

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

.breadcrumb-sep {
    font-size: 0.65rem;
    color: #555;
}

/* Article */
.article-header {
    margin-bottom: 24px;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-top: 12px;
}

.article-figure {
    margin: 0 0 32px;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Article Body */
.article-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #ccc;
    margin-bottom: 18px;
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(218, 57, 79, 0.3);
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

/* Disclaimer */
.article-disclaimer {
    margin-top: 36px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid #da394f;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: #b8c0d3;
    line-height: 1.6;
}

.article-disclaimer strong {
    color: #fff;
}

/* Back link */
.article-back {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .blog-hero h1 {
        font-size: 1.7rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-body h2 {
        font-size: 1.15rem;
    }
}