﻿/* Contenedor general */
.noticia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    padding:100px 150px;
}

/* Botón de volver alineado a la izquierda */
.noticia-header {
    text-align: left;
    margin-bottom: 20px;
}

/* Botón de volver */
.noticia__volver {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}
.noticia__volver:hover {
    color: #333;
}

    .noticia__volver img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        margin-right: 10px
    }



.noticia-title{
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 8px;
}

.pagina-noticia__linea {
    width: 15%;
    height: 1px;
    background-color: #D9D9D9;
    margin: 0;
    margin-bottom: 32px;
}

/* Estilización del botón */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }

/* Diseño de la noticia con imagen a la izquierda y contenido a la derecha */
.noticia-detalle {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Imagen de la noticia */
.noticia-imagen {
    flex: 0 0 40%;
    max-width: 40%;
}

    .noticia-imagen img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Contenido de la noticia */
.noticia-detalle-contenido {
    flex: 1;
}

    .noticia-detalle-contenido h1 {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .noticia-detalle-contenido h2 {
        font-size: 22px;
        font-weight: 400;
        color: #555;
        margin-bottom: 20px;
    }

    .noticia-detalle-contenido p {
        font-size: 16px;
        color: #444;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.noticia-contenido {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-top: 20px;
}


/* Estilos responsivos */
@media (max-width: 992px) {
    .noticia-container {
        padding: 120px 30px 40px 30px;
    }

    .noticia-detalle {
        flex-direction: column;
        align-items: center;
    }

    .noticia-imagen {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .noticia-detalle-contenido {
        text-align: center;
    }

    .noticia-footer {
        font-size: 18px;
    }

    .noticia-redes {
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 600px) {
    .noticia__volver {
        font-size: 16px;
    }

    .noticia-title {
        font-size: 20px;
    }

    .noticia-redes__icono {
        width: 30px;
        height: 30px;
    }
}
