/* ============================================
   NOTICIA - ARTÍCULO
   ============================================ */
.noticia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.noticia-main {
    padding: 30px 0 60px;
}

.noticia-articulo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   NOTICIA - TÍTULOS
   ============================================ */
.ante-titulo {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    max-width: 100%;
    padding: 0;
}

.noticia-titulo {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 16px 0;
    color: var(--color-text);
    max-width: 100%;
    padding: 0;
}

.noticia-subtitulo {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.4;
    margin: 0 0 25px 0;
    letter-spacing: -0.01em;
    max-width: 100%;
    padding: 0;
}

/* ============================================
   REPRODUCTOR DE AUDIO - VERSIÓN DISCRETA
   ============================================ */
.audio-player-discreto {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 10px 0 20px 0;
    padding: 6px 14px 6px 10px;
    background: #f5f7fa;
    border-radius: 30px;
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
    width: fit-content;
    max-width: 100%;
}

.audio-player-discreto:hover {
    border-color: var(--secondary);
    background: #f0fbfc;
}

.audio-btn-discreto {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 5px 10px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    letter-spacing: 0.2px;
}

.audio-btn-discreto:hover {
    background: #005f6b;
    transform: scale(1.02);
}

.audio-btn-discreto:active {
    transform: scale(0.96);
}

.audio-btn-discreto i {
    font-size: 12px;
}

.audio-btn-discreto.playing {
    background: #e74c3c;
}

.audio-btn-discreto.playing:hover {
    background: #c0392b;
}

.audio-tiempo-discreto {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
    min-width: 35px;
}

.audio-separador-discreto {
    color: #ddd;
    font-size: 12px;
}

.audio-estado-discreto {
    font-size: 12px;
    color: #5f6368;
    font-weight: 400;
    min-width: 50px;
}

.audio-estado-discreto.leyendo {
    color: var(--secondary);
    font-weight: 500;
}

.audio-estado-discreto.pausado {
    color: #f39c12;
    font-weight: 500;
}

.audio-estado-discreto.error {
    color: #e74c3c;
    font-weight: 500;
}

.audio-controles-discreto {
    display: none;
    align-items: center;
    gap: 4px;
}

.audio-btn-mini-discreto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    color: #5f6368;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-btn-mini-discreto:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: scale(1.05);
}

.audio-btn-mini-discreto:active {
    transform: scale(0.9);
}

/* ============================================
   NOTICIA - BOTONES COMPARTIR TOP
   ============================================ */
.compartir-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 0 0 10px 0;
    max-width: 100%;
    flex-wrap: wrap;
}

.google-follow-top-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5f6368;
    font-size: 12px;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 16px;
    background: #f1f3f4;
    transition: var(--transition);
    margin-right: 8px;
}

.google-follow-top-link:hover {
    background: #e8eaed;
    color: var(--color-text);
}

.google-follow-top-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.google-follow-top-link span {
    font-weight: 500;
}

.share-btn-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.share-btn-mini:hover {
    color: var(--secondary);
    background: rgba(0, 120, 135, 0.06);
    transform: scale(1.1);
}

.share-btn-mini i {
    font-size: 14px;
}

/* ============================================
   NOTICIA - META INFORMACIÓN
   ============================================ */
.noticia-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    padding: 15px 0 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    max-width: 100%;
}

.noticia-meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-autor {
    font-weight: 500;
    color: var(--color-text);
}

.meta-autor .autor-label {
    font-weight: 400;
    color: var(--color-text-light);
}

.meta-autor .autor-nombre {
    color: var(--secondary);
}

.meta-fecha i,
.meta-fuente i,
.meta-visitas i {
    color: var(--secondary);
    opacity: 0.7;
}

/* ============================================
   NOTICIA - IMAGEN / VIDEO / GALERÍA
   ============================================ */
.imagen-principal {
    margin: 0 0 25px 0;
    overflow: hidden;
    background: transparent;
    width: 100%;
    border-radius: 8px;
    padding: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.galeria-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 420px;
}

.slide-item {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.9);
}

.slider-btn-left {
    left: 15px;
}

.slider-btn-right {
    right: 15px;
}

.slider-indicator {
    position: absolute;
    bottom: 45px;
    right: 15px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
}

.imagen-unica {
    cursor: pointer;
    position: relative;
    width: 100%;
}

.imagen-unica img {
    border-radius: 8px;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* ============================================
   PIE DE FOTO - SOLO EN IMAGEN PRINCIPAL
   ============================================ */
.pie-foto {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: right;
    font-style: italic;
    padding: 0 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.pie-foto i {
    color: var(--secondary);
    font-size: 13px;
    opacity: 0.7;
}

/* ============================================
   NOTICIA - CONTENIDO
   ============================================ */
.contenido-noticia {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    font-family: var(--font-primary);
    max-width: 100%;
    padding: 0;
}

.contenido-noticia p {
    margin: 0 0 0.3em 0;
    max-width: 100%;
}

.contenido-noticia p:last-child {
    margin-bottom: 0;
}

.contenido-noticia h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5em 0 0.6em 0;
    line-height: 1.2;
    max-width: 100%;
}

.contenido-noticia h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.2em 0 0.5em 0;
    max-width: 100%;
}

.contenido-noticia h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1em 0 0.4em 0;
    max-width: 100%;
}

.contenido-noticia img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.contenido-noticia ul,
.contenido-noticia ol {
    margin: 0.5em 0 0.8em 24px;
    max-width: 100%;
}

.contenido-noticia li {
    margin-bottom: 0.3em;
}

.contenido-noticia blockquote {
    background: #f8f9fa;
    padding: 20px 28px;
    border-left: 4px solid var(--secondary);
    margin: 1.2em 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    max-width: 100%;
}

.contenido-noticia blockquote p {
    margin-bottom: 0;
}

.contenido-noticia .text-muted {
    color: #6c757d;
    font-style: italic;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-contador {
    position: absolute;
    top: 25px;
    left: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0,0,0,0.5);
    padding: 5px 12px;
    border-radius: 4px;
}

.lightbox-imagen-container {
    position: relative;
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-imagen-container img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-pie {
    color: #fff;
    font-size: 15px;
    margin-top: 12px;
    text-align: right;
    font-style: italic;
    width: 100%;
    opacity: 0.8;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-btn:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-btn-left {
    left: 20px;
}

.lightbox-btn-right {
    right: 20px;
}

/* ============================================
   NOTICIA - ETIQUETAS
   ============================================ */
.etiquetas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 25px 0 10px 0;
    border-top: 1px solid #eee;
    margin-top: 30px;
    max-width: 100%;
}

.etiquetas-label {
    font-weight: 600;
    color: var(--color-text);
    margin-right: 5px;
    font-size: 14px;
}

.tag {
    background: #f0f0f0;
    color: var(--color-text);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--secondary);
    color: white;
}

/* ============================================
   COMPARTIR BOTTOM
   ============================================ */
.compartir-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 25px 0 10px 0;
    border-top: 1px solid #eee;
    margin-top: 30px;
    max-width: 100%;
}

.compartir-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    margin-right: 5px;
}

.compartir-botones {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.share-btn:hover {
    color: var(--secondary);
    background: rgba(0, 120, 135, 0.06);
    transform: scale(1.1);
}

/* ============================================
   NOTICIAS RELACIONADAS
   ============================================ */
.noticias-relacionadas {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0;
}

.noticias-relacionadas h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text);
}

.noticias-relacionadas h3 i {
    color: var(--secondary);
}

.relacionadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.relacionada-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
}

.relacionada-card:hover {
    transform: none;
    box-shadow: none;
}

.relacionada-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.relacionada-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.media-icon-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.relacionada-sin-imagen {
    height: 160px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 8px;
}

.relacionada-sin-imagen i {
    font-size: 36px;
    color: #bbb;
}

.relacionada-card h4 {
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 6px 0;
    line-height: 1.3;
    color: var(--color-text);
}

.relacionada-card h4:hover {
    color: var(--secondary);
}

.relacionada-card .fecha {
    display: block;
    padding: 0;
    font-size: 12px;
    color: var(--color-text-light);
}

/* ============================================
   RESPONSIVE NOTICIA
   ============================================ */
@media (max-width: 1200px) {
    .noticia-container {
        padding: 0 20px;
    }
    
    .noticia-titulo {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .noticia-container {
        padding: 0 20px;
    }
    
    .noticia-titulo {
        font-size: 2.5rem;
    }
    
    .relacionadas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .slider-container {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .noticia-container {
        padding: 0 20px;
    }
    
    .noticia-main {
        padding: 15px 0 30px;
    }
    
    .noticia-titulo {
        font-size: 2rem;
    }
    
    .noticia-subtitulo {
        font-size: 1.1rem;
    }
    
    .ante-titulo {
        font-size: 11px;
    }
    
    /* REPRODUCTOR DISCRETO - RESPONSIVE */
    .audio-player-discreto {
        padding: 5px 10px 5px 8px;
        gap: 6px;
        border-radius: 25px;
        width: 100%;
    }
    
    .audio-btn-discreto {
        font-size: 12px;
        padding: 4px 10px 4px 8px;
    }
    
    .audio-btn-discreto i {
        font-size: 11px;
    }
    
    .audio-tiempo-discreto {
        font-size: 11px;
        min-width: 30px;
    }
    
    .audio-estado-discreto {
        font-size: 11px;
        min-width: 40px;
    }
    
    .audio-separador-discreto {
        display: none;
    }
    
    .audio-btn-mini-discreto {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .noticia-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 13px;
        padding: 15px 0 20px 0;
        margin-bottom: 20px;
    }
    
    .compartir-top {
        gap: 6px;
        padding: 0 0 10px 0;
    }
    
    .share-btn-mini {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .google-follow-top-link {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .google-follow-top-link svg {
        width: 14px;
        height: 14px;
    }
    
    .contenido-noticia {
        font-size: 1.1rem;
    }
    
    .contenido-noticia p {
        margin: 0 0 0.4em 0;
    }
    
    .contenido-noticia h2 {
        font-size: 1.4rem;
    }
    
    .contenido-noticia h3 {
        font-size: 1.2rem;
    }
    
    .contenido-noticia blockquote {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .imagen-principal {
        margin: 0 0 20px 0;
        border-radius: 0;
        padding: 0;
    }
    
    .video-container {
        border-radius: 0;
    }
    
    .galeria-slider {
        border-radius: 0;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .slider-indicator {
        bottom: 35px;
        right: 10px;
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .imagen-unica img {
        border-radius: 0;
        max-height: 280px;
    }
    
    .imagen-placeholder {
        border-radius: 0;
        padding: 40px 20px;
        min-height: 200px;
    }
    
    .imagen-placeholder i {
        font-size: 40px;
    }
    
    .imagen-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .pie-foto {
        font-size: 12px;
        padding: 0 5px 10px 5px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
        width: 38px;
        height: 38px;
    }
    
    .lightbox-contador {
        top: 18px;
        left: 20px;
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .lightbox-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .etiquetas {
        padding: 20px 0 10px 0;
        gap: 6px;
        margin-top: 20px;
    }
    
    .etiquetas-label {
        font-size: 12px;
    }
    
    .tag {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .compartir-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0 10px 0;
    }
    
    .compartir-label {
        font-size: 12px;
    }
    
    .share-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .compartir-botones {
        gap: 4px;
    }
    
    .noticias-relacionadas {
        margin: 30px auto 0;
        padding: 0;
    }
    
    .noticias-relacionadas h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .relacionadas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .relacionada-card img,
    .relacionada-sin-imagen {
        height: 180px;
    }
    
    .relacionada-card h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .noticia-container {
        padding: 0 20px;
    }
    
    .noticia-main {
        padding: 10px 0 20px;
    }
    
    .noticia-titulo {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
    }
    
    .noticia-subtitulo {
        font-size: 0.95rem;
        margin: 0 0 12px 0;
    }
    
    .ante-titulo {
        font-size: 10px;
        margin-bottom: 6px;
        letter-spacing: 1px;
    }
    
    .noticia-meta {
        font-size: 11px;
        padding: 8px 0 12px 0;
        gap: 4px;
    }
    
    .compartir-top {
        gap: 4px;
    }
    
    .share-btn-mini {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .google-follow-top-link {
        font-size: 9px;
        padding: 2px 6px;
        gap: 4px;
    }
    
    .google-follow-top-link svg {
        width: 12px;
        height: 12px;
    }
    
    .contenido-noticia {
        font-size: 0.95rem;
        line-height: 1.625;
    }
    
    .contenido-noticia p {
        margin: 0 0 0.2em 0;
    }
    
    .contenido-noticia h2 {
        font-size: 1.3rem;
    }
    
    .contenido-noticia h3 {
        font-size: 1.1rem;
    }
    
    .contenido-noticia h4 {
        font-size: 1rem;
    }
    
    .contenido-noticia blockquote {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .slider-indicator {
        bottom: 25px;
        right: 8px;
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .imagen-unica img {
        max-height: 220px;
    }
    
    .imagen-placeholder {
        padding: 30px 15px;
        min-height: 150px;
    }
    
    .imagen-placeholder i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .imagen-placeholder h3 {
        font-size: 1rem;
    }
    
    .imagen-placeholder p {
        font-size: 0.8rem;
    }
    
    .pie-foto {
        font-size: 11px;
        padding: 0 5px 8px 5px;
    }
    
    .lightbox-close {
        top: 12px;
        right: 15px;
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
    
    .lightbox-contador {
        top: 14px;
        left: 15px;
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .lightbox-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .lightbox-btn-left {
        left: 10px;
    }
    
    .lightbox-btn-right {
        right: 10px;
    }
    
    .share-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .relacionada-card img,
    .relacionada-sin-imagen {
        height: 140px;
    }
    
    .relacionada-card h4 {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .noticia-container {
        padding: 0 20px;
    }
    
    .noticia-titulo {
        font-size: 1.3rem;
    }
    
    .noticia-subtitulo {
        font-size: 0.85rem;
    }
    
    .contenido-noticia {
        font-size: 1rem;
    }
    
    .contenido-noticia h2 {
        font-size: 1.1rem;
    }
    
    .contenido-noticia h3 {
        font-size: 0.95rem;
    }
    
    .slider-container {
        height: 170px;
    }
    
    .imagen-unica img {
        max-height: 180px;
    }
    
    .relacionada-card img,
    .relacionada-sin-imagen {
        height: 120px;
    }
    
    .pie-foto {
        font-size: 10px;
    }
}