.hp-news-feed {
    padding-left: 15vw;
}

.hp-news-feed-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.news-feed__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.news-feed__content {
    padding-top: 15px;
    padding-right: 15px;
}

.dot {
    color: var(--main-color);
    font-size: 90px;
    line-height: 0;
}

.news-feed__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    border: solid 2px transparent;
    transition: ease 0.3s;
    border-radius: 15px;
}

.news-feed__item:hover {
    transform: translateY(-2px);
    border: solid 2px var(--main-color);
}

.news-feed__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
}

.news-feed__thumb {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.news-feed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 80vh;
    overflow-y: scroll;
    margin-right: 30px;
    padding-right: 15px;
    padding-top: 5px;
}

.news-feed__details {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.news-feed__category a {
    color: var(--main-color);
}

.news-feed__date {
    opacity: 0.5;
}

.news-feed-page {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-feed-navigation button {
    border: solid 2px var(--main-color);
    background: transparent;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.4s;
}

.news-feed-navigation button:hover {
     background: var(--main-color);
}

.news-feed-navigation {
    display: none;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.is-disabled {
    opacity: 0.3;
}


/*Responsive CSS for Politis Group by Efi Kakouni*/

@media only screen and (max-width: 1650px) {
    .news-feed__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: 1024px) {
    .hp-news-feed-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .news-feed-navigation {
        display: flex;
    }
    
    .news-feed__thumb img {
        aspect-ratio: 1 / 1;
    }
    
    .news-feed__title {
        font-size: 16px;
    }
    
    .news-feed__item {
        gap: 15px;
    }
    
    .hp-news-feed {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    
    .news-feed__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 15px;
        padding-top: 0;
        padding-right: 0;
    }
    
    .news-feed {
        margin: 0;
        overflow: unset;
        height: 10%;
        padding: 0;
    }
    
    .news-feed__details {
        font-size: 12px;
    }
    
    .news-feed__thumb {
        overflow: hidden;
        aspect-ratio: 1 / 1;
        margin-top: 0;
    }
    
    .news-feed__item:hover,
    .news-feed__item {
        border: none;
    }
    
    
}

















