/* NBL Design - Single Article/Blog Post */
.nbl-article-profile {
    font-family: 'Inter', sans-serif;
    color: #1a1e23;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.nbl-article-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 120px 0 80px 0;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #e2272e;
}

.nbl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(16, 18, 22, 0.4), rgba(16, 18, 22, 0.95));
    z-index: 1;
}

.nbl-article-hero .nbl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.nbl-article-meta {
    margin-bottom: 20px;
}

.nbl-meta-category {
    background: #e2272e;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 4px;
    margin-right: 15px;
    letter-spacing: 1px;
}

.nbl-meta-date,
.nbl-meta-read-time {
    font-size: 1rem;
    color: #cbd5e0;
    font-weight: 500;
}

.nbl-meta-read-time {
    margin-left: 10px;
}

.nbl-article-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Oswald', sans-serif;
}

.nbl-article-author {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
}

.nbl-author-avatar {
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.nbl-author-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Article Body */
.nbl-layout-wrapper {
    overflow: hidden;
    /* Prevent Elementor stretched sections from breaking width */
}

.nbl-article-body-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.nbl-article-content {
    background: transparent;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.nbl-article-content h1,
.nbl-article-content h2,
.nbl-article-content h3,
.nbl-article-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 20px;
}

.nbl-article-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 15px;
}

.nbl-article-content h3 {
    font-size: 1.5rem;
}

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

.nbl-article-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.nbl-article-content blockquote {
    font-style: italic;
    font-size: 1.4rem;
    color: #0c3882;
    border-left: 5px solid #e2272e;
    padding-left: 20px;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0 8px 8px 0;
}

/* Tags */
.nbl-article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nbl-tags-label {
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nbl-article-tags a {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nbl-article-tags a:hover {
    background: #e2272e;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .nbl-article-hero {
        padding: 80px 0 60px 0;
    }

    .nbl-article-title {
        font-size: 2.2rem;
    }

    .nbl-article-content {
        padding: 30px 20px;
        font-size: 1.05rem;
    }
}