body {
    color: white;
    padding-top: 150px;
    background-color: #0F0D0D;
    margin: 0;
    font-family: 'Open Sans', sans-serif !important;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 20px;
    padding-right: 20px;
}

.news-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-main {
    flex: 3;
}

.news-sidebar {
    flex: 0.80;
    margin-top: 20px;
}

.news-item,
.sidebar-item {
    display: flex;
    gap: 15px;
    background-color: #222;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #fff;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: 1px solid #333;
}

.news-item:hover,
.sidebar-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.news-item a,
.news-item a:hover,
.sidebar-item a,
.sidebar-item a:hover {
    text-decoration: none !important;
    color: inherit;
}

.news-item {
    background-color: #222;
    min-height: 120px;
}

.image-frame {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.news-item img,
.sidebar-item img {
    width: 250px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-item img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-sizing: border-box;
}

.news-info,
.sidebar-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.sidebar-item {
    display: flex;
    align-items: flex-start;
}

.news-title {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
    white-space: nowrap;
}

.news-header-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title {
    font-weight: bold;
    font-size: 13px;
}

.news-description {
    font-size: 14px;
    color: #b8b8b8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.2em;
    line-height: 1.4em;
}

.sidebar-description {
    font-size: 14px;
    color: #b8b8b8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
    line-height: 1.4em;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    margin: 0;
    border-bottom: 1px solid #333;
}

.news-title-main {
    margin: 0px;
    line-height: 1.25;
    font-size: 4.25rem;
    font-family: "Public Sans", sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-style: italic;
}

.sidebar-title-main {
    margin: 0px;
    line-height: 1.5;
    font-size: 1.125rem;
    font-family: "Public Sans", sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-style: italic;
}

.particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(181, 95, 95, 0.29);
}

.news-filters {
    display: flex;
    gap: 10px;
}

.news-filters .form-control {
    width: auto;
    min-width: 110px;
    background: #222;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 12px;
}

.news-header .form-control {
    width: auto;
    min-width: 110px;
    background: #222;
    color: #fff;
    border: 1px solid #333;
    margin-top: -4px;
}

.form-control {
    padding: 16px 18px;
    font-size: 18px;
    height: auto;
    min-height: 48px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    appearance: none;
    user-select: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    color: #fff;
    border: 1px solid #444;
    box-sizing: border-box;
    background-color: #222;
    margin: 0;
    width: 100%;
    transition: all 0.2s ease;
}

select {
    background: #222;
    color: #fff;
}

.news-info {
    display: flex;
    gap: 10px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.sidebar-item {
    margin-top: 20px;
    background-color: rgb(33, 30, 31);
    color: rgb(255, 255, 255);
    background-image: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 2px 0px, rgba(0, 0, 0, 0.24) 0px 16px 32px -4px;
    position: relative;
    z-index: 0;
    display: flex;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 16px;
}

.css-trfcsb {
    max-width: 100%;
    font-family: "Public Sans", sans-serif;
    font-size: 0.8125rem;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 32px;
    color: rgb(255, 255, 255);
    cursor: default;
    vertical-align: middle;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 16px;
    white-space: nowrap;
    transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    outline: 0px;
    text-decoration: none;
    padding: 0px;
    border-width: 1px;
    border-style: solid;
    border-image: initial;
    border-color: rgba(145, 158, 171, 0.32);
}

.css-14vsv3w {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
}