/* Headings */
.story-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.story-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Merriweather', sans-serif;
    line-height: 1.3;
}

/* Links */
.story-content a {
    color: #16a34a;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

/* Bold and italic */
.story-content strong,
.story-content b {
    font-weight: 700;
    color: #000000;
}

.story-content em,
.story-content i {
    font-style: italic;
}


/* Lists */
.story-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000;
}

.story-content li::marker {
    color: #000000;
}


/* Spacing fix: remove top margin from the very first heading */
.story-content > h1:first-child,
.story-content > h2:first-child,
.story-content > h3:first-child {
    margin-top: 0;
}

/* Spacing fix: remove bottom margin from the last element */
.story-content > *:last-child {
    margin-bottom: 0;
}