/* ============================================
   Footer Element (Light Premium)
   Extends base .dr-footer styles
   ============================================ */

/* ── Bottom left: Airbnb-style inline copyright + links ── */

.dr-footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.dr-footer-bottom-left .dr-footer-copyright {
    display: inline;
    margin: 0;
}

.dr-footer-legal-dot {
    color: var(--gray-300, #D5D7DA);
    font-size: 0.875rem;
    line-height: 1;
    user-select: none;
    padding: 0 6px;
}

.dr-footer-legal-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500, #717680);
    text-decoration: none;
    transition: color 0.15s;
}

.dr-footer-legal-link:hover {
    color: var(--gray-900, #181D27);
}

/* ── Divider: contained within padding (not full-width) ── */

.dr-footer-bottom {
    border-top: none;
}

.dr-footer-bottom .dr-footer-container {
    border-top: 1px solid var(--gray-200, #E9EAEB);
    padding-top: var(--drpm-space-8, 32px);
}

/* ── Contact info (brand column) ──────────── */

.dr-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dr-footer-contact address {
    font-style: normal;
}

.dr-footer-address,
.dr-footer-phone,
.dr-footer-email {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: var(--gray-600, #535862);
    text-decoration: none;
    transition: color 0.15s;
}

.dr-footer-phone:hover,
.dr-footer-email:hover {
    color: var(--gray-900, #181D27);
}

.dr-footer-address svg,
.dr-footer-phone svg,
.dr-footer-email svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gray-400, #A4A7AE);
}

/* ── Social links (coded element) ─────────── */

.dr-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--gray-400, #A4A7AE);
    text-decoration: none;
    transition: color 0.15s;
}

.dr-footer-social-link:hover {
    color: var(--gray-900, #181D27);
}

.dr-footer-social-link svg {
    width: 24px;
    height: 24px;
}

/* ── Legal links group ────────────────────── */

.dr-footer-legal-group {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.dr-footer-legal-group .dr-footer-legal-dot {
    padding: 0 6px;
}

/* ── Responsive overrides ─────────────────── */

@media (max-width: 767px) {
    .dr-footer-bottom-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .dr-footer-legal-dot--first {
        display: none;
    }
}
