.dnd-ns-wrap {
    width: 100%;
    padding: 32px 0 24px;
    box-sizing: border-box;
    overflow: hidden;
    background: transparent;
}

.dnd-ns-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
    margin: 0;
}

.dnd-ns-title {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: #283E6F;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dnd-ns-nav {
    display: flex;
    gap: 8px;
}

.dnd-ns-prev,
.dnd-ns-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #283E6F;
    background: transparent;
    color: #283E6F;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
    line-height: 1;
}

.dnd-ns-prev:hover,
.dnd-ns-next:hover {
    background: #283E6F;
    color: #fff;
}

.dnd-ns-prev:disabled,
.dnd-ns-next:disabled {
    opacity: 0.25;
    cursor: default;
}

.dnd-ns-track-wrap {
    overflow: hidden;
    padding: 2px 0 4px;
}

.dnd-ns-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.dnd-ns-card {
    flex: 0 0 calc(25% - 14px);
    background: #fff;
    border: 1px solid #e4e7ef;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    box-sizing: border-box;
}

.dnd-ns-card:hover {
    box-shadow: 0 6px 20px rgba(40,62,111,0.10);
    transform: translateY(-2px);
}

.dnd-ns-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dnd-ns-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #dde1ec;
}

.dnd-ns-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dnd-ns-card:hover .dnd-ns-img-wrap img {
    transform: scale(1.04);
}

.dnd-ns-no-img {
    width: 100%;
    height: 100%;
    background: #dde1ec;
}

.dnd-ns-body {
    padding: 14px 16px 18px;
}

.dnd-ns-tag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
}

.dnd-ns-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2540;
    line-height: 1.45;
    margin: 0 0 10px;
}

.dnd-ns-date {
    font-size: 11px;
    color: #9399ab;
    margin: 0;
}

.dnd-ns-progress-wrap {
    margin: 20px 0 0;
    height: 2px;
    background: #e0e3ec;
    border-radius: 2px;
}

.dnd-ns-progress-bar {
    height: 100%;
    background: #283E6F;
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0%;
}

@media (max-width: 900px) {
    .dnd-ns-card { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 560px) {
    .dnd-ns-card { flex: 0 0 calc(85% - 9px); }
    .dnd-ns-title { font-size: 15px; }
}
