/* DS Urban Nest – Founders Quote Widget */

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

/* Subtle top + bottom border lines */
.dsun-quote-wrap:before,
.dsun-quote-wrap:after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(var(--color-two-rgb,23,27,42), 0.08);
}
.dsun-quote-wrap:before { top: 0; }
.dsun-quote-wrap:after  { bottom: 0; }

/* ── INNER ───────────────────────────────────────────────────────── */
.dsun-quote-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* ── QUOTE MARK ──────────────────────────────────────────────────── */
.dsun-quote-mark {
    font-size: 80px;
    line-height: 0.6;
    color: var(--main-color);
    opacity: 0.30;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 36px;
    display: block;
    user-select: none;
}

/* ── QUOTE TEXT ──────────────────────────────────────────────────── */
.dsun-quote-text {
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--color-two);
    line-height: 1.85;
    margin-bottom: 36px;
    font-weight: 400;
    opacity: 0.85;
}

/* ── DIVIDER ─────────────────────────────────────────────────────── */
.dsun-quote-divider {
    display: block;
    width: 44px;
    height: 2px;
    background: var(--main-color);
    margin: 0 auto 24px;
}

/* ── NAME ────────────────────────────────────────────────────────── */
.dsun-quote-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--main-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ── ROLE ────────────────────────────────────────────────────────── */
.dsun-quote-role {
    font-size: 13px;
    color: rgba(var(--color-two-rgb,23,27,42), 0.45);
    letter-spacing: 0.5px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .dsun-quote-wrap  { padding: 70px 0; }
    .dsun-quote-text  { font-size: 17px; }
    .dsun-quote-mark  { font-size: 60px; }
}
