﻿.search-container {
    margin: 40px 0;
    text-align: center;
}

input[type="text"] {
    width: 50%;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.btn-buscar {
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px;
    border: none;
    background-color: #004b3a;
    color: white;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.tag {
    background: white;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 20px;
}

    .tag.selected {
        background: #f4da70;
        color: black;
    }

.noticia {
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.no-results {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-top: 20px;
    text-align: center;
}

.des-categoria {
    line-height: 38px;
    font-size: 16px;
    padding: 4px 18px;
    text-transform: uppercase;
    background: #ddf1e8;
    color: #004b3a;
    border-radius: 25px;
}

.noticia {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.noticia-imagen-container {
    display: block;
    width: 300px;
    height: 155px;
    margin-right: 15px;
}

.noticia-imagen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.noticia-texto {
    flex: 1;
}

@media (max-width: 768px) {
    .noticia {
        flex-direction: column;
        align-items: flex-start;
    }

    .noticia-imagen-container {
        width: 100%;
        height: auto;
    }

    .noticia-imagen {
        width: 100%;
        height: 200px; 
    }

    .noticia-texto {
        width: 100%;
        margin-top: 10px;
    }
}
