/* ============================
   CSS para noticias de Accira
   Archivo: /actualidad/css/actualidad.css
   ============================ */

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #002b56;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.noticia-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

.noticia-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #002b56;
}

.noticia-subtitulo {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.noticia-img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0 10px 0;
    object-fit: cover;
}

.pie-img {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.noticia-cuerpo p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.noticia-etiquetas {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 0.9rem;
}

.noticia-etiquetas span {
    background-color: #e3f1ff;
    color: #002b56;
    padding: 6px 10px;
    border-radius: 20px;
    margin-right: 8px;
    display: inline-block;
}

.noticia-relacionadas {
    margin-top: 50px;
}

.noticia-relacionadas h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.relacionadas-carrusel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.relacionada-item {
    min-width: 250px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #fdfdfd;
    transition: all 0.3s ease;
}

.relacionada-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.relacionada-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #002b56;
}

.relacionada-item p {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}