.noticias-panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .noticias-panel-header h5 {
        font-weight: 600;
        color: #333;
        margin: 0;
        padding-bottom: 6px;
        border-bottom: 3px solid #1572E9;
        display: inline-block;
    }

.noticias-grid {
    margin: 0 -6px;
}

    .noticias-grid > div {
        padding: 6px;
    }

.noticia-card {
    display: flex;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease;
}

    .noticia-card:hover {
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        transform: translateY(-2px);
    }

.noticia-card-media {
    position: relative;
    flex: 0 0 130px;
    width: 130px;
    height: 110px;
    background: #f2f2f2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.noticia-card-video {
    width: 100%;
    height: 100%;
}

.noticia-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #c6c6c6;
}

.noticia-card-file {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-card-badge {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1.4;
}

.noticia-card-body {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    min-width: 0;
}

.noticia-card-date {
    font-family: sans-serif;
    color: #1572E9;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 3px;
}

.noticia-card-title {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-card-subtitle {
    font-family: sans-serif;
    font-size: 12px;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-completa {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    padding: 24px 28px;
    margin-top: 4px;
}

.noticia-completa-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

    .noticia-completa-close:hover {
        color: #333;
    }

.modal-body .noticia-completa-close {
    display: none;
}

.modal-body .noticia-completa {
    box-shadow: none;
    border: none;
    padding: 0;
}

.noticia-completa-fecha {
    display: inline-block;
    background: #eef4fe;
    color: #1572E9;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.noticia-completa-titulo {
    margin: 0 0 6px 0;
    color: #1a1a1a;
    font-weight: 700;
    padding-right: 24px;
}

.noticia-completa-subtitulo {
    display: block;
    font-size: 16px;
    line-height: 1.6em;
    color: #777;
    margin-bottom: 18px;
}

.noticia-completa-carousel {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 18px;
}

    .noticia-completa-carousel .carousel-indicators li {
        background-color: #1572E9;
    }

    .noticia-completa-carousel .carousel-control-prev-icon,
    .noticia-completa-carousel .carousel-control-next-icon {
        background-color: rgba(21, 114, 233, 0.85);
        border-radius: 50%;
        padding: 18px;
        background-size: 45%, 45%;
    }

.noticia-completa-texto {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    margin: 0;
}
