
:root {
    --brass: #c58a20;
    --white: #ffffff;
    --font-display: Arial, sans-serif;
}

.f_brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-right: auto;
}

/* Circle */
.f_brand-mark {
    width: 44px;
    height: 44px;
    border: 3px solid #c58a20;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c58a20;
    font-family: var(--font-display), sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.04em;
    flex-shrink: 0;
}

/* Text container */
.f_brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

/* Title */
.f_brand-name {
    color: #ffffff;
    font-family: var(--font-display), sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* Subtitle */
.f_brand-subtitle {
    /*margin-top: 8px;*/
    color: #c58a20;
    font-family: var(--font-display), sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

