.article-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}
.article-left{
    width: calc(100% - 367px);
    margin-bottom: 50px;
}
.article-right{
    flex-grow: 1;
    margin-bottom: 50px;
}
.article-cover {
    position: relative;
    margin-bottom: 16px;
}
.article-cover img{
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.article-title{
    color: #333;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: none;
}

#articlesAccordion .card{
    border: none;
    background: #f2f2f2;
    border-radius: 0;
    border-bottom: 1px solid #c4c4c4;
}
#articlesAccordion .card:last-child{
    border-bottom: 0;
}
#articlesAccordion .card .card-header{
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    background-color: #f6f6f6;
    border: none;
}
#articlesAccordion .card-header .btn{
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    min-height: 45px;
}
#articlesAccordion .card-body{
    padding: 1px;
}
#articlesAccordion .card-body a{
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    position: relative;
    padding: 10px 16px;
}
#articlesAccordion .card-header .btn i,
#articlesAccordion .card-body a i{
    color: #0e0a6d;
    font-size: 18px;
}
#articlesAccordion .card-body a:hover{
    background-color: #fff;
}
@media (max-width: 1200px) {
    .article-wrapper{
        gap: 0;
    }
    .article-left {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .article-title, h1{
        font-size: 22px;
    }
    h2, h3{
        font-size: 18px;
    }
}