.news-container {
    display: flex;
    gap: 5px;
}

body, 
.news-container, 
.news-container * {
    font-family: var(--font-circle);
}

.main-news-column {
    flex: 4;
    overflow-y: visible !important;
}

#full-article-content {
    width: 100%;
    max-height: 70vh !important; /* o eliminar esta regla */
    overflow-y: visible; /* que no tenga scrollbar interno */
    margin-bottom: 10px;
}

.news-list-column {
    flex: 1;
    padding-left: 20px;
    max-width: 300px;
    word-wrap: break-word;
    overflow-y: auto;
    max-height: 700px;
    position: relative;
    width: var(--list-width, 300px);
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 780px) {
    .news-list-column {
        width: 100%;
        max-height: 80vh;
    }
}

.news-list-column {
    flex: none;             /* quitar flex-grow para ancho fijo */
    width: 288px;           /* ancho fijo */
    max-height: 80vh;
    overflow-y: auto;
    padding-left: 0;        /* si quieres que estén pegados al borde */
    display: flex;
    flex-direction: column;
}

.news-item {
    width: 288px;           /* ancho fijo igual que columna */
    height: 184px;          /* altura fija */
    padding: 16px 20px;
    margin: 0;              /* sin margen para que estén pegados */
    border: none;           /* si no quieres separación por borde */
    border-bottom: 1px solid #ddd; /* o puedes dejar borde solo abajo */
    box-sizing: border-box; /* para que padding no aumente tamaño total */
    cursor: pointer;
    background: var(--gradient-box-grey, #2c2c2c);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.2s ease;
}

/* Mantener la barra de selección */
.news-item::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 80px;
    background: var(--main-color, #ff6600);
    transition: all 0.2s ease;
    content: "";
}

.news-item.active,
.news-item:hover {
    background: var(--gradient-box-primary, #44475a);
    color: #fff;
}

.news-item.active::before,
.news-item:hover::before {
    width: 2px;
    box-shadow: 0 0 5px var(--main-color-text-shadow, #ff6600);
}

/* Ajuste textos para que no se desborden */
.news-item-date,
.news-item-title,
.news-item-preview {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item-preview {
    white-space: normal; /* para permitir múltiples líneas en el preview */
    max-height: 70px;    /* limitar alto del preview para que no crezca */
    overflow: hidden;
}

/* Opcional: para que no quede espacio entre items, si quieres */
.news-item + .news-item {
    border-top: none;
}

.no-news {
    padding: 0 30px 0 50px;
}

.pagination {
    padding: 10px;
    text-align: center;
}

.title-news {
    font-weight: 300;
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 25px;
}

.title-news a {
    color: #fff;
    text-decoration: none;
}

.title-news a:hover {
    color: #FFF;
    text-decoration: none;
}

.news-item-title {
    font-weight: 400;
    font-size: var(--font-lg, 18px); /* uso var con fallback */
    line-height: var(--font-lg-lh, 1.3);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--mg-2, 8px);
    transition: all 0.2s ease;
}

/* Para que en hover o active cambie a blanco y más destacado */
.news-item:hover .news-item-title,
.news-item.active .news-item-title {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}