/* ================================================================
   DS Urban Nest – Areas v2  (.dav2-)
   New prefix — zero conflict with old plugin
   Hover: #f9f9f9 bg + palace box-shadow. NO red shade anywhere.
================================================================ */

.dav2-wrap {
    padding: 100px 0;
    background: #ffffff;
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.dav2-rule {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--main-color);
    margin: 14px auto 24px;
}
.dav2-subtitle {
    max-width: 620px;
    margin: 0 auto 56px !important;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(23,27,42,0.65);
}

/* ── LIST ─────────────────────────────────────────────────────────── */
.dav2-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── ROW ──────────────────────────────────────────────────────────── */
.dav2-row {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid rgba(23,27,42,0.08);
    border-radius: 16px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}
.dav2-row:hover {
    background: #f9f9f9;
    border-color: rgba(23,27,42,0.05);
    box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
}

/* ── LEFT ─────────────────────────────────────────────────────────── */
.dav2-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.dav2-num {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
    color: var(--main-color);
    opacity: 0.15;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.dav2-row:hover .dav2-num {
    opacity: 0.35;
}
.dav2-namewrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dav2-name {
    font-size: 20px;
    font-weight: 700;
    color: #17171a;
    line-height: 1.2;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.dav2-row:hover .dav2-name {
    color: var(--main-color);
}
.dav2-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--main-color);
    opacity: 0.65;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.dav2-row:hover .dav2-badge {
    opacity: 1;
}

/* ── DESCRIPTION ─────────────────────────────────────────────────── */
.dav2-desc {
    font-size: 14px;
    color: rgba(23,27,42,0.55);
    line-height: 1.85;
    margin: 0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.dav2-row:hover .dav2-desc {
    color: rgba(23,27,42,0.78);
}

/* ── BUTTON ──────────────────────────────────────────────────────── */
.dav2-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media only screen and (max-width: 1024px) {
    .dav2-row { grid-template-columns: 220px 1fr auto; gap: 28px; }
    .dav2-num { font-size: 36px; }
}
@media only screen and (max-width: 767px) {
    .dav2-wrap { padding: 60px 0 !important; }
    .dav2-row  {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 24px 20px !important;
    }
    .dav2-btn  { display: none !important; }
    .dav2-num  { font-size: 28px; }
    .dav2-name { font-size: 18px; }
}
@media only screen and (max-width: 480px) {
    .dav2-wrap { padding: 50px 0 !important; }
    .dav2-desc { font-size: 13px !important; }
}
