.tc-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--primary-500);
}

.tc-header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    min-height: 48px;
}

.tc-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: #ffffff;
}

.tc-header__logo img {
    display: block;
    height: 32px;
    width: auto;
}

.tc-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--neutral-50);
    color: var(--primary-500);
    border: 1px solid var(--primary-500);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tc-header__cta:hover,
.tc-header__cta:focus {
    background-color: var(--primary-700);
    color: #ffffff;
    border-color: var(--primary-700);
}

@media (max-width: 767.98px) {
    .tc-header__inner {
        padding: 8px 0;
    }
    .tc-header__logo img {
        height: 24px;
    }
    .tc-header__cta {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .tc-header__logo img {
        height: 20px;
    }
    .tc-header__cta {
        padding: 6px 10px;
        font-size: 12px;
    }
}
