/* Swiss Modernism 2.0 Editorial UI for Blog Articles */

/* Main "Blogs" Title Upgrade */
h1.modern-blogs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #011126; /* Deep Navy */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

h1.modern-blogs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #D9C6B0; /* Champagne Gold Accent */
    border-radius: 2px;
}

/* Article Container */
.modern-blog-article {
    background-color: #FAFAFA;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(1, 17, 38, 0.03);
}

/* Typography Hierarchy */
.modern-blog-article .BlogHeading h1,
.modern-blog-article .BlogHeading h2,
.modern-blog-article h1,
.modern-blog-article h2,
.modern-blog-article h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #011126; /* Deep Navy */
    margin-top: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.modern-blog-article .BlogHeading h1 {
    font-size: 36px;
    text-align: left; /* Editorial alignment */
}

/* Body Text */
.modern-blog-article p {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #3F3F46; /* Slate gray for readability */
    margin-bottom: 24px;
}

.modern-blog-article b, 
.modern-blog-article strong {
    color: #011126;
    font-weight: 600;
}

/* Premium Image Styling */
.modern-blog-article .BlogImg {
    margin: 32px 0;
    text-align: center;
}

.modern-blog-article .BlogImg img,
.modern-blog-article img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(1, 17, 38, 0.1);
    object-fit: cover;
}

/* Custom Lists */
.modern-blog-article ul,
.modern-blog-article ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.modern-blog-article ul li {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #3F3F46;
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
}

/* Teal Custom Bullets */
.modern-blog-article ul li::before {
    content: '•';
    color: #54B5BF; /* Teal Accent */
    font-size: 24px;
    position: absolute;
    left: -20px;
    top: -2px;
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
    .modern-blog-article {
        padding: 24px 16px;
    }
    
    h1.modern-blogs-title {
        font-size: 32px;
    }
    
    .modern-blog-article .BlogHeading h1 {
        font-size: 28px;
    }
    
    .modern-blog-article p,
    .modern-blog-article ul li {
        font-size: 16px;
    }
}
