.ndon-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
    max-width: 1220px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #111827;
}

.ndon-main-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ndon-card {
    display: grid;
    grid-template-columns: 46% 54%;
    background: #fff;
    border: 1px solid #d9dee7;
    border-radius: 16px;
    overflow: hidden;
    min-height: 235px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.ndon-image-wrap,
.ndon-invest-img-wrap {
    position: relative;
    overflow: hidden;
    background: #e5e7eb;
}

.ndon-image {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    display: block;
}

.ndon-content {
    position: relative;
    padding: 24px 48px 14px 22px;
}

.ndon-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid #cfd6df;
    border-radius: 14px;
    background: #fff;
    font-size: 30px;
    line-height: 34px;
    cursor: pointer;
    color: #0f172a;
}

.ndon-price {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ndon-price span {
    font-size: 12px;
    color: #5b6472;
    font-weight: 400;
    margin-left: 4px;
}

.ndon-content h3 {
    margin: 0 0 8px;
    font-size: 15.5px;
    line-height: 1.3;
    font-weight: 500;
    color: #111827;
}

.ndon-address {
    margin: 0 0 14px;
    font-size: 13px;
    color: #5b6472;
}

.ndon-details {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.ndon-promo {
    text-align: right;
    font-size: 12px;
    color: #3f4652;
    margin-bottom: 10px;
}

.ndon-seller {
    border-top: 1px solid #d9dee7;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
}

.ndon-logo {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
}

.ndon-seller strong,
.ndon-invest-dev strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
}

.ndon-seller small,
.ndon-invest-dev small {
    display: block;
    font-size: 11px;
    color: #5b6472;
}

.ndon-next {
    margin-left: auto;
    font-size: 38px;
    color: #111827;
    line-height: 1;
}

.ndon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 5px;
    z-index: 2;
}

.ndon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.55);
    color: #fff;
    font-size: 32px;
    line-height: 26px;
    cursor: pointer;
    z-index: 2;
}

.ndon-left {
    left: 10px;
}

.ndon-right {
    right: 10px;
}

.ndon-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.ndon-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.25);
}

.ndon-photos {
    position: absolute;
    right: 9px;
    bottom: 9px;
    background: #fff;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 8px;
    z-index: 3;
}

.ndon-sidebar h2 {
    margin: -28px 0 17px;
    font-size: 18px;
    font-weight: 800;
}

.ndon-invest-card {
    background: #fff;
    border: 1px solid #d9dee7;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.ndon-invest-img-wrap img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
}

.ndon-invest-body {
    position: relative;
    padding: 16px;
}

.ndon-invest-body .ndon-heart {
    top: 14px;
    right: 14px;
}

.ndon-invest-body h3 {
    font-size: 20px;
    margin: 0 46px 14px 0;
    font-weight: 800;
}

.ndon-invest-title {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
}

.ndon-invest-dev {
    border-top: 1px solid #d9dee7;
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
    gap: 9px;
    align-items: center;
}

@media (max-width: 980px) {
    .ndon-layout {
        grid-template-columns: 1fr;
    }

    .ndon-sidebar {
        display: none;
    }
}

@media (max-width: 720px) {
    .ndon-card {
        grid-template-columns: 1fr;
    }

    .ndon-image {
        min-height: 230px;
    }

    .ndon-content {
        padding: 18px 18px 14px;
    }

    .ndon-heart {
        top: 12px;
        right: 12px;
    }

    .ndon-details {
        gap: 10px;
        font-size: 13px;
    }
}