/* mostrarContenido.css - Estilos para la visualización de noticias, eventos y publicaciones */

/* General Container */
.content-detail-section {
    padding: 60px 0;
    background-color: #f9fbfd; /* Very light blue/grey background */
}

.content-detail-wrapper {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(14, 47, 119, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .content-detail-wrapper {
        padding: 25px;
    }
}

/* Header Section (Title, Subtitle, Date) */
.content-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0e2f77; /* ASANEC Blue */
    line-height: 1.2;
    margin-bottom: 15px;
}

.content-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.content-meta {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #888;
}

.content-date {
    display: inline-flex;
    align-items: center;
    background-color: #f0f4f8;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    color: #0e2f77;
}

.content-date i {
    margin-right: 8px;
    color: #f1ad3e; /* ASANEC Orange */
}

/* Image Section */
.content-image-container {
    margin-bottom: 40px;
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.content-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Prevent overly tall images */
}

/* Body Text Section */
.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body h2, 
.content-body h3, 
.content-body h4 {
    color: #0e2f77;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-body a {
    color: #0e2f77;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(14, 47, 119, 0.2);
    transition: all 0.2s;
}

.content-body a:hover {
    color: #f1ad3e;
    text-decoration-color: #f1ad3e;
}

.content-body ul, 
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Extra Description Box */
.content-description-box {
    background-color: #fff9f0; /* Light orange tint */
    border-left: 4px solid #f1ad3e;
    padding: 20px 25px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-subtitle {
        font-size: 1.1rem;
    }
}
