.top-widget-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: flex;
    gap: 20px;
    padding: 20px;
    height: 360px;
}

.news-widget-wrapper {
    display: flex;
    width: 400px;
    min-width: 400px;
}

.news-widget-list-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.news-widget-item-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: baseline;
}

.widget-post-title {
    padding: 20px 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.news-widget-list-wrapper > *:not(:last-child) {
    border-bottom: 1px solid #EAEAF0;
    margin-bottom: 10px;
}


.slider-wrapper {
    flex-grow: 1;
}

.sliders-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    position: absolute;

}

.slide-item p {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.slider-arrows-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.slide-item-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    background-color: #00000060;
    cursor: pointer;
    position: relative;
}

.slide-item-arrow-img {
}

.slider-counter-wrap {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #00000080;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider-counter-round {
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.slider-counter-round.active {
    background-color: #fff;
}

.slide-item-title-wrap {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 25px 0px 25px;
}

.slide-item-title-wrap p {
    font-size: 18px;
    color: white;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    display: flex;
    background-color: #00000060;
    border-radius: 20px;
    margin: 0 25px;
}