:root {
    --article-text: #1a1a1a;
    --brand-navy: #0a1128;
    --brand-gold: #d4af37;
}

/* Article Hero */
.article-hero {
    padding-top: 180px;
    padding-bottom: 150px;
    background-color: var(--brand-navy);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 15, 30, 0.75), rgba(10, 15, 30, 0.95));
    z-index: 1;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    max-width: 1100px;
    margin: 0 auto 20px;
    color: var(--brand-gold);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Article Container */
.article-wrapper {
    max-width: 1000px;
    margin: -100px auto 100px;
    background: white;
    padding: 80px;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .article-wrapper {
        padding: 40px 20px;
        margin-top: -60px;
    }
}

/* Content Typography */
.article-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #222;
    font-weight: 600;
    margin-bottom: 50px;
    border-inline-start: 6px solid var(--brand-gold);
    padding-inline-start: 30px;
}

.content-body {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--article-text);
}

.content-body h2 {
    font-size: 2.2rem;
    color: var(--brand-navy);
    margin: 70px 0 30px;
    font-weight: 800;
    position: relative;
}

.content-body h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--brand-gold);
}

body[dir="rtl"] .content-body h2::after {
    left: auto;
    right: 0;
}

.content-body h3 {
    font-size: 1.7rem;
    color: #000;
    margin: 50px 0 25px;
    font-weight: 700;
}

.content-body p,
.content-body li {
    margin-bottom: 30px;
    color: var(--article-text);
}

/* Info Card */
.info-card {
    background: #fdfaf3;
    border-inline-start: 8px solid var(--brand-gold);
    padding: 40px;
    border-radius: 4px;
    margin: 50px 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 15px;
    position: relative;
    padding-inline-start: 25px;
}

.info-card li::before {
    content: '♦';
    color: var(--brand-gold);
    position: absolute;
    left: 0;
}

body[dir="rtl"] .info-card li::before {
    left: auto;
    right: 0;
}

/* Call to Action */
.cta-bottom {
    text-align: center;
    background: var(--brand-navy);
    color: white;
    padding: 80px 40px;
    margin-top: 80px;
    border-radius: 4px;
}

.cta-bottom h2 {
    color: var(--brand-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-bottom p {
    color: white !important;
}

.cta-bottom .btn-primary {
    background-color: var(--brand-gold);
    color: var(--brand-navy);
    padding: 18px 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-top: 20px;
    transition: transform 0.3s;
}

.cta-bottom .btn-primary:hover {
    transform: translateY(-3px);
    background-color: white;
}