.section.pre-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 12px 24px;
    gap: 12px;
}

.pre-header.cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--secondary-white);
}

.pre-header.cta-text {
    font-size: 14px;
    font-weight: 500;
}

.pre-header.cta-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
}

.pre-header.action-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: -12px -24px -12px 0px;
}

.pre-header.action {
    background-color: var(--secondary-brand);
    color: var(--secondary-white);
    border: none;
    cursor: pointer;
    padding: 0;
    padding-left: 24px;
    border-radius: 6px 0px 0px 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pre-header.action:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    padding: 0;
    padding-left: 24px;
    border-radius: 6px 0px 0px 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pre-header.action-icon {
    width: 24px;
    height: 24px;
    margin-right: 24px;
    color: inherit;
}