.breadcrums{
    padding: 20px 0;
}
.main_img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.title{
    margin: 1em 0 1.5em 0;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
}
.headings{
    margin: 20px 0;
    background: white;
}
.headings_label{
    padding: .5em;
}
.headings-list{
    display: grid;
    grid-template-columns: 100%;
    padding: .5em;
}
.headings-list-item{
    color: black;
    padding: .5em;
}
.txt>*:nth-child(1){
    margin-top: 0;
}
.txt>*:last-child{
    margin-bottom: 0;
}
.txt {
    p {
        margin: 1em 0;
    }
    & :where(h2, h3, h4, h5, h6){
        font-family: Montserrat, sans-serif;
        font-weight: 700;
    }
    h2{
        font-size: 35px;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 25px;
    }
    h5{
        font-size: 20px;
    }
}
.other-articles {
    margin: 20px 0;
    .wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        grid-template-areas: 'title more' 'list list';
    }
}
.other-articles_title{
    grid-area: title;
    font-size: 35px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
}
.other-articles_more{
    grid-area: more;
    align-self: center;
    justify-self: flex-end;
    display: flex;
    justify-content: center;
    background: var(--blue);
    color: white;
    padding: 1em 2em;
    line-height: 1em;
}
.other-articles_list{
    grid-area: list;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.form-iframe{
    width: 100%;
    height: 350px;
    border: none;
}

.txt ul{
    list-style: disc;
}

@media(max-width: 800px){
    .other-articles  .wrapper {
        grid-template-columns: 100%;
        grid-template-areas: 'title' 'list' 'more';
    }
    .other-articles_more{
        width: 100%;
    }
}