/* DS Urban Nest – About Widget v2
   ALL values from palace theme CSS exactly */

.dsa-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

/* ── GRID ─────────────────────────────────────────────────────────── */
.dsa-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

/* ══ IMAGE — border-radius: 16px (palace story-one_image) ══════════ */
.dsa-img-col { position: relative; }

.dsa-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* exact palace value */
    display: block;
}
.dsa-img {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    border-radius: 16px; /* exact palace value */
    object-fit: cover;
}

/* Placeholder */
.dsa-img-placeholder {
    background: var(--color-three, #f5f5f5);
    border-radius: 16px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dsa-img-placeholder span {
    font-size: 13px;
    color: rgba(var(--color-two-rgb, 23,27,42), 0.22);
    letter-spacing: 0.5px;
}

/* Gold accent bar — bottom of image */
.dsa-img-bar {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--main-color);
    border-radius: 0 0 16px 16px;
}

/* ══ CONTENT ════════════════════════════════════════════════════════ */
.dsa-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow — palace sec-title_title */
.dsa-eyebrow {
    color: var(--main-color) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
    padding-left: 22px !important;
    position: relative !important;
    display: inline-block !important;
}
.dsa-eyebrow:before {
    content: '//' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: var(--main-color) !important;
}

/* Title — palace sec-title_heading */
.dsa-title {
    font-size: 44px; /* palace h2 */
    font-weight: 700;
    line-height: 54px; /* palace h2 line-height */
    color: var(--color-two);
    text-transform: uppercase; /* palace sec-title_heading */
    margin: 0 0 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Gold rule */
.dsa-rule {
    display: block;
    width: 44px;
    height: 3px;
    background: var(--main-color);
    margin-bottom: 28px;
}

/* Paragraphs — palace .text opacity:0.70, font-size:16px, line-height:26px */
.dsa-para {
    font-size: 16px;
    color: var(--color-two);
    opacity: 0.70;
    line-height: 26px;
    margin: 0 0 18px;
}
.dsa-para:last-of-type { margin-bottom: 30px; }

/* ── FOUNDER CARD ─────────────────────────────────────────────────── */
.dsa-founder {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--color-four, #f9f9f9);
    border-left: 3px solid var(--main-color);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0; /* palace border-radius: 12px */
    width: 100%;
}
.dsa-founder-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-two, #17171a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.dsa-founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dsa-initials {
    font-size: 9px;
    font-weight: 700;
    color: var(--main-color);
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.3;
    padding: 2px;
}
.dsa-founder-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dsa-founder-info strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-two);
    line-height: 1.3;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.dsa-founder-info span {
    font-size: 13px;
    color: rgba(var(--color-two-rgb, 23,27,42), 0.45);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media only screen and (max-width: 1200px) {
    .dsa-title { font-size: 36px !important; line-height: 44px !important; }
}
@media only screen and (max-width: 1024px) {
    .dsa-grid  { gap: 48px !important; }
    .dsa-title { font-size: 30px !important; line-height: 38px !important; }
}
@media only screen and (max-width: 767px) {
    .dsa-section { padding: 60px 0 !important; }
    .dsa-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .dsa-img-placeholder { min-height: 280px !important; }
    .dsa-title { font-size: 26px !important; line-height: 34px !important; }
    .dsa-para  { font-size: 15px !important; }
}
@media only screen and (max-width: 480px) {
    .dsa-section { padding: 50px 0 !important; }
    .dsa-title   { font-size: 22px !important; line-height: 30px !important; }
    .dsa-founder { padding: 14px 16px !important; }
    .dsa-founder-avatar { width: 46px !important; height: 46px !important; }
}
