/* SG Noticias Card */

.sgnc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sgnc-card {
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

/* Imagen y franja del noticiero */
.sgnc-image {
    position: relative;
}

.sgnc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sgnc-source {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    font-size: 12px;
    font-weight: 600;
    background: #00A6C9;
    color: #ffffff;
    padding: 6px 10px;
    z-index: 2;
}

/* Contenido inferior */
.sgnc-content {
    padding: 8px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Texto con borde de color */
.sgnc-text {
    font-size: 13px;
    line-height: 1.3;
    border: 1px solid #00A6C9;
    padding: 6px;
    border-radius: 4px;
    min-height: 52px;
    overflow: hidden;
}

/* Botón Ver más */
.sgnc-btn {
    align-self: flex-end;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    background: #FF6B00;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.sgnc-btn:hover {
    opacity: 0.9;
}

/* Mensaje vacío */
.sgnc-empty {
    font-size: 14px;
}
