/* =========================================================
   FILE: copyright_bar.css
   VERSION: 2
   SECTION: Copyright Bar
   PROJECT: Jewellery Doctor Redesign
   ========================================================= */

.copyright_bar_section {
    position: relative;
    z-index: 1;
}

.copyright_bar_container {
    min-height: 85px;
    background: #6f6f6f;
    border-top: 1px solid #b9b9b9;
    display: flex;
    align-items: center;
}

.copyright_bar_container .container {
    width: 100%;
    text-align: center;
}

/* =========================================
   CONTACT LIST
   ========================================= */

.copyright_contact {
    list-style: none;
    margin: 0 0 0.4rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* divider */
.copyright_contact li {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    color: #ffffff;
}

/* add separators */
.copyright_contact li:not(:last-child)::after {
    content: "|";
    margin-left: 0.6rem;
    color: #d9d9d9;
}

/* links */
.copyright_contact a {
    color: #ffffff;
    text-decoration: none;
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

/* hover state */
.copyright_contact a:hover,
.copyright_contact a:focus-visible {
    color: #d4af37;
    text-decoration: underline;
}

/* =========================================
   COPYRIGHT TEXT
   ========================================= */

.copyright_bar_container p {
    margin: 0;
    color: #ffffff;
    font-size: 0.78rem;
    line-height: 1.45;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .copyright_bar_container {
        padding: 0.8rem 0;
        min-height: auto;
    }

    .copyright_contact {
        flex-direction: column;
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }

    /* remove separators on mobile */
    .copyright_contact li::after {
        display: none;
    }

    .copyright_bar_container p {
        font-size: 0.72rem;
        line-height: 1.4;
    }
}