Securing an Observer seat guarantees you access to the next scheduled Office Hours: Judgment Calls session.
Session dates will be announced after Hot Seats are confirmed. Observers will receive an email with session details, including date, time, and access instructions once confirmed.
Purchasing an Observer seat does not guarantee a specific session date until confirmation is sent.
Observer seats are designed for those who want to witness how judgment is applied to real-world building projects.
You will observe live project evaluations. Observers are passive participants and will not be invited to speak. No questions are guaranteed. No follow-up or personal feedback will be provided.
This is not consulting, coaching, or instructional training.
Sessions may be recorded. Excerpts from these sessions may be used for education, marketing, or promotional purposes.
By registering, you agree to the Terms of Service, Code of Conduct, and Cancellation Policy.
/* 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 */
}
}