.op-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 56px;
    color: #13233f;
}

.op-hero,
.op-panel,
.op-card,
.op-auth-card,
.op-action-bar {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(18, 42, 76, .07);
}

.op-hero {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.op-eyebrow {
    color: var(--brand-navy, #2A3C92);
    font-weight: 800;
    font-size: .82rem;
    margin-bottom: 4px;
}

.op-hero h1,
.op-panel h2,
.op-card h3 {
    margin: 0;
    color: #102342;
}

.op-hero h1 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.op-hero p {
    margin: 8px 0 0;
    color: #62728c;
}

.op-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.op-nav a,
.op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid #d9e4f2;
    border-radius: 10px;
    color: #31506f;
    background: #fff;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
}

.op-nav a:hover,
.op-btn:hover {
    color: var(--brand-navy, #2A3C92);
    border-color: var(--brand-cyan, #00AEEF);
}

.op-btn-primary {
    color: #fff;
    border-color: var(--brand-navy, #2A3C92);
    background: var(--brand-navy, #2A3C92);
}

.op-btn-primary:hover {
    color: #fff;
    background: var(--brand-navy-dark, #1D2D70);
}

.op-btn-soft {
    color: #0861c7;
    background: #eef6ff;
    border-color: #cde2fb;
}

.op-btn-danger {
    color: #a22b35;
    background: #fff4f5;
    border-color: #f2ccd0;
}

.op-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.op-stat {
    padding: 16px;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
}

.op-stat strong {
    display: block;
    font-size: 1.65rem;
    color: #0b65ce;
}

.op-stat span {
    color: #66758c;
    font-size: .9rem;
}

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

.op-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.op-panel {
    padding: 20px;
    margin-bottom: 18px;
}

.op-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.op-panel h2 {
    font-size: 1.15rem;
}

.op-card {
    padding: 16px;
    box-shadow: none;
}

.op-card h3 {
    font-size: 1rem;
    line-height: 1.5;
}

.op-card h3 a {
    color: inherit;
    text-decoration: none;
}

.op-card p {
    color: #66758c;
    margin: 7px 0;
}

.op-meta,
.op-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.op-meta {
    margin-top: 10px;
    color: #718096;
    font-size: .82rem;
}

.op-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf5ff;
    color: #0e61bd;
    font-size: .78rem;
    font-weight: 750;
}

.op-badge-warn {
    background: #fff6df;
    color: #8a5a00;
}

.op-badge-success {
    background: #e9f8f1;
    color: #08714c;
}

.op-inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.op-input {
    width: 100%;
    min-height: 44px;
    padding: 9px 11px;
    border: 1px solid #cedaea;
    border-radius: 9px;
    background: #fff;
    color: #182b49;
}

select.op-input {
    width: auto;
}

textarea.op-input {
    min-height: 110px;
}

.op-hero-compact {
    padding-block: 18px;
}

.op-panel-head p {
    margin: 5px 0 0;
    color: #687990;
    font-size: .88rem;
}

.op-preference-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.op-choice-group {
    margin-top: 16px;
}

.op-choice-group h3 {
    margin: 0 0 8px;
    color: #324b69;
    font-size: .92rem;
}

.op-choice-list ul {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    max-height: 190px;
    margin: 0;
    padding: 2px;
    overflow: auto;
    list-style: none;
}

.op-choice-list label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid #d9e5f2;
    border-radius: 999px;
    background: #f9fbfe;
    color: #405873;
    cursor: pointer;
    font-size: .83rem;
}

.op-choice-list label:has(input:checked) {
    color: #075fc2;
    border-color: #93bff0;
    background: #edf6ff;
}

.op-choice-pair,
.op-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.op-toggle-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.op-toggle-row > label,
.op-setting {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid #dbe6f3;
    border-radius: 12px;
    background: #fbfdff;
}

.op-toggle-row strong,
.op-setting strong,
.op-toggle-row small,
.op-setting small {
    display: block;
}

.op-toggle-row small,
.op-setting small {
    margin-top: 3px;
    color: #718198;
    font-size: .78rem;
}

.op-settings-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
}

.op-choice-list-static ul {
    display: grid;
    max-height: none;
}

.op-sticky-actions {
    position: sticky;
    z-index: 5;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #cddff3;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 36px rgba(18, 42, 76, .14);
    backdrop-filter: blur(10px);
    color: #63758c;
    font-size: .85rem;
}

.op-reset-form {
    display: flex;
    justify-content: center;
}

.op-feed-list {
    display: grid;
    gap: 9px;
}

.op-feed-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 94px;
    padding: 12px;
    border: 1px solid #e0e8f2;
    border-radius: 12px;
    background: #fff;
}

.op-feed-card h3 {
    margin: 5px 0 0;
    font-size: 1rem;
}

.op-feed-card h3 a {
    color: #142a48;
    text-decoration: none;
}

.op-feed-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    color: #0b63c9;
    background: #eaf4ff;
}

.op-feed-mark-job {
    color: #08714c;
    background: #e9f8f1;
}

.op-feed-open {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #0b63c9;
    background: #edf5ff;
}

.op-empty-inline {
    padding: 22px;
    border: 1px dashed #cddbea;
    border-radius: 12px;
    color: #697a91;
    text-align: center;
}

.op-personalization-empty {
    margin-bottom: 18px;
}

@media (max-width: 760px) {
    .op-preference-columns,
    .op-choice-pair,
    .op-settings-grid,
    .op-toggle-row {
        grid-template-columns: 1fr;
    }

    .op-sticky-actions {
        align-items: center;
        flex-direction: row;
        gap: 8px;
        padding: 8px;
    }

    .op-sticky-actions > span {
        flex: 1;
        font-size: .7rem;
        line-height: 1.35;
    }

    .op-sticky-actions .op-btn {
        min-height: 38px;
        padding-inline: 10px;
        font-size: .8rem;
    }

    .op-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .op-nav a {
        flex: 0 0 auto;
    }
}

.op-match-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
    margin-top: 5px;
    padding: 4px 8px;
    color: #14553f;
    background: #eaf8f1;
    border: 1px solid #bfe8d5;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 850;
    line-height: 1;
}

.op-match-badge small {
    padding-inline-start: 4px;
    color: inherit;
    border-inline-start: 1px solid currentColor;
    font-size: .62rem;
    opacity: .78;
}

.op-match-badge.op-match-strong {
    color: #095f46;
    background: #dcf8eb;
    border-color: #90dfbd;
}

.op-match-badge.op-match-good {
    color: #1553a3;
    background: #edf5ff;
    border-color: #bdd8fa;
}

.op-match-badge.op-match-possible {
    color: #805213;
    background: #fff7e5;
    border-color: #f0d69b;
}

.op-match-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 15px 17px;
    color: #174938;
    background: linear-gradient(135deg, #ecfaf4, #f7fcfa);
    border: 1px solid #bfe7d6;
    border-radius: 15px;
}

.op-match-panel-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #087b56;
    background: #d7f5e8;
    border-radius: 12px;
}

.op-match-panel span {
    font-size: .74rem;
    font-weight: 750;
}

.op-match-panel h2 {
    margin: 2px 0 4px;
    color: #113f31;
    font-size: 1rem;
}

.op-match-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin: 0;
    padding-inline-start: 18px;
    font-size: .72rem;
}

.op-match-panel > a {
    color: #0c6d50;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}

.op-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(290px, .7fr);
    align-items: start;
    gap: 16px;
}

.op-profile-side {
    display: grid;
    gap: 16px;
}

.op-profile-side .op-panel h2 {
    margin: 0 0 8px;
    color: #17304f;
    font-size: 1rem;
}

.op-muted {
    color: #6c7b90;
    font-size: .79rem;
    line-height: 1.65;
}

.op-analysis-state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #85591d;
    background: #fff7e8;
    border: 1px solid #efd9a8;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 850;
}

.op-analysis-state.is-ready {
    color: #0a684b;
    background: #eaf9f2;
    border-color: #b8e7d2;
}

.op-document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.op-keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.op-keyword-cloud span {
    padding: 5px 8px;
    color: #31557f;
    background: #f1f6fc;
    border: 1px solid #dce8f6;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 750;
}

.op-checkbox-grid > div,
.op-checkbox-grid > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
    list-style: none;
}

.op-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
}

@media (max-width: 860px) {
    .op-profile-grid {
        grid-template-columns: 1fr;
    }

    .op-match-panel {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .op-match-panel > a {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .op-match-panel {
        grid-template-columns: 1fr;
    }

    .op-match-panel-icon {
        display: none;
    }

    .op-match-panel > a {
        grid-column: 1;
    }

    .op-checkbox-grid > div,
    .op-checkbox-grid > ul {
        grid-template-columns: 1fr;
    }
}

.op-form-row {
    margin-bottom: 15px;
}

.op-form-row label,
.op-form label {
    display: block;
    font-weight: 750;
    margin-bottom: 6px;
}

.op-form ul {
    list-style: none;
    padding: 0;
}

.op-form .errorlist {
    color: #a62b35;
    margin: 4px 0;
}

.op-auth-card {
    width: min(560px, calc(100% - 32px));
    margin: 48px auto;
    padding: 28px;
}

.op-auth-card h1 {
    margin: 4px 0 8px;
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    line-height: 1.25;
}

.op-auth-card > p {
    margin: 0 0 22px;
    color: #66758c;
}

.op-auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    font-weight: 750;
}

.op-auth-links a {
    color: #0b63c9;
}

.op-register-card {
    width: min(760px, calc(100% - 32px));
}

.account-type-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.account-type-picker legend {
    grid-column: 1 / -1;
    margin-bottom: 7px;
    font-weight: 800;
}

.account-type-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    margin: 0 !important;
    padding: 11px 13px;
    border: 1px solid #cfdbeb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.account-type-option:has(input:checked) {
    color: #075dbd;
    border-color: #72aef2;
    background: #edf6ff;
    box-shadow: 0 0 0 2px rgba(52, 132, 223, .1);
}

.account-type-option input {
    width: 17px;
    height: 17px;
}

.account-type-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    color: #1265c9;
    background: #e7f2ff;
}

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

.organization-registration-fields {
    margin: 5px 0 20px;
    padding: 16px;
    border: 1px solid #d7e4f2;
    border-radius: 14px;
    background: #f8fbff;
}

.organization-registration-fields[hidden] {
    display: none;
}

.op-register-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.op-register-section-head > i {
    color: #1265c9;
}

.op-register-section-head strong,
.op-register-section-head small {
    display: block;
}

.op-register-section-head small,
.op-form-row > small {
    color: #6b7d94;
}

.op-auth-card select.op-input {
    width: 100%;
}

@media (max-width: 620px) {
    .account-type-picker,
    .op-register-grid {
        grid-template-columns: 1fr;
    }

    .op-auth-links {
        align-items: flex-start;
        flex-direction: column;
    }
}

.op-action-bar {
    padding: 12px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: none;
}

.op-action-bar .op-actions {
    flex-wrap: nowrap;
}

.op-action-bar .op-inline-form {
    width: auto;
    margin-top: 0;
    flex-direction: row;
    flex-wrap: nowrap;
}

.op-action-bar .op-input,
.op-action-bar .op-btn {
    min-height: 40px;
}

.op-calendar-menu {
    position: relative;
}

.op-calendar-menu > summary {
    list-style: none;
    white-space: nowrap;
}

.op-calendar-menu > summary::-webkit-details-marker {
    display: none;
}

.op-calendar-menu[open] > summary {
    color: var(--brand-navy, #2A3C92);
    border-color: var(--brand-cyan, #00AEEF);
    background: #f4faff;
}

.op-calendar-chevron {
    margin-inline-start: 2px;
    font-size: 0.72rem;
    transition: transform 0.18s ease;
}

.op-calendar-menu[open] .op-calendar-chevron {
    transform: rotate(180deg);
}

.op-calendar-options {
    position: absolute;
    z-index: 50;
    inset-inline-end: 0;
    top: calc(100% + 8px);
    width: 280px;
    padding: 7px;
    border: 1px solid #d9e4f2;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 35, 66, 0.16);
}

.op-calendar-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    color: #173454;
    text-decoration: none;
}

.op-calendar-options a:hover,
.op-calendar-options a:focus-visible {
    color: var(--brand-navy, #2A3C92);
    background: #f1f7ff;
    outline: none;
}

.op-calendar-provider-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 9px;
    background: #f2f6fb;
    font-size: 1rem;
}

.op-calendar-google {
    color: #4285f4;
}

.op-calendar-outlook {
    color: #0078d4;
}

.op-calendar-apple {
    color: #26384d;
}

.op-calendar-provider-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
    text-align: start;
}

.op-calendar-provider-copy strong {
    font-size: 0.9rem;
}

.op-calendar-provider-copy small {
    color: #6a7890;
    font-size: 0.75rem;
    font-weight: 500;
}

.op-action-copy strong,
.op-action-copy small {
    display: block;
}

.op-action-copy small {
    color: #6a7890;
    margin-top: 3px;
}

@media (max-width: 620px) {
    .op-calendar-options {
        width: min(280px, calc(100vw - 32px));
    }
}

.op-intelligence-list {
    display: grid;
    gap: 10px;
}

.op-intelligence-item {
    padding: 12px;
    border: 1px solid #e3e9f1;
    border-radius: 10px;
    background: #fbfdff;
}

.op-intelligence-item strong {
    display: block;
    margin-bottom: 5px;
}

.op-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.op-timeline li {
    padding: 10px 14px;
    border-inline-start: 3px solid #b9d6f7;
    margin-bottom: 8px;
    background: #f8fbff;
}

.op-empty {
    color: #748299;
    text-align: center;
    padding: 24px;
}

.op-bars {
    display: grid;
    gap: 10px;
}

.op-bar {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) 3fr auto;
    gap: 10px;
    align-items: center;
}

.op-bar-track {
    height: 9px;
    overflow: hidden;
    border-radius: 99px;
    background: #e9eef5;
}

.op-bar-fill {
    height: 100%;
    min-width: 4px;
    border-radius: inherit;
    background: #1670dc;
}

@media (max-width: 800px) {
    .op-shell {
        width: min(100% - 20px, 1180px);
        margin-top: 16px;
    }

    .op-hero,
    .op-action-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .op-stats,
    .op-grid,
    .op-grid-3 {
        grid-template-columns: 1fr;
    }

    .op-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-bar {
        grid-template-columns: 1fr auto;
    }

    .op-bar-track {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .op-hero-compact {
        align-items: center;
        flex-direction: row;
        padding: 14px;
    }

    .op-hero-compact > div {
        min-width: 0;
        flex: 1;
    }

    .op-hero-compact .op-eyebrow {
        font-size: .68rem;
    }

    .op-hero-compact h1 {
        font-size: 1.35rem;
    }

    .op-hero-compact p {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 4px;
        font-size: .76rem;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .op-hero-compact .op-btn {
        max-width: 108px;
        min-height: 36px;
        padding: 6px 9px;
        font-size: .75rem;
        text-align: center;
    }

    .op-panel {
        padding: 14px;
    }

    .op-feed-card {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 104px;
        padding: 9px;
    }

    .op-feed-mark {
        display: none;
    }

    .op-feed-card h3 {
        display: -webkit-box;
        overflow: hidden;
        font-size: .9rem;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .op-feed-card .op-meta {
        gap: 4px 7px;
        margin-top: 6px;
        font-size: .72rem;
    }

    .op-feed-open {
        width: 30px;
        height: 30px;
    }
}

.op-application-form {
    max-width: 820px;
    margin-inline: auto;
}

.op-callout,
.op-privacy-note {
    margin-bottom: 16px;
    padding: 12px 14px;
    color: #32435e;
    background: #f5f9ff;
    border: 1px solid #dce9fa;
    border-radius: 12px;
    line-height: 1.65;
}

.op-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #18624a;
    background: #f0faf6;
    border-color: #ccebdd;
    font-size: .83rem;
}

.op-form-row {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.op-form-row > label {
    color: #20334f;
    font-size: .84rem;
    font-weight: 800;
}

.op-form-row > small {
    color: #6d7a8e;
    font-size: .74rem;
}

.op-review-list,
.op-notification-list {
    display: grid;
    gap: 10px;
}

.op-review-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid #e0e7f0;
    border-radius: 14px;
}

.op-review-card h3 {
    margin: 6px 0 2px;
    color: #142742;
    font-size: 1rem;
}

.op-review-card p {
    margin: 0;
    color: #66758a;
    font-size: .78rem;
}

.op-answer-list {
    display: grid;
    gap: 7px;
    margin: 12px 0 0;
}

.op-answer-list dt {
    color: #334968;
    font-size: .76rem;
    font-weight: 800;
}

.op-answer-list dd {
    margin: 0;
    color: #5d6f87;
    font-size: .78rem;
}

.op-review-card .op-inline-form {
    min-width: 260px;
}

.op-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 15px;
    color: #31445f;
    background: #fff;
    border: 1px solid #e0e7f0;
    border-radius: 13px;
    text-decoration: none !important;
}

.op-notification.is-unread {
    background: #f1f7ff;
    border-color: #bcd8fb;
}

.op-notification > i {
    margin-top: 3px;
    color: var(--brand-navy, #2A3C92);
}

.op-notification span {
    display: grid;
    gap: 3px;
}

.op-notification small {
    color: #6b788b;
}

.op-nav-count {
    display: inline-grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding-inline: 5px;
    color: #fff;
    background: #e13f48;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 850;
}

@media (max-width: 760px) {
    .op-review-card {
        align-items: stretch;
        flex-direction: column;
    }

    .op-review-card .op-actions,
    .op-review-card .op-inline-form {
        width: 100%;
    }
}
