/* ================================================================
   DS Urban Nest – Why Choose Us Widget v1
   Pixel matched to screenshot: light bg, 2-col cards, big faint number
   Palace theme: sec-title, auto-container, main-color, color-two
================================================================ */

.dsun-why-wrap {
    position: relative;
    padding: 100px 0;
    background: #f5f5f5;
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.dsun-why-rule {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--main-color);
    margin: 16px auto 52px;
}

/* ── GRID — 2 columns ────────────────────────────────────────────── */
.dsun-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── ITEM CARD ───────────────────────────────────────────────────── */
.dsun-why-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    border: 1px solid rgba(var(--color-two-rgb, 23,27,42), 0.07);
    border-radius: 8px;
    padding: 22px 24px;
    transition: all 350ms ease;
    overflow: hidden;
    cursor: default;
}

/* Gold left border on hover */
.dsun-why-item:before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--main-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 350ms ease;
    border-radius: 8px 0 0 8px;
}
.dsun-why-item:hover {
    border-color: rgba(var(--color-two-rgb, 23,27,42), 0.14);
    box-shadow: 0 6px 30px rgba(0,0,0,0.07);
    transform: translateX(4px);
}
.dsun-why-item:hover:before {
    transform: scaleY(1);
}

/* ── NUMBER ──────────────────────────────────────────────────────── */
.dsun-why-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--main-color);
    opacity: 0.18;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: left;
    transition: opacity 350ms ease;
    font-family: inherit;
}
.dsun-why-item:hover .dsun-why-num {
    opacity: 0.35;
}

/* ── TEXT ─────────────────────────────────────────────────────────── */
.dsun-why-text {
    font-size: 15px;
    color: var(--color-two);
    line-height: 1.6;
    flex: 1;
    transition: color 350ms ease;
    font-weight: 500;
}

/* Arrow removed */

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .dsun-why-grid { grid-template-columns: 1fr; gap: 10px; }
    .dsun-why-item { padding: 18px 20px; }
}
@media (max-width: 600px) {
    .dsun-why-wrap { padding: 60px 0; }
    .dsun-why-num  { font-size: 24px; width: 38px; }
}
