main {
    padding-bottom: 65px;
    padding-top: 185px;
}
.breadcrumbs {
    padding-left: 0;
    padding-right: 0;
}
main .news h1 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
}
main .news h1::before {
    content: '';
    position: absolute;
    bottom: -5px;
    background: #F33030;
    width: 100%;
    height: 4px;
}
main .news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 288px);
    grid-gap: 24px;
    margin-bottom: 40px;
}
main .news-container .news-item {
    display: flex;
    flex-direction: column;
    min-width: 288px;
    width: 288px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
main .news-container .news-item a img {
    max-width: 288px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
}
main .news-container .news-item .box {
    background: #fff;
    width: 100%;
    padding: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
main .news-container .news-item .box h2,
main .news-container .news-item .box h2 a,
main .news-container .news-item .box .h2,
main .news-container .news-item .box .h2 a {
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}
main .news-container .news-item .box .text {
    line-height: 20px;
    letter-spacing: .5px;
    font-weight: 300;
    max-height: 40px;
    word-break: break-word;
    overflow: hidden;
    margin-bottom: 15px;
}
main .news-container .news-item .box .date {
    font-size: 12px;
    line-height: 16px;
}
main .news .pagination {
    display: flex;
    max-height: 178px;
    justify-content: flex-end;
}
main .news .pagination a {
    font-size: 16px;
    line-height: 24px;
    color: #8A8A8A;
}
main .news .pagination span {
    margin-right: 15px;
    display: flex;
    align-self: center;
}
main .news .pagination a.selected {
    color: #323232;
    text-decoration: underline;
}
main .news .pagination a:not(:last-child) {
    margin-right: 15px;
}
main .news .pagination .arrow {
    width: 32px;
    height: 24px;
    border: 1px solid #323232;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #323232;
}
main .news .pagination .arrow::before {
    content: '\e905';
    font-family: 'icon';
    font-size: 12px;
}
main .news .pagination .arrow-l::before {
    transform: rotate(180deg);
}
main .news-inner.wrapper {
    max-width: 808px;
}
main .news-inner h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #000;
    margin-bottom: 16px;
}
main .news-inner .description {
    font-weight: 300;
    line-height: 20px;
    letter-spacing: .5px;
    color: #000;
    margin-bottom: 40px;
}
main .news-inner .description div {
    margin-bottom: 25px;
}
main .news-inner .description ul li {
    margin-left: 15px;
}
main .news-inner a,
main .news-inner a img {
    /* max-width: 808px;
    max-height: 233px; */
    /* width: 100%; */
    object-fit: cover;
    border-radius: 16px;
}
@media screen and (max-width: 1280px) {
    main {
        padding-top: 115px;
    }
}
@media screen and (max-width: 768px) {
    main .news-container {
        justify-content: center;
    }
}
@media screen and (max-width: 578px) {
    main {
        padding-top: 100px;
    }
    .news .breadcrumbs {
        padding-left: 10px;
        padding-right: 10px;
    }
    .news.wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    main .news h1,
    main .news-inner h1 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        margin-left: 10px;
    }
    main .news h1::before {
        height: 2px;
    }
    main .news-container {
        grid-template-columns: 100%;
        grid-gap: 16px;
    }
    main .news-container .news-item {
        flex-direction: row;
        min-width: unset;
        width: 100%;
        align-items: flex-start;
        padding: 16px;
    }
    main .news-inner .description div > img {
        width: 100%;
        margin: 0 auto;
        float: initial !important;

    }
    main .news-container .news-item a img {
        min-width: 88px;
        width: 88px;
        max-height: 88px;
        height: 88px;
        border-radius: 8px;
    }
    main .news-container .news-item a {
        margin-right: 16px;
    }
    main .news-container .news-item .box {
        padding: 0;
    }
    main .news-container .news-item .box h2,
    main .news-container .news-item .box h2 a,
    main .news-container .news-item .box .text {
        margin-bottom: 10px;
    }
    main .news .pagination {
        justify-content: center;
    }
    main .news-inner h1 {
        margin-left: 0;
        margin-bottom: 10px;
    }
    main .news-inner .description {
        margin-bottom: 25px;
    }
    main .news-inner a,
    main .news-inner a img {
        /* max-height: 83px; */
        border-radius: 8px;
    }
}