:root {
    --qhc-dashboard-bg: #f7f7fa;
}

body.qhc-dashboard-page,
body.qhc-access-page {
    background: var(--qhc-dashboard-bg);
}

.qhc-dashboard,
.qhc-access,
.qhc-dashboard * ,
.qhc-access * {
    box-sizing: border-box;
}

.qhc-dashboard {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 38px 0 64px;
    color: var(--qhc-text);
}

.qhc-dashboard__topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.qhc-dashboard__topbar h1,
.qhc-dashboard__section-heading h2,
.qhc-dashboard__panel h3,
.qhc-access h1,
.qhc-access h2 {
    color: var(--qhc-plum);
    margin-top: 0;
}

.qhc-dashboard__topbar h1 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 8px;
    font-weight: 800;
}

.qhc-dashboard__topbar p,
.qhc-dashboard__section-heading p,
.qhc-dashboard__panel p,
.qhc-access p {
    color: var(--qhc-muted);
}

.qhc-dashboard__eyebrow {
    margin: 0 0 6px !important;
    color: var(--qhc-fuchsia) !important;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
}

.qhc-dashboard__top-actions,
.qhc-dashboard__inline-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.qhc-dashboard__button,
.qhc-dashboard button.qhc-dashboard__button,
.qhc-access #wp-submit {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 19px;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.qhc-dashboard__button--primary,
.qhc-access #wp-submit {
    background: var(--qhc-fuchsia) !important;
    border-color: var(--qhc-fuchsia) !important;
    color: #fff !important;
}

.qhc-dashboard__button--primary:hover,
.qhc-dashboard__button--primary:focus-visible,
.qhc-access #wp-submit:hover,
.qhc-access #wp-submit:focus-visible {
    background: var(--qhc-teal) !important;
    border-color: var(--qhc-teal) !important;
    color: #fff !important;
}

.qhc-dashboard__button--ghost {
    background: #fff !important;
    border-color: var(--qhc-border) !important;
    color: var(--qhc-plum) !important;
}

.qhc-dashboard__button--ghost:hover,
.qhc-dashboard__button--ghost:focus-visible {
    border-color: var(--qhc-blue) !important;
    color: var(--qhc-blue) !important;
    background: #f2f7fc !important;
}

.qhc-dashboard__button--logout {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--qhc-muted) !important;
}

.qhc-dashboard__button--logout:hover,
.qhc-dashboard__button--logout:focus-visible {
    color: var(--qhc-fuchsia) !important;
    background: #fff0f6 !important;
}

.qhc-dashboard__text-button {
    border: 0;
    background: transparent;
    color: var(--qhc-fuchsia);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    padding: 10px 4px;
}

.qhc-dashboard__businessbar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--qhc-border);
    border-radius: 20px;
    padding: 14px 18px;
    margin-bottom: 18px;
}

.qhc-dashboard__business-avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--qhc-yellow), var(--qhc-fuchsia));
    display: grid;
    place-items: center;
    color: var(--qhc-plum);
    font-weight: 900;
    font-size: 20px;
}

.qhc-dashboard__business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qhc-dashboard__business-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.qhc-dashboard__business-copy strong {
    color: var(--qhc-plum);
    font-size: 17px;
}

.qhc-dashboard__business-copy span {
    color: var(--qhc-teal);
    font-size: 12px;
    font-weight: 800;
}

.qhc-dashboard__business-switcher {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qhc-dashboard__business-switcher label {
    color: var(--qhc-muted);
    font-size: 12px;
    font-weight: 700;
}

.qhc-dashboard__business-switcher select {
    min-width: 220px;
}

.qhc-dashboard__notice {
    margin: 0 0 18px;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.qhc-dashboard__notice--success {
    background: #eaf9f4;
    color: #08785f;
    border: 1px solid #bdebdc;
}

.qhc-dashboard__notice--error {
    background: #fff0f2;
    color: #a7263d;
    border: 1px solid #f4c7d0;
}

.qhc-dashboard__layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.qhc-dashboard__sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid var(--qhc-border);
    border-radius: 20px;
    padding: 10px;
}

.qhc-dashboard__sidebar nav {
    display: grid;
    gap: 4px;
}

.qhc-dashboard__sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--qhc-text);
    font-weight: 750;
    text-decoration: none;
}

.qhc-dashboard__sidebar nav a > span {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #f4f3f7;
    color: var(--qhc-plum);
    font-size: 13px;
}

.qhc-dashboard__sidebar nav a:hover,
.qhc-dashboard__sidebar nav a:focus-visible {
    background: #f8f6f9;
}

.qhc-dashboard__sidebar nav a.is-active {
    background: #fff0f6;
    color: var(--qhc-fuchsia);
}

.qhc-dashboard__sidebar nav a.is-active > span {
    background: var(--qhc-fuchsia);
    color: #fff;
}

.qhc-dashboard__completion-mini {
    margin: 14px 4px 4px;
    padding: 14px 10px 8px;
    border-top: 1px solid var(--qhc-border);
}

.qhc-dashboard__completion-mini > div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.qhc-dashboard__completion-mini strong {
    color: var(--qhc-plum);
    font-size: 20px;
}

.qhc-dashboard__completion-mini span {
    color: var(--qhc-muted);
    font-size: 11px;
}

.qhc-dashboard__progress {
    height: 7px;
    border-radius: 999px;
    overflow: hidden;
    background: #ececf1;
    margin-top: 9px;
}

.qhc-dashboard__progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--qhc-fuchsia), var(--qhc-teal));
}

.qhc-dashboard__content {
    min-width: 0;
}

.qhc-dashboard__section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 4px 0 20px;
}

.qhc-dashboard__section-heading h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 6px;
    font-weight: 800;
}

.qhc-dashboard__section-heading p:last-child {
    margin-bottom: 0;
}

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

.qhc-dashboard__stats article,
.qhc-dashboard__panel {
    background: #fff;
    border: 1px solid var(--qhc-border);
    border-radius: 20px;
}

.qhc-dashboard__stats article {
    padding: 20px;
    min-width: 0;
}

.qhc-dashboard__stats article > span {
    display: block;
    color: var(--qhc-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.qhc-dashboard__stats article > strong {
    display: block;
    color: var(--qhc-plum);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
}

.qhc-dashboard__stats article a,
.qhc-dashboard__text-link {
    color: var(--qhc-blue);
    font-weight: 800;
    text-decoration: none;
}

.qhc-dashboard__stats article small {
    display: block;
    color: var(--qhc-muted);
    line-height: 1.4;
}

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

.qhc-dashboard__panel {
    padding: clamp(22px, 3vw, 30px);
}

.qhc-dashboard__panel--accent {
    background: linear-gradient(135deg, #fff0f6 0%, #fffaf6 100%);
    border-color: rgba(233, 0, 100, .14);
}

.qhc-dashboard__panel h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.qhc-dashboard__form {
    display: grid;
    gap: 18px;
}

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

.qhc-field {
    display: grid;
    gap: 7px;
    align-content: start;
    min-width: 0;
}

.qhc-field--wide {
    grid-column: 1 / -1;
}

.qhc-field label,
.qhc-taxonomy-box legend {
    color: var(--qhc-plum);
    font-size: 13px;
    font-weight: 800;
}

.qhc-field label span {
    color: var(--qhc-muted);
    font-weight: 500;
}

.qhc-field input,
.qhc-field textarea,
.qhc-field select,
.qhc-dashboard__business-switcher select,
.qhc-hours-editor input[type="time"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #dfe1e8 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--qhc-text) !important;
    padding: 10px 12px !important;
    font: inherit !important;
    box-shadow: none !important;
}

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

.qhc-field input:focus,
.qhc-field textarea:focus,
.qhc-field select:focus,
.qhc-dashboard__business-switcher select:focus,
.qhc-hours-editor input[type="time"]:focus {
    outline: 3px solid rgba(7, 91, 168, .12);
    border-color: var(--qhc-blue) !important;
}

.qhc-field small {
    color: var(--qhc-muted);
}

.qhc-dashboard__subheading {
    margin-bottom: 18px;
}

.qhc-dashboard__subheading h3,
.qhc-dashboard__subheading p {
    margin-top: 0;
}

.qhc-dashboard__subheading p {
    margin-bottom: 0;
}

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

.qhc-taxonomy-box {
    min-width: 0;
    padding: 18px;
    margin: 0;
    border: 1px solid var(--qhc-border);
    border-radius: 16px;
}

.qhc-taxonomy-box legend {
    padding: 0 5px;
}

.qhc-taxonomy-box > p {
    margin: 0 0 13px;
    font-size: 12px;
}

.qhc-check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qhc-check-grid label {
    position: relative;
    cursor: pointer;
}

.qhc-check-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.qhc-check-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5f4f7;
    border: 1px solid transparent;
    color: var(--qhc-text);
    font-size: 12px;
    font-weight: 750;
}

.qhc-check-grid input:checked + span {
    background: #fff0f6;
    border-color: rgba(233, 0, 100, .22);
    color: var(--qhc-fuchsia);
}

.qhc-check-grid input:focus-visible + span {
    outline: 3px solid rgba(7, 91, 168, .16);
}

.qhc-dashboard__savebar {
    position: sticky;
    bottom: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 14px 13px 18px;
    border: 1px solid var(--qhc-border);
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 14px 34px rgba(24, 28, 45, .12);
    backdrop-filter: blur(12px);
}

.qhc-dashboard__savebar > span {
    color: var(--qhc-muted);
    font-size: 12px;
}

.qhc-hours-editor {
    padding: 10px 24px;
}

.qhc-hours-editor__row {
    display: grid;
    grid-template-columns: 130px 120px minmax(150px, 1fr) minmax(150px, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 74px;
    border-bottom: 1px solid var(--qhc-border);
}

.qhc-hours-editor__row:last-child {
    border-bottom: 0;
}

.qhc-hours-editor__row > strong {
    color: var(--qhc-plum);
}

.qhc-hours-editor__row > label:not(.qhc-switch) {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px;
    align-items: center;
    color: var(--qhc-muted);
    font-size: 11px;
    font-weight: 700;
}

.qhc-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--qhc-muted);
    font-size: 12px;
    font-weight: 700;
}

.qhc-switch input {
    width: 18px;
    height: 18px;
    accent-color: var(--qhc-fuchsia);
}

.qhc-hours-editor__row.is-closed input[type="time"] {
    opacity: .45;
    pointer-events: none;
}

.qhc-dashboard__maps-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.qhc-dashboard__maps-box .qhc-field {
    grid-column: 1 / -1;
}

.qhc-featured-picker {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f2f6;
    margin-bottom: 14px;
}

.qhc-featured-picker img,
.qhc-featured-picker .qhc-photo-placeholder {
    width: 100%;
    height: 100%;
}

.qhc-featured-picker img {
    display: block;
    object-fit: cover;
}

.qhc-photo-placeholder {
    display: grid;
    place-items: center;
    color: var(--qhc-muted);
    font-weight: 700;
}

.qhc-gallery-editor {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.qhc-gallery-editor li {
    position: relative;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f2f6;
}

.qhc-gallery-editor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qhc-gallery-editor button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(24, 28, 45, .82);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.qhc-dashboard__empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    padding: 50px 24px;
    background: #fff;
    border: 1px solid var(--qhc-border);
    border-radius: 24px;
}

.qhc-dashboard__empty-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #fff0f6;
    color: var(--qhc-fuchsia);
    font-size: 30px;
    margin-bottom: 14px;
}

.qhc-dashboard__empty h2 {
    color: var(--qhc-plum);
    margin: 0 0 8px;
}

.qhc-dashboard__empty p {
    max-width: 600px;
    color: var(--qhc-muted);
    margin: 0 0 18px;
}

/* Acceso */
.qhc-access {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0;
}

.qhc-access__card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--qhc-border);
    border-radius: 28px;
    box-shadow: var(--qhc-shadow);
}

.qhc-access__intro,
.qhc-access__form {
    padding: clamp(34px, 6vw, 64px);
}

.qhc-access__intro {
    display: grid;
    align-content: center;
    background: linear-gradient(145deg, #fff0f6, #fffaf6 65%);
}

.qhc-access__intro h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 850;
    margin-bottom: 16px;
}

.qhc-access__form h2 {
    font-size: 26px;
    margin-bottom: 22px;
}

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

.qhc-access__form p {
    margin: 0;
}

.qhc-access__form label {
    display: block;
    color: var(--qhc-plum);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.qhc-access__form input[type="text"],
.qhc-access__form input[type="password"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dfe1e8;
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
}

.qhc-access__form .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--qhc-muted);
}

.qhc-access__form .login-submit {
    margin-top: 4px;
}

.qhc-access #wp-submit {
    width: 100%;
}

.qhc-access__help {
    margin-top: 14px !important;
}

.qhc-access__help a {
    color: var(--qhc-blue);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1050px) {
    .qhc-dashboard__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qhc-dashboard__layout {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .qhc-hours-editor__row {
        grid-template-columns: 100px 100px 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 820px) {
    .qhc-dashboard {
        width: min(100% - 24px, 760px);
        padding-top: 24px;
    }

    .qhc-dashboard__topbar {
        display: block;
    }

    .qhc-dashboard__top-actions {
        margin-top: 14px;
    }

    .qhc-dashboard__layout {
        display: block;
    }

    .qhc-dashboard__sidebar {
        position: static;
        margin-bottom: 18px;
        overflow-x: auto;
        padding: 7px;
        scrollbar-width: none;
    }

    .qhc-dashboard__sidebar::-webkit-scrollbar {
        display: none;
    }

    .qhc-dashboard__sidebar nav {
        display: flex;
        width: max-content;
    }

    .qhc-dashboard__sidebar nav a {
        white-space: nowrap;
    }

    .qhc-dashboard__completion-mini {
        display: none;
    }

    .qhc-dashboard__business-switcher {
        width: 100%;
        margin: 10px 0 0;
    }

    .qhc-dashboard__businessbar {
        flex-wrap: wrap;
    }

    .qhc-dashboard__business-switcher select {
        min-width: 0;
        flex: 1;
    }

    .qhc-taxonomy-grid,
    .qhc-dashboard__next-grid,
    .qhc-dashboard__photo-columns {
        grid-template-columns: 1fr;
    }

    .qhc-hours-editor__row {
        grid-template-columns: 1fr 1fr;
        padding: 14px 0;
    }

    .qhc-hours-editor__row > label:not(.qhc-switch) {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .qhc-dashboard__maps-box {
        grid-template-columns: 1fr;
    }

    .qhc-dashboard__maps-box .qhc-field {
        grid-column: 1;
    }

    .qhc-access__card {
        grid-template-columns: 1fr;
    }

    .qhc-access {
        padding: 34px 0;
    }
}

@media (max-width: 600px) {
    .qhc-dashboard {
        width: calc(100% - 20px);
        padding-bottom: 88px;
    }

    .qhc-dashboard__topbar h1 {
        font-size: 31px;
    }

    .qhc-dashboard__top-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .qhc-dashboard__button {
        text-align: center;
    }

    .qhc-dashboard__form-grid {
        grid-template-columns: 1fr;
    }

    .qhc-field--wide {
        grid-column: 1;
    }

    .qhc-dashboard__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .qhc-dashboard__stats article {
        padding: 16px;
    }

    .qhc-dashboard__stats article > strong {
        font-size: 27px;
    }

    .qhc-dashboard__panel {
        padding: 20px 16px;
        border-radius: 17px;
    }

    .qhc-dashboard__savebar {
        bottom: 8px;
        padding: 9px;
    }

    .qhc-dashboard__savebar > span {
        display: none;
    }

    .qhc-dashboard__savebar .qhc-dashboard__button {
        width: 100%;
    }

    .qhc-hours-editor {
        padding: 8px 14px;
    }

    .qhc-hours-editor__row {
        grid-template-columns: 1fr auto;
    }

    .qhc-hours-editor__row > label:not(.qhc-switch) {
        grid-column: span 1;
    }

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

    .qhc-access {
        width: calc(100% - 20px);
    }

    .qhc-access__intro,
    .qhc-access__form {
        padding: 30px 22px;
    }
}

/* QHC 0.4.9 · Promociones y eventos */
.qhc-dashboard__commerce-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 18px;
    align-items: start;
}

.qhc-dashboard__content-image {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--qhc-border);
    border-radius: 18px;
    background: #fafafd;
}

.qhc-dashboard__content-image > div:first-child {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f1f5;
}

.qhc-dashboard__content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qhc-dashboard__content-image strong {
    display: block;
    color: var(--qhc-plum);
    margin-bottom: 4px;
}

.qhc-dashboard__content-image p {
    margin: 0 0 10px;
}

.qhc-dashboard__content-list {
    display: grid;
    gap: 12px;
}

.qhc-dashboard__content-list > article {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--qhc-border);
    border-radius: 16px;
    background: #fff;
}

.qhc-dashboard__content-list > article > div:first-child {
    width: 76px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f3f7;
}

.qhc-dashboard__content-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qhc-dashboard__content-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--qhc-fuchsia);
    font-size: 28px;
    font-weight: 900;
}

.qhc-dashboard__content-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.qhc-dashboard__content-copy > strong {
    color: var(--qhc-plum);
    font-size: 16px;
    line-height: 1.25;
}

.qhc-dashboard__content-copy > small {
    color: var(--qhc-muted);
}

.qhc-dashboard__status {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.qhc-dashboard__status--active {
    background: #e7f8f1;
    color: #08785f;
}

.qhc-dashboard__status--scheduled {
    background: #eef5ff;
    color: #175da7;
}

.qhc-dashboard__status--expired {
    background: #f1f1f4;
    color: #6e7280;
}

.qhc-dashboard__status--draft {
    background: #fff5dd;
    color: #8b5c00;
}

.qhc-dashboard__text-button--danger {
    color: #b4233e !important;
    padding: 0 !important;
}

.qhc-dashboard__content-copy .qhc-dashboard__inline-actions {
    gap: 12px;
    margin-top: 3px;
}

.qhc-dashboard__content-copy form {
    margin: 0;
}

.qhc-switch--standalone {
    min-height: 46px;
    align-items: center;
}

@media (max-width: 980px) {
    .qhc-dashboard__commerce-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .qhc-dashboard__content-image {
        grid-template-columns: 1fr;
    }

    .qhc-dashboard__content-image > div:first-child {
        max-width: 240px;
    }

    .qhc-dashboard__content-list > article {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .qhc-dashboard__content-list > article > div:first-child {
        width: 64px;
        height: 64px;
    }
}
