.atg.tag-news {
    background-color: transparent;
    border: 2px solid #ff614c;
    color: #ff614c;
    padding: 10px 20px;
    margin: 5px 0;

    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
}


.atg.tag-news:hover {
    background-color: #ff614c;
    color: white;
}

.action a{
    background-color: #ff614c !important;
    color: white !important;
    border: 2px solid #ff614c !important;
}

@media (max-width: 1440px) {
    .atg.tag-news {
        padding: 10px 15px; 
        font-size: 1rem;  
        text-align: center;
        margin: 5px auto;
        min-height: 45px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .atg.tag-news {
        padding: 10px 15px; 
        font-size: 0.8rem; 
        text-align: center;
        margin: 5px auto; 
        min-height: 40px;
        border-radius: 8px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
.atg.tag-news:hover {
    background-color: #ff614c;
    color: white;
}

}