.article__title{
    border-bottom: 1px solid currentColor;
    background: var(--background-secondary);
    color: var(--background-secondary-text);
    border-radius: 5px;
}

.article__heading{
    font-weight: 600;
    color: var(--background-secondary);
}

.article__content{
    flex-direction: column;
}

.article__question{
    position: relative;
    padding-left: calc(var(--spacing-2) + 1.5rem);
    color: var(--background-secondary);
}

.article__question::before{
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.article__img{
    display: block;
    width: 100%;
}

.article:nth-last-of-type(1){
    margin-bottom: 0!important;
}