#left-container {
    background-color: #000;
    width: 520px;
    height: 543px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 16px;
    padding: 16px 16px;
    /*border: 1px solid #FFFFFF80;*/
}
#left-container .preview-mode {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

#left-container .preview-mode .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #fff;
    width: 100%;
    height: 40px;
}
#left-container .preview-mode .title h3 {
    font-weight: 500;
    font-size: 16px;
    flex: 1;
}
#left-container .preview-mode .title .news-type {
    /*width: 101px;*/
    padding: 0 14px 0 16px;
    height: 40px;
    background: #FFFFFF26;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    outline: none;
    transition: 250ms;
    cursor: pointer;
}
#left-container .preview-mode .title .news-type:hover {
    background: #FFFFFF0D;
}
#left-container .preview-mode .title .news-type p {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}
#left-container .preview-mode .title .links {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    border: none;
    outline: none;
    transition: 250ms;
    cursor: pointer;
}
#left-container .preview-mode .title .links:hover {
    background: #FFFFFFBF;
}

#left-container .preview-mode .news-list-wrapper {
    height: 100%;
    width: calc(100%);
    overflow: hidden;
}
#left-container .preview-mode .news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    width: calc(100%);
    /*overflow: hidden;*/
    padding-right: 16px;
}
#left-container .preview-mode .news-list::-webkit-scrollbar {
    width: 5px
}
#left-container .preview-mode .news-list::-webkit-scrollbar-track {
    background: #14141C
}

#left-container .preview-mode .news-list::-webkit-scrollbar-thumb {
    background: #Fff;
    border-radius: 5px;
}

#left-container .preview-mode .news-list .news-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#left-container .preview-mode  .news-item .line {
    display: flex;
    justify-content: space-between;
    height: 15px;
    font-size: 12px;
    font-weight: 400;
    gap: 20px;
}
#left-container .preview-mode  .news-item .line .source {
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#left-container .preview-mode  .news-item .line .date { color: #ffffff77 }
#left-container .preview-mode  .news-item .main-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #fff
}
#left-container .preview-mode  .news-item .read-full {
    border: none;
    outline: none;
    background: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
#left-container .preview-mode  .news-item .read-full p {
    position: relative;
}
#left-container .preview-mode  .news-item .read-full p::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 280ms ease;
}
#left-container .preview-mode  .news-item .read-full p:hover::after {
    transform: scaleX(1);
}
#left-container .preview-mode .pagination-container {
    display: flex;
    height: 32px;
    width: 100%;
    justify-content: center;
    gap: 8px;
}
#left-container .preview-mode .pagination-container .item {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#left-container .preview-mode .pagination-container .item:hover {
    opacity: 0.5;
}

#left-container .news-mode { display: none }
#left-container.news-open .preview-mode { display: none }
#left-container.news-open .news-mode {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    color: #fff;
}
#left-container .news-mode .title-block {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#left-container .news-mode .title-block .img-wrapper {
    position: absolute;
    left: 4px;
    width: 32px;
    height: 32px;
    background: #FFFFFF26;
    border-radius: 4px;
    cursor: pointer;
    transition: 250ms;
    display: flex;
    justify-content: center;
    align-items: center;
}
#left-container .news-mode .title-block  .img-wrapper:hover {
    background: #FFFFFF0D;
}
#left-container .news-mode .title h3 {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
#left-container .news-mode .header-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}
#left-container .news-mode .header-block .line {
    display: flex;
    justify-content: space-between;
    height: 15px;
    align-items: center;
}
#left-container .news-mode .header-block .line p {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    opacity: 0.5;
}
#left-container .news-mode .header-block .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
#left-container .news-mode .header-block .author-wrapper {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    opacity: 0.5;
}
#left-container .news-mode .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -1%;
    opacity: 0.8;
    height: 240px;
    display: -webkit-box;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;

}
#left-container .news-mode button {
    width: 100%;
    height: 48px;
    background: #0e0e6c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    letter-spacing: 1%;
    font-size: 16px;
}
#left-container .news-mode button:hover {
    opacity: 0.5;
}

#left-bottom-container {
    width: 100%;
    aspect-ratio: 304 / 136;
    border-radius: 16px;
}
#left-bottom-container img {
    width: 100%;
    height: 100%;
}
