/* ======================
   BLOG ARTICLE STYLES
   ====================== */

   .blog-article {
    background: rgba(10, 26, 42, 0.3);
    border: 1px solid var(--vault-border);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}


.article-header {
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--vault-accent);
    opacity: 0.5;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
}

.meta-category {
    color: var(--vault-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-date {
    color: var(--vault-silver);
    opacity: 0.7;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--vault-text);
    position: relative;
    padding-right: 2rem;
}

.article-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--vault-silver);
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(26, 58, 90, 0.5);
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--vault-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-code {
    font-size: 1rem;
    color: var(--vault-silver);
    opacity: 0.6;
}

.vault-quote {
    border-left: 3px solid var(--vault-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(10, 26, 42, 0.5);
    position: relative;
}

.vault-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 4rem;
    font-family: serif;
    color: var(--vault-accent);
    opacity: 0.1;
    line-height: 1;
}

.vault-quote p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.vault-quote cite {
    font-style: normal;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: var(--vault-silver);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.comparison-item {
    padding: 1.5rem;
    border: 1px solid var(--vault-border);
    transition: all 0.3s ease;
}

.danger-item {
    background: rgba(90, 26, 42, 0.3);
    border-color: #5a1a2a;
}

.danger-item h4 {
    color: #ff5555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-item {
    background: rgba(26, 90, 42, 0.3);
    border-color: #1a5a2a;
    grid-column: 1 / -1;
}

.solution-item h4 {
    color: #55ff55;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Conclusion Section */
.conclusion-section {
    border-bottom: none;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    margin-top: 3rem;
}

.conclusion-section h2 {
    justify-content: center;
}

.article-cta {
    margin-top: 2rem;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vault-border);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tag-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: var(--vault-silver);
}

.tag {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--vault-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 240, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-article {
        padding: 2rem 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .section-code {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}