.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.brand img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 330px;
}

.brand-name {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-tagline {
    margin-top: 7px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--gold);
    color: var(--green2);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .22em;
}

.brand-tagline span {
    margin: 0 4px;
}

.footer-logo {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 1150px) {
    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-tagline {
        margin-top: 5px;
        padding-bottom: 5px;
        font-size: 11px;
    }
}

@media (max-width: 620px) {
    .brand {
        gap: 8px;
        max-width: calc(100vw - 82px);
    }

    .brand img {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .brand-copy {
        overflow: hidden;
    }

    .brand-name {
        overflow: hidden;
        font-size: clamp(14px, 4.2vw, 18px);
        text-overflow: ellipsis;
    }

    .brand-tagline {
        font-size: 8px;
        letter-spacing: .14em;
    }
}
