Women Building Abroad

WBA Build Abroad Journal

WBA Build Abroad Journal

Regular price $29.00 USD
Regular price Sale price $29.00 USD
Sale Sold out
Shipping calculated at checkout.
Quantity

Coming soon. A guided decision companion for women exploring + planning a build abroad — before the expensive commitments begin.


What it is

The WBA Build Abroad Journal helps you translate “I want to build abroad” into real-world decisions you can track, verify, and act on — with less emotional noise and fewer expensive surprises.

What it helps you do

  • Map your build intention into real decision steps
  • Track promises, assumptions, and red flags in one place
  • Pressure-test budget and timeline realities before you commit
  • Walk into the Manual with clarity instead of confusion

Priority Access

We’re finalizing the first release now. Join the priority list and you’ll be first notified when it drops.

If you’re actively building right now, visit Actually Building for applied support and Field Notes access.

 

View full details
/* Flexbox layout for side-by-side content */ .product__info-wrapper { display: flex; /* Aligns children horizontally */ justify-content: space-between; /* Space between content */ align-items: flex-start; /* Aligns items to the top */ gap: 20px; /* Adds space between text and checkout box */ } /* Adjusts the width of the text container */ .product__info-container { flex: 1; /* Ensures the description area takes up available space */ margin-right: 20px; /* Space between description and checkout form */ } /* Adjusts the width of the checkout container */ .product__cart-form { flex: 0 0 300px; /* Sets the checkout form to a fixed width (e.g., 300px) */ max-width: 100%; /* Ensures the form doesn't overflow */ } /* Media query for responsive layout */ @media screen and (max-width: 750px) { .product__info-wrapper { flex-direction: column; /* Stacks elements vertically on smaller screens */ align-items: center; /* Centers content when stacked */ } .product__cart-form { width: 100%; /* Ensures the checkout form takes full width on smaller screens */ } }