.news-list {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    margin: 80px auto;
}

.news-list-item {
    width: calc((100% - 40px) / 3);
}

.news-list__title {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.news-detail {
    margin: 80px auto;
}

.comment-block {
    display: flex;
    flex-flow: column wrap;
    gap: 40px;
    margin: 80px auto 120px;
    align-items: flex-end;
}

.comment-title {
    display: inline-block;
    width: 100%;

}

.comment-title h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #303030;
}

.comment-items {
    width: calc(60% - 10px);
}

.comment-item {
    margin-bottom: 40px;
}

.comment-item__header{
    margin-bottom: 21px;
    display: grid;
    grid-template: "ava h5" "ava p";
    grid-template-columns: 60px auto;
}
.comment-item__header-avatar{
    grid-area: ava;
    width: 45px;
    height: 45px;
    background: #053DD7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
}

.comment-item__header-avatar img{
    width: 34px;
    height: 34px;
}

.comment-item__header h5{
    grid-area: h5;
    font-weight: 400;
    color: #053DD7;
    font-size: 20px;
    line-height: 110%;
    margin-top: 0;
    margin-bottom: 8px;
}

.comment-item__header p{
    grid-area: p;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #8F8F8F;
    margin: 0;
}

.comment-item__text{
    font-weight: 300;
    font-size: 18px;
    line-height: 110%;
    max-width: 750px;
}

.add-comment {
    width: calc(60% - 10px);
}

.add-comment__form {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    position: relative;
}
.add-comment__form button{
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6.5px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}
.add-comment__title{
    display: none;
}
.add-comment__input textarea{
    box-sizing: border-box;
    resize: none;
    padding: 16px 24px;
    background: #F1F4F8;
    border-radius: 12px;
    width: 100%;
    border: none;
    min-height: 100px;
}
.add-comment__input .input{
    width: 100%;
}
.add-comment__input textarea::placeholder{
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #8F8F8F
}

div.bx-auth {
    margin: 50px auto !important;
}

.swal-overlay {
    z-index: 100000;
}

.news-section__list {
    display: flex;
    gap: 40px;
    margin: 0 0 40px;
    flex-flow: row wrap;
}

.news-section__item {
    font-size: 20px;
    color: #16181A;
    font-weight: 600;
    text-decoration: none;
}

.news-section__item:hover {
    text-decoration: underline;
}

.podcast-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0px 0 50px;
}

@media screen and (max-width: 800px) {
    .news-list-item {
        width: 100%;
    }

    .comment-block {
        flex-direction: column;
        gap: 24px;
    }

    .podcast-banner {
        height: 150px;
        margin: 20px 0;
    }
}