h1 {
    display: block;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    color: var(--brown);
}

article h2 {
    display: block;
    margin: 20px 0 16px 0;
    font-size: 24px;
    font-weight: bold;
    color: var(--brown);
}

main p {
    display: block;
}

p.is-style-explanation {
    margin-bottom: 20px;
    font-size: 18px;
    b {
        color: var(--brown);
    }
}

p.is-style-info-block {
    /*display: flex;
    align-items: center;
    column-gap: 10px;*/
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f1ce98;
    svg {
        width: 40px;
        min-width: 40px;
    }
    a {
        font-weight: bold;
        color: var(--brown);
    }
}

article summary {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    color: var(--brown);
    cursor: pointer;
    list-style: none;
    &::-webkit-details-marker {
        display: none;
    }
    &::before {
        content: "+";
        margin-right: 10px;
        font-size: 24px;
        font-weight: bold;
        color: var(--brown);
    }
}

article details[open] > summary::before {
    content: "–";
}

article details details, details p, details ul {
    padding-left: 28px;
}

details p {
    display: block;
    margin-bottom: 10px;
}

article a {
    font-weight: bold;
    text-decoration: underline;
    color: var(--brown);
}

article strong {
    font-weight: bold;
    color: var(--brown);
}

article ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 10px;
    li::before {
        content: "– ";
    }
}

.publication-date {
    margin: 0 auto 20px auto;
    font-style: italic;
}

article#article {
    h1 {
        margin-left: auto;
        margin-right: auto;
    }
}

article figure {
    margin: 20px auto;
    .hidden {
        display: none;
    }
}