.sidebar-news-feed-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-feed-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.dot {
    color: var(--main-color);
    font-size: 90px;
    line-height: 0;
}

.news-feed-sidebar-item {
    display: flex;
    gap: 15px;
    border: solid 2px transparent;
    transition: ease 0.3s;
    border-radius: 15px;
    flex-direction: column;
}

.news-feed-sidebar-category a {
    color: var(--main-color);
}

.news-feed-sidebar-item:hover {
    transform: translateY(-2px);
}

.news-feed-sidebar-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
}

.news-feed-sidebar-thumb {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 15px;
    padding-top: 5px;
}

.news-feed-sidebar-details {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.news-feed-sidebar-date {
    opacity: 0.5;
}


/*Responsive CSS for Politis Group by Efi Kakouni*/

@media only screen and (max-width: 1650px) {
    .news-feed-sidebar-title {
        font-size: 20px;
    }
    
    .hp-news-feed {
        padding-left: 5vw;
    }
}

@media only screen and (max-width: 1250px) {
    .hp-news-feed-title {
        font-size: 36px;
    }

}


@media only screen and (max-width: 1000px) {
    .hp-news-feed-title {
        font-size: 32px;
    }
    
    .news-feed-sidebar-thumb img {
        aspect-ratio: 1 / 1;
    }
    
    .news-feed-sidebar-title {
        font-size: 18px;
    }
    
    .news-feed-sidebar-item {
        gap: 15px;
    }
    
    .hp-news-feed {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    
    .news-feed-sidebar-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 15px;
    }
    
    .news-feed-sidebar-details {
        font-size: 12px;
    }
}

















