/*
 * home-sections.css — NewsCore (estilo The Objective)
 * CSS adicional para la homepage y shortcodes
 */

/* ============================================
   HERO TO: dos columnas de imágenes iguales
   ============================================ */
.nc-hero-to-item {
    min-width: 0;
}

.nc-hero-to-item .nc-hero-img-wrap {
    display: block;
    overflow: hidden;
}

.nc-hero-to-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nc-hero-to-item:hover img {
    transform: scale(1.02);
}

/* ============================================
   CAT FEATURE
   ============================================ */
.nc-cat-feature-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--gap);
    align-items: start;
}

.nc-cat-feature-aside {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-border);
    padding-left: var(--gap);
}

@media (max-width: 768px) {
    .nc-cat-feature-grid {
        grid-template-columns: 1fr;
    }
    .nc-cat-feature-aside {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: var(--gap);
    }
}

/* ============================================
   LIST STACK
   ============================================ */
.nc-list-stack {
    display: flex;
    flex-direction: column;
}

/* ============================================
   NC_SECTION_TITLE más link
   ============================================ */
.nc-section-title .nc-section-more {
    margin-left: auto;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: none;
    letter-spacing: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   ÚLTIMA HORA: animación del punto
   ============================================ */
.nc-topbar-scroll:hover .nc-topbar-scroll-inner {
    animation-play-state: paused;
}

/* ============================================
   PLACEHOLDER PUBLICIDAD
   ============================================ */
.nc-ad-slot {
    background: #f7f7f7;
    border: 1px dashed var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: #ccc;
    margin: var(--gap) 0;
    min-height: 90px;
}
