.nsp-wrapper {
    max-width: 1200px;
    position: relative;
}

/* Layout */
.nsp-container {
    display: flex;
    gap: 0px;
    padding: 10px;
    background: #213F92;
}

/* LEFT COLUMN */
.nsp-left {
    flex: 2;
    position: relative;
    height: 600px; /* Same visual height as 5 right rows */
    overflow: hidden;
}

.nsp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.nsp-slide.active {
    opacity: 1;
    z-index: 2;
}

.nsp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 crop image nicely */
}

/* Overlay */
.nsp-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50%;
    height: auto;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4),
        transparent
    );
    background: rgba(33,63,146,0.9);
    color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nsp-content h2 {
    font-size: 22px;
    margin: 5px 0;
    color: #FFF;
    font-weight: 400;
}

.nsp-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #FFF;
}

.nsp-content span {
    font-size: 12px;
    opacity: 0.8;
}

/* RIGHT COLUMN */
.nsp-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #213F92;
    padding: 0 0;
    gap: 0px;
}

.nsp-small {
    flex: 1;
    display: flex;
    gap: 12px;
    cursor: pointer;
    padding: 5px 6px;
    background: #213F92; /* 🔵 Dark blue */
    color: #fff;
    transition: all 0.3s ease;
    align-items: center;
    border: 2px dotted rgba(255,255,255,0.3);
  	margin: 5px 0 5px 10px;
  	max-height: 110px;
}

.nsp-small:first-of-type {
	margin-top: 1px;
}
.nsp-small:last-of-type {
	margin-bottom: 1px;
}

.nsp-small img {
    width: 90px;
  	object-fit: cover;
}

.nsp-small h4 {
    margin: 0;
    font-size: 18px;
    color: #FFF;
    font-weight: 400;
}

.nsp-small span {
    font-size: 12px; /* smaller date */
    opacity: 0.8;
    color: #FFF;
}

/* Highlighted row */
.nsp-small.active {
    background: rgba(255,255,255,0.9);
    border: 2px dotted rgba(33,63,146,1);
    /* color: #213F92; */
}
.nsp-small.active h4 {
    margin: 0;
    font-size: 18px;
    color: #213F92;
}

.nsp-small.active span {
    color: #213F92;
}

/* NAVIGATION INSIDE IMAGE */
.nsp-navigation {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    display: none;
}

.nsp-prev,
.nsp-next {
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
}

.nsp-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.nsp-dots span.active {
    background: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .nsp-container {
        flex-direction: column;
    }

    .nsp-left {
        height: 400px;
    }

    .nsp-small {
        height: auto;
    }
}
