.nc-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

/* Single item spans full width */
.nc-single {
    grid-column: span 2;
}

/* Card */
.nc-nav-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 1rem 1.2rem;
    border-radius: 12px;

    background: #f7f7f7;
    text-decoration: none;

    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Hover */
.nc-nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Label (Previous / Next) */
.nc-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    color: #e8554e;
    margin-bottom: 4px;
}

/* Title */
.nc-nav-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;

    line-height: 1.4;

    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alignments */
.nc-prev {
    text-align: left;
}

.nc-next {
    text-align: right;
}

@media (max-width: 576px) {
    .nc-prev-next {
        display: flex;
        flex-direction: column;
    }

    /* Show NEXT on top */
    .nc-next {
        order: -1;
        text-align: left;
        margin-bottom: 0.6rem;
    }

    .nc-prev {
        order: 0;
    }
}