/* Brand Logo & Text Styles  for MikroTon Tender */

.mt-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--mt-heading, #f9fafb);
    text-shadow: 0 0 1px rgba(15, 23, 42, 0.9);
    transition: transform 0.18s ease-out, filter 0.18s ease-out;
}

.mt-brand__logo {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mt-brand__logo svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.25));
    transition: filter 0.18s ease-out;
}

.mt-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.mt-brand__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mt-heading, #f9fafb);
    letter-spacing: -0.01em;
}

.mt-brand__subtitle {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mt-text-muted, #9ca3af);
    margin-top: -0.1rem;
}

.mt-brand:hover {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.35));
}

.mt-brand:hover .mt-brand__logo svg {
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.45));
}

/* Responsive adjustments for mobile */
@media (max-width: 640px) {
    .mt-brand__logo {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .mt-brand__title {
        font-size: 0.95rem;
    }

    .mt-brand__subtitle {
        font-size: 0.55rem;
    }
}