/* Definições gerais */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* Container do Grid */
.gridnews-altadev-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    box-sizing: border-box;
}

/* Primeira notícia (destaque) */
.gridnews-altadev-coluna-1 {
    flex: 1 1 100%;
    box-sizing: border-box;
}

/* Removendo padding, box-shadow e bordas da notícia destaque */
.gnaltadev-item-destaque {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

/* Ajustes no título da notícia destaque */
.gnaltadev-titulo-noticia {
    font-size: 20px;
    line-height: 140%;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0px;
}

/* Ajustes no texto da notícia destaque */
.gnaltadev-resumo-noticia {
    font-size: 14px;
    line-height: 140%;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0px;
}

/* Botão "Veja mais" */
.gnaltadev-botao {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.gnaltadev-botao:hover {
    background-color: #005bb5;
}

/* Segunda coluna */
.gridnews-altadev-coluna-2 {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

/* Ajuste para remover padding, sombra e bordas das notícias */
.gnaltadev-item-noticia {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Imagem à esquerda na segunda coluna */
.gnaltadev-imagem-secundaria {
    flex-shrink: 0;
}

.gnaltadev-imagem-secundaria img {
    width: 100px;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

/* Ajustes no título da segunda coluna */
.gnaltadev-titulo-noticia-secundaria {
    font-size: 14px;
    line-height: 140%;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0px;
}

/* Responsividade */
@media (min-width: 769px) {
    .gridnews-altadev-container {
        flex-wrap: nowrap;
    }

    .gridnews-altadev-coluna-1 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .gridnews-altadev-coluna-2 {
        flex-basis: 40%;
        max-width: 40%;
    }
}

@media (max-width: 480px) {
    .gnaltadev-item-noticia {
        flex-direction: column;
        align-items: flex-start;
    }

    .gnaltadev-imagem-secundaria img {
        width: 100%;
    }
}
