/**
 * DMV-Team: Single Property (Aura)
 * Luxury Vertical Experience
 */

.dmv-single-layout {
    background: var(--dmv-bg);
    color: var(--dmv-text);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Hero Section */
.dmv-hero-gallery {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.dmv-hero-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dmv-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--dmv-bg), transparent);
}

/* Detail Sections */
.dmv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dmv-grid-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.dmv-info-section {
    margin-bottom: 40px;
}

.dmv-section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dmv-accent);
    margin-bottom: 20px;
}

/* Feature Grid */
.dmv-feature-chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.dmv-feature-chip {
    background: var(--dmv-surface-card);
    border: 1px solid var(--dmv-border);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.dmv-feature-chip strong {
    display: block;
    font-size: 20px;
}

.dmv-feature-chip span {
    font-size: 11px;
    color: var(--dmv-text-muted);
    text-transform: uppercase;
}

/* Sidebar Box */
.dmv-sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Price History Chart Container */
.dmv-chart-card {
    background: var(--dmv-surface-card);
    border: 1px solid var(--dmv-border);
    border-radius: var(--dmv-radius);
    padding: 24px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .dmv-grid-split { grid-template-columns: 1fr; }
    .dmv-hero-gallery { height: 40vh; }
}
