/* --- ATLAS SENDER BLOG DESIGN SYSTEM --- */

/* Master Layout Styling */
.blog-card {
    background: #111118;
    border: 1px solid rgba(146, 0, 214, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    border-color: rgba(146, 0, 214, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(146, 0, 214, 0.08);
}

/* Typography Specific to Article Pages */
.article-container {
    font-family: 'Manrope', sans-serif;
    color: #cbd5e1; /* slate-300 */
    line-height: 1.85;
    font-size: 1.05rem;
}

.article-container h2 {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .article-container h2 {
        font-size: 1.3rem;
    }
}

.article-container h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.article-container p {
    margin-bottom: 1.6rem;
    font-weight: 300;
}

.article-container p.lead {
    font-size: 1.2rem;
    color: #f1f5f9; /* slate-100 */
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-container ul, .article-container ol {
    margin-bottom: 1.6rem;
    padding-left: 1.5rem;
}

.article-container ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.article-container ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

/* Rich Content Highlights & Custom Containers */
.article-container .highlight-box {
    background: rgba(146, 0, 214, 0.06);
    border-left: 4px solid #9200d6;
    padding: 1.25rem 1.5rem;
    border-radius: 4px 12px 12px 4px;
    margin: 2rem 0;
    color: #e2e8f0;
}

.article-container .highlight-box strong {
    color: #ffffff;
}

.article-container pre {
    background: #07070a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.article-container code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #ec4899; /* pink-500 */
}

/* Call-To-Action (CTA) Cards inside Articles */
.article-container .cta-box {
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.95) 0%, rgba(20, 10, 35, 0.95) 100%);
    border: 1px solid rgba(146, 0, 214, 0.35);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(146, 0, 214, 0.1);
}

.article-container .cta-box h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
}

.article-container .cta-box p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.article-container .cta-box .btn-cta {
    display: inline-block;
    background: #9200d6;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(146, 0, 214, 0.4);
    text-decoration: none;
}

.article-container .cta-box .btn-cta:hover {
    background: #a800f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(146, 0, 214, 0.6);
}

/* Breadcrumbs Links */
.breadcrumbs-nav a {
    transition: color 0.3s ease;
}
.breadcrumbs-nav a:hover {
    color: #ffffff;
}

/* Category Badges styling */
.badge-category {
    background: rgba(146, 0, 214, 0.12);
    border: 1px solid rgba(146, 0, 214, 0.25);
    color: #c084fc;
}

/* Filters & Tabs styling matching Atlas design guidelines */
#filter-tabs button {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#filter-tabs button:hover:not(.bg-brand-purple) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#search-input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}
