/* ─── ARTICLE LAYOUT ─── */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 5% 100px;
    position: relative;
    z-index: 10;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
}

.article-category {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.article-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ─── CONTENT STYLES ─── */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.article-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 50px 0 20px;
    letter-spacing: 1px;
}

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

.article-content strong {
    color: var(--accent);
}

.article-featured-img {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-box {
    background: rgba(0, 229, 255, 0.05);
    border-left: 4px solid var(--accent);
    padding: 30px;
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
    font-style: italic;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 40px;
}

.back-to-blog:hover {
    color: var(--accent);
}

/* ─── NEW STORY STYLES (Added) ─── */
.step-item {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.8;
}

.step-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.in-text-img {
    width: 100%;
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.in-text-img img {
    width: 100%;
    display: block;
}

.img-caption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 15px;
}