/* =====================================================
   ARTICLES PAGE STYLES
   ===================================================== */

.b2e-articles-hero {
    min-height: 36vh;
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 50%, #1340A5 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 48px;
}

.b2e-articles-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(103, 232, 249, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.b2e-articles-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.b2e-articles-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 0;
}

.b2e-articles-content {
    padding: 48px 0 80px;
    background: var(--b2e-gray-50, #f8fafc);
}

.b2e-articles-content .container {
    max-width: 960px;
}

.b2e-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.b2e-article-card {
    background: #fff;
    border: 1px solid rgba(15, 43, 91, 0.09);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 43, 91, 0.07);
    overflow: hidden;
}

.b2e-article-card-image {
    display: block;
    height: 140px;
    overflow: hidden;
    background: var(--b2e-gray-100, #f1f5f9);
}

.b2e-article-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b2e-article-card-content {
    padding: 22px;
}

.b2e-article-card time,
.b2e-article-date {
    color: #64748b;
    font-size: 0.9rem;
}

.b2e-article-card h2 {
    font-size: 1.3rem;
    line-height: 1.35;
    margin: 10px 0;
}

.b2e-article-card h2 a {
    color: #0f2b5b;
    text-decoration: none;
}

.b2e-article-card p {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 18px;
}

.b2e-article-card-link,
.b2e-article-translation {
    color: var(--b2e-primary, #1340a5);
    font-weight: 700;
    text-decoration: none;
}

.b2e-article-hero {
    background: linear-gradient(160deg, #0f2b5b, #1340a5);
    color: #fff;
    padding: 128px 0 52px;
}

.b2e-article-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    max-width: 900px;
}

.b2e-article-breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.b2e-article-breadcrumb a {
    color: #fff;
}

.b2e-article-content {
    background: var(--b2e-gray-50, #f8fafc);
    padding: 48px 0 80px;
}

.b2e-article-content .container {
    max-width: 880px;
}

.b2e-article-image {
    border-radius: 16px;
    display: block;
    height: 320px;
    margin: 0 auto 38px;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

.b2e-article-body {
    color: #1e293b;
    font-size: 1.08rem;
    line-height: 1.85;
}

.b2e-article-body h2,
.b2e-article-body h3 {
    color: #0f2b5b;
    font-weight: 800;
    line-height: 1.35;
    margin: 2.2em 0 0.7em;
}

.b2e-article-body h2 { font-size: 1.75rem; }
.b2e-article-body h3 { font-size: 1.35rem; }

.b2e-article-body p,
.b2e-article-body ul,
.b2e-article-body ol {
    margin: 0 0 1.25em;
}

.b2e-article-body li { margin-bottom: 0.4em; }

.b2e-article-body a {
    color: var(--b2e-primary, #1340a5);
    text-decoration: underline;
}

.b2e-article-translation {
    border-top: 1px solid #dbe4f0;
    display: inline-block;
    margin-top: 28px;
    padding-top: 24px;
}

@media (max-width: 991px) {
    .b2e-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .b2e-article-grid { grid-template-columns: 1fr; }
    .b2e-article-hero { padding-top: 110px; }
    .b2e-article-image { height: 200px; }
}
