.single-article{
    min-height: 60vh;
}
.main-content{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}
.breadcrumbs a:visited,
.breadcrumbs a{
    color: #000000;
    font-size: 14px;
}
.breadcrumbs svg{
    margin-top: 3px;
}
.breadcrumbs{
    color: #737373;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    gap: 8px;
    margin-bottom: 3em;
}
.state-block h2 a,
.article-title h1,
.state-title h1{
    font-weight: 700;
    font-size: 32px;
    color: #1A1A1A;
}
.article-list{
    margin: 0;
    padding: 20px;
    list-style: none;
    border-radius: 5px; 
    border: 1px solid rgb(230, 230, 230);
}
.article-list li a:visited,
.article-list li a{
    padding: 15px;
    border-radius: 6px;
    transition: all ease 0.3s;
    position: relative;
    width: 100%;
    display: inline-block;
    color: #1A1A1A;
}
.article-list li a::after{
    content: url("data:image/svg+xml,%3Csvg class='block h-4 w-4 text-primary ltr:-rotate-90 rtl:rotate-90' fill='currentColor' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    right: 15px;
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}
.article-list li:hover a{
    background: hsla(0, 0%, 13%, 0.1);
}
