/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f5f7fa;
    color: #222;
    line-height: 1.6;
    padding-bottom: 50px;
}

/* ===== CONTENEDOR GENERAL ===== */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* ===== TARJETAS DE NOTICIAS ===== */
.noticia {
    background: #fff;
    margin: 15px 0;
    padding: 18px;
    border-radius: 12px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* TITULOS */
.noticia h2, .titulo {
    font-size: 24px !important;
    color: #222 !important;
    margin-bottom: 10px;
    font-weight: 700;
}

/* FECHA */
.fecha {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* IMAGEN DESTACADA */
.feature-img {
    width: 100%;
    max-height: 330px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.feature-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENIDO */
.contenido p {
    margin-bottom: 15px;
    font-size: 17px;
}

/* ENLACES */
a {
    color: #1466ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==============================
   SIDEBAR – SportShow
============================== */

.sidebar {
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.10);
    margin-bottom: 25px;
}

/* Bloque de noticia */
.sidebar-noticia {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 15px;
}

.sidebar-noticia:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Imagen */
.sidebar-img {
    width: 95px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Información */
.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-cat {
    font-size: 12px;
    color: #1476ff;
    text-transform: uppercase;
    font-weight: 700;
}

.sidebar-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.25em;
    margin: 0;
}

.sidebar-title:hover {
    text-decoration: underline;
}

.sidebar-fecha {
    font-size: 12px;
    color: #777;
}

/* Click en toda la tarjeta */
.sidebar-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* Título principal del bloque */
.sidebar h3 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .sidebar-noticia {
        gap: 10px;
    }

    .sidebar-img {
        width: 80px;
        height: 60px;
    }

    .sidebar-title {
        font-size: 14px;
    }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .noticia {
        padding: 15px;
    }

    .noticia h2 {
        font-size: 20px !important;
    }

    .contenido p {
        font-size: 16px;
    }
}
