/* ===================================================================
   /styles/articles.css  —  Article-only styling
   Use alongside /styles/site.css
   =================================================================== */

article ul,
article ol {
    margin: 8px 0 6px 20px;
}

article li {
    margin: 4px 0;
}

/* References/notes section */
article footer.small {
    margin-top: 18px;
    color: #aab7cd;
}

/* Timeline (if used inside articles) */
.timeline {
    position: relative;
    padding-left: 28px;
    margin-top: 6px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #243551;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.t-item {
    position: relative;
    margin: 12px 0 14px;
    padding-left: 10px;
}

.t-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #35c6ff;
    box-shadow: 0 0 0 3px rgba(53, 198, 255, 0.18);
}

.t-year {
    display: inline-block;
    min-width: 196px;
    font-weight: 700;
    color: #b9d8ff;
}

.t-title {
    font-weight: 700;
    color: #e7eef8;
}

.t-note {
    color: #a6b5ce;
}

/* Reference link icon class (optional hide by toggling display) */
.ref-link {
    color: #9fb3d9;
    text-decoration: none;
    margin-left: 0.35rem;
}

.ref-link:hover {
    text-decoration: underline;
}

/* To hide all ref icons before publish, uncomment: */
/* .ref-link{ display:none !important } */