* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #1f2937;
}

html {
    scroll-behavior: smooth;
}

:root {
    --ea2-topbar-height: 68px;
    --ea2-left-width: 184px;
    --ea2-right-width: 240px;
}

/* TOP NAV FIXED */

.ea-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ea2-topbar-height);
    z-index: 1000;
}

.ea-navbar {
    min-height: var(--ea2-topbar-height);
    height: var(--ea2-topbar-height);
}

.ea-navbar-toggler {
    border: 0;
    padding: 6px;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.ea-navbar-toggler:focus,
.ea-navbar-toggler:active {
    border: 0;
    box-shadow: none;
    outline: none;
}

.ea-navbar-toggler-image {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* PAGE SHELL */

.ea2-page-wrap {
    padding: var(--ea2-topbar-height) 0 0 0;
    background: #ffffff;
    min-height: 100vh;
}

.ea2-layout {
    display: block;
    min-height: calc(100vh - var(--ea2-topbar-height));
}

.ea2-main-content {
    min-width: 0;
    background: #ffffff;
    padding: 18px 24px 28px 24px;
    margin-left: var(--ea2-left-width);
    margin-right: var(--ea2-right-width);
    min-height: calc(100vh - var(--ea2-topbar-height));
}

/* FIXED SIDEBARS */

.ea2-left-sidebar {
    position: fixed;
    top: var(--ea2-topbar-height);
    left: 0;
    width: var(--ea2-left-width);
    height: calc(100vh - var(--ea2-topbar-height));
    background: #1E3259;
    overflow-y: auto;
    z-index: 900;
}

.ea2-right-sidebar {
    position: fixed;
    top: var(--ea2-topbar-height);
    right: 0;
    width: var(--ea2-right-width);
    height: calc(100vh - var(--ea2-topbar-height));
    background: #1E3259;
    z-index: 900;
}

/* LEFT PANEL */

.ea2-left-panel {
    background: #1E3259;
    color: #ffffff;
    min-height: 100%;
}

.ea2-left-panel-title {
    background: #F4A114;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 14px 12px;
    line-height: 1.1;
    position: sticky;
    top: 0;
    z-index: 2;
}

.ea2-left-menu {
    list-style: none;
    margin: 0;
    padding: 12px 0 0 0;
}

.ea2-left-menu li {
    margin: 0;
}

.ea2-left-menu-link {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 10px;
    text-align: center;
    line-height: 1.2;
}

.ea2-left-menu-link:hover {
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}

.ea2-left-menu-link.active {
    color: #F4A114;
    background: transparent;
}

.ea2-left-empty {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 14px;
    text-align: center;
}

/* MAIN CONTENT */

.ea2-page-header {
    margin-bottom: 14px;
}

.ea2-page-header h1 {
    margin: 0 0 4px 0;
    color: #1f3769;
    font-size: 30px;
    font-weight: 700;
}

.ea2-page-header p {
    margin: 0;
    color: #5f6b7a;
    font-size: 15px;
}

.ea2-screen-label {
    text-align: center;
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ea2-content-grid,
.ea2-org-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.ea2-section-card,
.ea2-org-card {
    background: #ffffff;
    border: 1px solid #cfd7e5;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(30, 50, 89, 0.04);
}

.ea2-section-card h2,
.ea2-section-card h3,
.ea2-org-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #1f3769;
}

.ea2-section-card p:last-child,
.ea2-org-card p:last-child {
    margin-bottom: 0;
}

.ea2-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ea2-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 8px;
    background: #243f7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.ea2-action-link:hover {
    color: #ffffff;
    background: #1f3769;
    text-decoration: none;
}

.ea2-bullet-list {
    margin: 0;
    padding-left: 20px;
}

.ea2-bullet-list li + li {
    margin-top: 8px;
}

.ea2-note {
    margin-top: 12px;
    color: #6b7280;
    font-size: 14px;
}

/* FORMS */

.ea2-form-section {
    max-width: 980px;
}

.ea2-form-section-wide {
    max-width: none;
    width: 100%;
}

.ea2-section-header {
    margin-bottom: 10px;
}

.ea2-subsection-title {
    background: #f3f4f6;
    color: #1f3769;
    font-weight: 700;
    text-align: center;
    padding: 10px 12px;
    margin: 20px 0 14px 0;
    border-radius: 8px;
}

.ea2-form-grid {
    display: grid;
    gap: 14px;
}

.ea2-form-grid-single {
    grid-template-columns: 1fr;
}

.ea2-form-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ea2-swot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ea2-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ea2-form-field label {
    font-weight: 700;
    color: #1f3769;
    margin: 0;
}

.ea2-form-control {
    width: 100%;
    border: 2px solid #29457d;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 15px;
    color: #1f2937;
    background: #ffffff;
    outline: none;
}

.ea2-form-control:focus {
    border-color: #1f3769;
    box-shadow: none;
}

.ea2-textarea {
    resize: vertical;
    min-height: 110px;
}

.ea2-select {
    min-height: 46px;
}

.ea2-field-help {
    color: #6b7280;
    font-size: 13px;
}

.ea2-checkbox-wrap {
    padding-top: 10px;
}

.ea2-checkbox {
    width: 18px;
    height: 18px;
}

.ea2-readonly-box {
    border: 2px solid #29457d;
    padding: 10px 12px;
    background: #ffffff;
    text-align: center;
}

.ea2-habitat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0 8px 0;
}

.ea2-habitat-visual {
    width: 220px;
    height: 220px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
}

.ea2-habitat-visual-label {
    color: #5f6b7a;
    font-weight: 700;
    text-align: center;
    padding: 0 12px;
}

.ea2-ohm-map-wrap {
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.ea2-ohm-map-grid {
    display: grid;
    grid-template-columns: 120px repeat(3, 88px);
    grid-template-rows: 30px repeat(3, 88px);
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.ea2-ohm-corner {
    width: 100%;
    height: 100%;
}

.ea2-ohm-header {
    font-size: 13px;
    font-weight: 700;
    color: #1f3769;
    text-align: center;
}

.ea2-ohm-row-label {
    font-size: 13px;
    font-weight: 700;
    color: #1f3769;
    text-align: right;
    padding-right: 8px;
}

.ea2-ohm-cell {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea2-ohm-cell img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.ea2-habitat-actions {
    display: flex;
    justify-content: center;
}

.ea2-primary-button,
.ea2-secondary-button,
.ea2-danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.ea2-primary-button {
    background: #1f3769;
    color: #ffffff;
}

.ea2-primary-button:hover {
    color: #ffffff;
    text-decoration: none;
    background: #15284d;
}

.ea2-secondary-button {
    background: #1f3769;
    color: #ffffff;
}

.ea2-secondary-button:hover {
    color: #ffffff;
    text-decoration: none;
    background: #15284d;
}

.ea2-danger-button {
    background: #c62828;
    color: #ffffff;
}

.ea2-danger-button:hover {
    color: #ffffff;
    text-decoration: none;
    background: #9f1f1f;
}

.ea2-save-bar {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.ea2-save-bar-inline {
    margin-top: 0;
}

/* CHALLENGES / BOOSTER CARDS */

.ea2-list-stack,
.ea2-opportunity-stack {
    display: grid;
    gap: 12px;
}

.ea2-list-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    border: 2px solid #29457d;
    padding: 10px 12px;
    background: #ffffff;
}

.ea2-list-main {
    font-weight: 600;
    color: #1f2937;
}

.ea2-inline-form {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
}

.ea2-inline-form-input input {
    width: 100%;
}

.ea2-opportunity-card {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 0;
    border: 2px solid #29457d;
    padding: 0;
    background: #ffffff;
}

.ea2-opportunity-card-main {
    padding: 14px;
}

.ea2-opportunity-card-main p {
    margin: 0 0 8px 0;
}

.ea2-opportunity-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: stretch;
    border-left: 2px solid #29457d;
}

.ea2-opportunity-card-booster {
    grid-template-columns: 1fr 180px;
}

.ea2-selected-box-title {
    background: #243f7a;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 10px 8px;
    line-height: 1.2;
}

.ea2-selection-select {
    width: 100%;
    min-height: 44px;
    border: 2px solid #29457d;
    border-left: 0;
    border-right: 0;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-align-last: center;
    background: #ffffff;
    color: #1f3769;
    appearance: none;
}

.ea2-selection-select-yes {
    background: #cfe3c2;
}

.ea2-selection-select-no {
    background: #ffffff;
}

.ea2-small-button {
    width: 100%;
    margin: 0;
    border-top: 0;
}

.ea2-selection-form-wrap {
    margin: 10px 0;
}

.ea2-selection-form-wrap select {
    width: 100%;
    border: 2px solid #29457d;
    padding: 8px 10px;
    background: #ffffff;
}

/* MATRIX */

.ea2-matrix {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 420px;
    margin: 0 auto;
    border: 2px solid #1f3769;
    background:
        linear-gradient(to right, transparent 49.5%, #cfd7e5 49.5%, #cfd7e5 50.5%, transparent 50.5%),
        linear-gradient(to bottom, transparent 49.5%, #cfd7e5 49.5%, #cfd7e5 50.5%, transparent 50.5%),
        #ffffff;
}

.ea2-matrix-grid {
    position: absolute;
    inset: 0;
}

.ea2-matrix-axis {
    position: absolute;
    font-size: 13px;
    color: #5f6b7a;
    font-weight: 600;
}

.ea2-matrix-axis-top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.ea2-matrix-axis-bottom {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.ea2-matrix-axis-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ea2-matrix-axis-right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ea2-matrix-dot {
    position: absolute;
    min-width: 56px;
    max-width: 120px;
    padding: 8px 10px;
    background: #243f7a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
}

/* INITIATIVE DESIGN */

.ea2-initiative-nav {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.ea2-initiative-nav > div:first-child {
    justify-self: start;
}

.ea2-initiative-nav > div:last-child {
    justify-self: end;
}

.ea2-initiative-top-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.ea2-initiative-top-nav > :first-child {
    justify-self: start;
}

.ea2-initiative-top-nav > :last-child {
    justify-self: end;
}

.ea2-initiative-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f3769;
    text-align: center;
    margin: 8px 0 18px 0;
}

.ea2-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 10px 16px;
    background: #243f7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0;
}

.ea2-nav-button:hover {
    color: #ffffff;
    text-decoration: none;
    background: #1f3769;
}

.ea2-nav-button-disabled {
    background: #d9d9d9;
    color: #7a7a7a;
    cursor: default;
}

.ea2-nav-button-disabled:hover {
    background: #d9d9d9;
    color: #7a7a7a;
}

/* BOOSTER COLUMNS */

.ea2-booster-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.ea2-booster-column {
    border: 2px solid #29457d;
    min-height: 320px;
    background: #ffffff;
}

.ea2-booster-column-title {
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-size: 18px;
}

.ea2-booster-column-title-explore {
    background: #7a35b3;
}

.ea2-booster-column-title-develop {
    background: #21a7df;
}

.ea2-booster-column-title-impact {
    background: #f3a614;
}

.ea2-booster-column ul {
    margin: 0;
    padding: 14px 20px;
    list-style: disc;
}

.ea2-booster-column li {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1f3769;
}

/* RIGHT PANEL */

.ea2-right-panel {
    width: 100%;
    height: 100%;
    background: #1E3259;
    padding: 10px 10px 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.ea2-polarix-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0 0 0;
    flex: 0 0 auto;
}

.ea2-polarix-image {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.ea2-polarix-box {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
}

.ea2-polarix-conversation-box {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ea2-polarix-input-box {
    flex: 0 0 auto;
    min-height: 106px;
    max-height: 160px;
    border-color: transparent;
    background: #f8f8f8;
    color: #1f2937;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ea2-polarix-box-body {
    padding: 8px;
    font-size: 13px;
    line-height: 1.45;
}

#ea2-polarix-messages {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    padding: 8px;
    text-align: left !important;
}

.ea2-polarix-message {
    margin-bottom: 12px;
    text-align: left !important;
}

.ea2-polarix-message-role {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 4px;
    text-align: left !important;
}

.ea2-polarix-message-content {
    white-space: pre-line;
    font-size: 14px;
    line-height: 1.4;
    text-align: left !important;
    word-break: break-word;
}

.ea2-polarix-message-user .ea2-polarix-message-role,
.ea2-polarix-message-user .ea2-polarix-message-content {
    color: #FFC000;
}

.ea2-polarix-message-assistant .ea2-polarix-message-role,
.ea2-polarix-message-assistant .ea2-polarix-message-content {
    color: #ffffff;
}

.ea2-polarix-sources {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left !important;
}

.ea2-polarix-sources-title {
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ea2-polarix-source-link {
    color: #9fd0ff;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: underline;
    word-break: break-word;
}

.ea2-polarix-source-link:hover {
    color: #c7e3ff;
}

.ea2-polarix-input {
    width: 100%;
    flex: 1 1 auto;
    min-height: 56px;
    resize: none;
    border: 0;
    background: transparent;
    color: #1f2937;
    padding: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.ea2-polarix-input::placeholder {
    color: #6b7280;
}

.ea2-polarix-actions-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    flex: 0 0 auto;
}

.ea2-polarix-button {
    border: 0;
    border-radius: 0;
    padding: 12px 14px;
    background: #F4A114;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    flex: 0 0 auto;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ea2-polarix-button:hover {
    opacity: 0.95;
}

.ea2-polarix-button-main {
    flex: 1 1 auto;
    width: auto;
    margin: 0;
    height: 45px;
    min-height: 45px;
}

.ea2-polarix-button-thinking {
    background: #66B5FF;
    color: #ffffff;
}

.ea2-polarix-button:disabled {
    opacity: 1;
    cursor: default;
}

.ea2-polarix-mic-button {
    flex: 0 0 58px;
    width: 58px;
    min-width: 58px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #1E3259;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    align-self: stretch;
    line-height: 0;
    overflow: hidden;
}

.ea2-polarix-mic-button:hover {
    background: #1E3259;
    opacity: 1;
}

.ea2-polarix-mic-button:focus {
    outline: none;
    box-shadow: none;
}

.ea2-polarix-mic-button.is-recording {
    background: #1E3259;
}

.ea2-polarix-mic-button:disabled {
    opacity: 0.55;
    cursor: default;
}

.ea2-polarix-mic-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
}

/* MY JOURNEY */

.ea2-myjourney-wrap {
    max-width: 980px;
}

.ea2-myjourney-org-name {
    font-size: 30px;
    font-weight: 700;
    color: #1f3769;
    margin-bottom: 14px;
}

.ea2-myjourney-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 22px;
}

.ea2-myjourney-app-card {
    min-height: 190px;
    background: #243f7a;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    padding: 20px;
}

.ea2-myjourney-app-card:hover {
    color: #ffffff;
    text-decoration: none;
    background: #1f3769;
}

.ea2-myjourney-initiatives-list,
.ea2-myjourney-members-list {
    display: grid;
    gap: 22px;
    margin-bottom: 20px;
}

.ea2-myjourney-initiative-row,
.ea2-myjourney-member-row {
    display: grid;
    grid-template-columns: 180px auto;
    align-items: center;
    justify-content: center;
    column-gap: 28px;
}

.ea2-myjourney-initiative-logo,
.ea2-myjourney-member-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea2-myjourney-initiative-logo img,
.ea2-myjourney-member-photo img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #29457d;
    background: #ffffff;
}

.ea2-myjourney-member-photo img {
    width: 90px;
    height: 90px;
}

.ea2-myjourney-logo-placeholder,
.ea2-myjourney-photo-placeholder {
    width: 180px;
    height: 120px;
    border: 2px solid #29457d;
    background: #9b9b9b;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea2-myjourney-photo-placeholder {
    width: 90px;
    height: 90px;
    font-size: 16px;
}

.ea2-myjourney-initiative-action,
.ea2-myjourney-member-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ea2-myjourney-member-name a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 42px;
    padding: 8px 18px;
    border: 2px solid #29457d;
    color: #1f3769;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    background: #ffffff;
}

.ea2-myjourney-member-name a:hover {
    text-decoration: none;
    color: #1f3769;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .ea-header {
        position: static;
        height: auto;
    }

    .ea-navbar {
        min-height: auto;
        height: auto;
    }

    .ea2-page-wrap {
        padding-top: 0;
    }

    .ea2-layout {
        display: grid;
        grid-template-columns: 184px minmax(0, 1fr);
    }

    .ea2-left-sidebar,
    .ea2-right-sidebar {
        position: static;
        width: auto;
        height: auto;
        min-height: auto;
    }

    .ea2-main-content {
        margin-left: 0;
        margin-right: 0;
    }

    .ea2-right-sidebar {
        grid-column: 1 / -1;
        background: #1E3259;
    }

    .ea2-right-panel {
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    .ea2-polarix-conversation-box {
        min-height: 220px;
    }

    .ea2-polarix-input-box {
        height: auto;
        min-height: 106px;
        max-height: none;
    }

    .ea2-polarix-input {
        min-height: 78px;
    }

    #ea2-polarix-messages {
        max-height: 260px;
    }
}

@media (max-width: 991.98px) {
    .ea2-layout {
        grid-template-columns: 1fr;
    }

    .ea2-main-content {
        padding: 16px;
    }

    .ea2-content-grid,
    .ea2-org-grid,
    .ea2-swot-grid,
    .ea2-form-grid-two,
    .ea2-booster-columns,
    .ea2-myjourney-app-grid {
        grid-template-columns: 1fr;
    }

    .ea2-opportunity-card,
    .ea2-opportunity-card-booster,
    .ea2-inline-form,
    .ea2-initiative-nav,
    .ea2-myjourney-initiative-row,
    .ea2-myjourney-member-row {
        grid-template-columns: 1fr;
    }

    .ea2-form-section {
        max-width: 100%;
    }

    .ea2-save-bar {
        justify-content: stretch;
    }

    .ea2-primary-button,
    .ea2-secondary-button,
    .ea2-danger-button {
        width: 100%;
    }

    .ea2-ohm-map-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .ea2-ohm-row-label {
        text-align: left;
        padding-right: 0;
    }

    .ea2-ohm-cell {
        width: 100%;
    }

    .ea2-matrix {
        height: 360px;
    }

    .ea2-myjourney-initiative-action,
    .ea2-myjourney-member-name {
        justify-content: center;
    }
}