.article-body {
    color: #092540;
    line-height: 1.75;
    font-size: 1.35rem;
    margin: 24px 0 8px;
    padding: 28px;
    background: #fff;
    border: 1px solid #E4EAF1;
    border-radius: 12px;
}

.article-body > * + * {
    margin-top: 1rem;           
}

.article-body li {
    list-style-type: disc;
    margin-left: 20px;
}

/* Intro / lead paragraphs (first two paragraphs look slightly larger) */
.article-body p:nth-of-type(-n + 2) {
font-size: var(--lead);
color: var(--muted);
}

/* Paragraphs & emphasis */
.article-body p { 
    margin: 0.6rem 0; 
}

.article-body strong { font-weight: 700; }

.featured-notes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 120px;
    margin-bottom: 10%;
    gap: 24px;
    
}

.featured-notes-container h1 {
    font-size: 3.5rem;
    font-weight: 550;
    text-align: center;
    margin: 0 0 16px;
  }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 1fr);
    width: 70%;
    gap: 24px;
    margin-top: 32px;
    position: relative;
    z-index: 90;
}

.article-card {
    background: #fff;
    border: 1px solid #E4EAF1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.article-card:hover { transform: translateY(-4px); }

.article-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-content h2 {
    font-size: 1.65rem;
    margin: 0;
    color: #092540;
}

.article-content .date {
    font-size: 1rem;
    color: #6A7C8F;
}

.article-content .snippet {
    font-size: 1.2rem;
    color: #333;
    flex-grow: 1;
}

.read-more {
    margin-top: auto;
    font-weight: 600;
    color: #0E64D2;
    text-decoration: none;
}

.read-more:hover { text-decoration: underline; }

.article-hero {
    max-width: 920px;
    margin: 84px auto 24px;
    padding: 0 20px;
    margin-top: 120px;
}

.article-container {
    position: relative;
    z-index: 90;
}

.article-layout {
max-width: 920px;
margin: 0 auto;
padding: 0 20px;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.93rem;
color: #6A7C8F;
margin-bottom: 8px;
}
.breadcrumbs a {
color: #0E64D2;
text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }

/* ===== Title ===== */
.article-title {
font-size: clamp(1.9rem, 3vw, 3rem);
line-height: 1.15;
color: #092540;
margin: 6px 0 14px;
letter-spacing: -0.01em;
}

/* ===== Meta row ===== */
.article-meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
color: #425B72;
font-size: 0.95rem;
flex-wrap: wrap;
padding: 8px 0;
}

.author-avatar {
width: 42px;
height: 42px;
border-radius: 999px;
object-fit: cover;
flex: 0 0 auto;
}

.byline {
display: flex;
align-items: center;
gap: 8px;
flex: 1 1 auto;
min-width: 240px;
}
.author-name { font-weight: 600; color: #092540; }

.meta-dot {
display: inline-flex;
width: 4px; height: 4px;
border-radius: 999px;
background: #A9B8C8;
}

/* Share buttons */
.share {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}
.btn-share {
    border: 1px solid #D8E0EA;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #0E64D2;
    font-weight: 600;
    line-height: 1.2;
}
.btn-share:hover { background: #F6F9FC; }

/* ===== Cover image ===== */
.cover {
margin-top: 16px;
}
.cover img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 6px 22px rgba(9, 37, 64, 0.08);
}

/* Basic typography inside the body (in case you add headings later) */
.article-body h2 {
    font-size: 1.6rem;
    color: #092540;
    margin-top: 1.8em;
    margin-bottom: 0.6em;
}

/* ===== Next article nav ===== */
.article-nav {
    max-width: 920px;
    margin: 20px auto 80px;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}
.article-nav .next {
    color: #0E64D2;
    text-decoration: none;
    font-weight: 600;
}
.article-nav .next:hover { text-decoration: underline; }

/* ===== Utilities / responsive ===== */
@media (max-width: 720px) {
.article-meta {
    align-items: flex-start;
}
.byline { order: 2; }
.share  { order: 3; width: 100%; }
.share .btn-share { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 480px) {
.article-body { padding: 22px; }
.article-title { letter-spacing: 0; }
}
  
