/**
 * CidadeTur BR - Estilos do Bloco 2 (Lista de Notícias da Página)
 */

/* ============================================
   TÍTULO DO MENU
   ============================================ */

/* ============================================
   SEÇÃO DE NOTÍCIAS
   ============================================ */

.bloco2-section {
    background-color: var(--primary-blue);
    padding: 20px;
    width: 100%;
    margin: 3px 0;
}

/* Título da Seção */
.bloco2-title {
    margin-bottom: 20px;
}

.bloco2-title h2 {
    color: var(--white);
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Separador após o título */
.bloco2-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4D76A8;
    margin-top: 15px;
}

/* ============================================
   LISTA DE NOTÍCIAS (Container Flexbox)
   ============================================ */

.bloco2-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* ============================================
   ITEM DE NOTÍCIA (Container Flexbox Horizontal)
   ============================================ */

.bloco2-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    width: 100%;
}

/* ============================================
   IMAGEM DA NOTÍCIA
   ============================================ */

.bloco2-image {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    background-color: #C0C0C0;
    overflow: hidden;
}

.bloco2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   CONTEÚDO DA NOTÍCIA
   ============================================ */

.bloco2-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Título da Notícia */
.bloco2-titulo {
    color: #FFFF00;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Detalhes da Notícia */
.bloco2-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bloco2-details p {
    color: var(--white);
    font-size: 10px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* ============================================
   SEPARADOR ENTRE NOTÍCIAS
   ============================================ */

.bloco2-separator {
    width: 100%;
    height: 1px;
    background-color: #4D76A8;
    margin: 0;
}

/* ============================================
   BOTÃO EXIBIR MAIS
   ============================================ */

.bloco2-btn-mais {
    width: 100%;
    background-color: transparent;
    color: #FFFF00;
    border: 2px solid #FFFF00;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s;
    text-align: center;
}

.bloco2-btn-mais:hover {
    background-color: #FFFF00;
    color: #214674;
}

