/* noticias.css - Estilo Tech-Modern / Wired */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-blue: #0066FF;
    --tech-black: #050505;
    --text-main: #1f2937;
    --bg-light: #f3f4f6;
}

body {
    background-color: var(--bg-light);
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
}

/* Artículo Ancho y Limpio */
article {
    max-width: 1100px !important;
    margin: 0 auto;
    background: white;
    padding: 60px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Título de Impacto */
header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4.5rem !important;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--tech-black);
    text-transform: uppercase;
}

.meta-info {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary-blue);
    border-top: 4px solid var(--tech-black);
    padding-top: 1rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

/* Cuerpo de texto profesional */
.content-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
}

.content-wrapper p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

/* Adiós a la capitular antigua, hola a la negrita de impacto */
.dropcap {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    color: var(--tech-black);
    border-left: 8px solid var(--primary-blue);
    padding-left: 20px;
}

/* Cita de estilo "Ciberseguridad" */
blockquote {
    background: var(--tech-black);
    padding: 40px !important;
    margin: 50px -100px !important;
    transform: skewX(-2deg); 
}

blockquote p {
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem !important;
    line-height: 1.1;
    font-style: normal !important;
    transform: skewX(2deg);
}

/* Subtítulos */
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--tech-black);
    text-transform: uppercase;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

h3::before {
    content: "";
    width: 30px;
    height: 4px;
    background: var(--primary-blue);
    margin-right: 15px;
    display: inline-block;
}

/* Entrevista */
.interview-box strong {
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
}

hr {
    border: 0;
    border-top: 2px solid #eee;
    margin: 4rem 0;
}

/* Contenedor del Logo del Equipo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 4rem auto;
    padding: 20px;
    border-bottom: 1px solid #eee; 
    max-width: 400px;
}

.team-logo {
    width: 1000px; 
    height: auto;
    max-height: 500px;
    object-fit: contain; 
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08)); 
    transition: transform 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05); 
}

.logo-subtext {
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #999;
    text-transform: uppercase;
}

/* Re-ajustamos el titular para que no se pegue al logo */
header {
    margin-bottom: 3rem;
}