/* =============================================
   REGO — Footer
   White background · logo left · copyright right
   ============================================= */

.rego-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
}

.rego-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 40px;
    gap: 24px;
}

/* ---- Logo ---- */
.rego-footer__logo {
    text-decoration: none;
    flex-shrink: 0;
    display: block;
    line-height: 0;
}

.rego-footer__logo img {
    height: 28px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.rego-footer__logo:hover img,
.rego-footer__logo:focus img {
    opacity: 0.65;
}

.rego-footer__logo:focus {
    outline: 3px solid #d4e000;
    outline-offset: 4px;
}

/* ---- Copyright ---- */
.rego-footer__copy {
    font-family: "rubik", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =============================================
   REGO — Responsive footer
   ============================================= */

@media (max-width: 768px) {
    /* Mobile layout:
       Row 1: [REGO logo — left]  [copyright — right]
    */
    .rego-footer__inner {
        flex-wrap: wrap;
        padding: 20px 78px 16px;
        gap: 12px 16px;
    }

    .rego-footer__logo {
        flex-shrink: 0;
        max-width: 82px;
    }

    .rego-footer__logo img {
        height: 22px;
    }

    .rego-footer__copy {
        font-size: 10px;
        white-space: normal;
        text-align: right;
    }
}
