.powell-auction-pc {
    --powell-auction-blue: #5086f1;
    --powell-auction-blue-dark: #2563eb;
    --powell-auction-blue-soft: #edf5ff;
    --powell-auction-page: #f2f6fa;
    --powell-auction-line: #e6edf7;
    --powell-auction-red: #f04438;
    --powell-auction-text: #102033;
    --powell-auction-ink: #172033;
    --powell-auction-muted: #64748b;
    --powell-auction-soft: #f6f9ff;
    --powell-auction-line-accent: #dbe7fb;
    padding: 20px 0 40px;
    color: var(--ls-text, var(--powell-auction-text));
    box-sizing: border-box;
}

.powell-auction-pc-app {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.powell-auction-pc-loading {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-hero {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 20px 24px;
    background: var(--ls-bg-card, #fff);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-title {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.powell-auction-pc-title .powell-auction-pc-main-title {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
}

.powell-auction-pc-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.powell-auction-pc-stats {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-stat {
    display: grid;
    gap: 5px;
    min-width: 72px;
    padding: 8px 12px;
    border-right: 1px solid var(--ls-border-light, #eef1f6);
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-stat:last-child {
    border-right: 0;
}

.powell-auction-pc-stat span:last-child {
    color: var(--ls-text, #172033);
    font-size: 19px;
    line-height: 1;
}

.powell-auction-pc-stat span {
    color: var(--ls-text-muted, #8a94a6);
    font-size: 12px;
}

.powell-auction-pc-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.powell-auction-pc-btn {
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    border: 1px solid var(--ls-primary, #2f7cf6);
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.powell-auction-pc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgb(47 124 246 / 18%);
}

.powell-auction-pc-btn.is-ghost {
    background: #fff;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-toolbar {
    display: grid;
    grid-template-columns: auto auto minmax(280px, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-tabs {
    display: flex;
    gap: 8px;
}

.powell-auction-pc-orders {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.powell-auction-pc-order-select {
    width: 132px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-primary, #101828);
    outline: 0;
}

.powell-auction-pc-tabs button,
.powell-auction-pc-orders button {
    height: 34px;
    padding: 0 14px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-tabs button.is-active,
.powell-auction-pc-orders button.is-active {
    border-color: var(--ls-primary, #2f7cf6);
    color: var(--ls-primary, #2f7cf6);
    background: var(--ls-primary-soft, #eef5ff);
}

.powell-auction-pc-search {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 36px;
    padding: 2px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    transition: border-color .16s ease, background .16s ease;
}

.powell-auction-pc-search:focus-within {
    border-color: var(--ls-primary, #2f7cf6);
    background: #fff;
}

.powell-auction-pc-search input {
    width: 100%;
    height: 30px;
    min-width: 0;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--ls-text-primary, #101828);
    outline: 0;
}

.powell-auction-pc-search input::placeholder {
    color: var(--ls-text-muted, #8a94a6);
}

.powell-auction-pc-search button {
    width: 36px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border: 0;
    border-radius: 6px;
    background: var(--ls-primary-soft, #eef5ff);
    color: var(--ls-primary, #2f7cf6);
    cursor: pointer;
    transition: background .16s ease, color .16s ease;
}

.powell-auction-pc-search button:hover {
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
}

.powell-auction-pc-search button:focus-visible {
    outline: 1px solid var(--ls-primary, #2f7cf6);
    outline-offset: 1px;
}

.powell-auction-pc-cats {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.powell-auction-pc-cats button {
    height: 30px;
    padding: 0 12px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-cats button.is-active {
    border-color: var(--ls-primary, #2f7cf6);
    color: var(--ls-primary, #2f7cf6);
    background: var(--ls-primary-soft, #eef5ff);
}

.powell-auction-pc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 14px;
    align-items: start;
}

.powell-auction-pc-layout.is-list-only {
    grid-template-columns: 1fr;
}

.powell-auction-pc-list {
    min-width: 0;
}

.powell-auction-pc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.powell-auction-pc-card {
    overflow: hidden;
    background: var(--ls-bg-card, #fff);
    border: 1px solid #dfe8f4;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgb(36 62 102 / 4%);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.powell-auction-pc-card:hover {
    transform: translateY(-2px);
    border-color: var(--powell-auction-blue);
    box-shadow: 0 14px 30px rgb(80 134 241 / 14%);
}

.powell-auction-pc-cover {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(135deg, #f8fbff, #eef5ff);
}

.powell-auction-pc-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-cover span {
    position: absolute;
    right: 10px;
    left: auto;
    top: 10px;
    padding: 4px 8px;
    border: 0;
    border-radius: 0 0 0 8px;
    background: #2f6de0;
    color: #fff;
    font-size: 12px;
}

.powell-auction-pc-cover em {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 4px 8px;
    background: rgb(255 255 255 / 92%);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    color: var(--ls-danger, #ef4444);
    font-size: 12px;
    font-style: normal;
}

.powell-auction-pc-cover-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 36px;
}

.powell-auction-pc-card-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 15px;
}

.powell-auction-pc-card-meta {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
}

.powell-auction-pc-card-body .powell-auction-pc-title-line {
    margin: 0;
    min-height: 45px;
    color: var(--powell-auction-ink);
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-card-body p {
    margin: 0;
    color: var(--ls-text-secondary, #667085);
    font-size: 13px;
    line-height: 1.55;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-price {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
}

.powell-auction-pc-price span:nth-of-type(2) {
    color: var(--powell-auction-red);
    font-size: 13px;
}

.powell-auction-pc-price span {
    color: #111827;
    font-size: 13px;
}

.powell-auction-pc-side {
    position: sticky;
    top: 72px;
}

.powell-auction-pc-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: var(--ls-bg-card, #fff);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.powell-auction-pc-detail.is-standalone .powell-auction-pc-detail-price {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
}

.powell-auction-pc-detail.is-standalone .powell-auction-pc-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.powell-auction-pc-detail.is-standalone .powell-auction-pc-detail-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.powell-auction-pc-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.powell-auction-pc-side-head .powell-auction-pc-section-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.powell-auction-pc-side-head button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-tertiary, #98a2b3);
    cursor: pointer;
}

.powell-auction-pc-detail-price {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #f3f7ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
}

.powell-auction-pc-detail-price span {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
}

.powell-auction-pc-detail-price span:nth-of-type(2) {
    color: var(--powell-auction-red);
    font-size: 28px;
}

.powell-auction-pc-detail-price em {
    color: var(--ls-text-secondary, #667085);
    font-style: normal;
}

.powell-auction-pc-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.powell-auction-pc-gallery button {
    aspect-ratio: 1;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
    cursor: zoom-in;
}

.powell-auction-pc-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.powell-auction-pc-detail-meta > span {
    display: grid;
    gap: 3px;
    padding: 9px 10px;
    background: var(--ls-bg-soft, #f7f9fc);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-detail-meta > span > span {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
}

.powell-auction-pc-detail-desc {
    margin: 0;
    line-height: 1.75;
    white-space: normal;
}

.powell-auction-pc-detail-desc h2 {
    margin: 14px 0 8px;
    color: var(--ls-text, #172033);
    font-size: 20px;
    line-height: 1.45;
}

.powell-auction-pc-detail-desc h3 {
    margin: 12px 0 6px;
    color: var(--ls-text, #172033);
    font-size: 17px;
    line-height: 1.45;
}

.powell-auction-pc-detail-desc p {
    margin: 0 0 10px;
}

.powell-auction-pc-detail-desc ul {
    margin: 0 0 10px 20px;
}

.powell-auction-pc-detail-desc ol {
    margin: 0 0 10px 20px;
}

.powell-auction-pc-detail-desc li {
    margin: 4px 0;
}

.powell-auction-pc-detail-desc img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
}

.powell-auction-pc-detail-desc video {
    max-width: 100%;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
}

.powell-auction-pc-detail-desc audio {
    width: 100%;
    margin: 10px 0;
}

.powell-auction-pc-detail-desc a {
    color: var(--ls-primary, #2f7cf6);
    text-decoration: none;
}

.powell-auction-pc-detail-desc .powell-auction-pc-rich-file {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-detail-box {
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--ls-bg-soft, #f7f9fc);
    border-radius: 8px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-bid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px 110px;
    gap: 8px;
}

.powell-auction-pc-bid.is-single {
    grid-template-columns: minmax(0, 1fr) 110px;
}

.powell-auction-pc-bid.has-quantity {
    grid-template-columns: minmax(0, 1fr) 74px 110px;
}

.powell-auction-pc-bid input,
.powell-auction-pc-bid-step {
    height: 40px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    padding: 0 12px;
}

.powell-auction-pc-bid-stepper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 0;
}

.powell-auction-pc-bid-stepper input {
    min-width: 0;
    border-radius: 8px 0 0 8px;
}

.powell-auction-pc-bid-stepper input[readonly] {
    cursor: default;
    caret-color: transparent;
}

.powell-auction-pc-bid-step {
    height: 20px;
    padding: 0;
    border-left: 0;
    border-radius: 0;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.powell-auction-pc-bid-step-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 40px;
}

.powell-auction-pc-bid-step-stack .powell-auction-pc-bid-step:first-child {
    border-bottom: 0;
    border-radius: 0 8px 0 0;
}

.powell-auction-pc-bid-step-stack .powell-auction-pc-bid-step:last-child {
    border-radius: 0 0 8px 0;
}

.powell-auction-pc-bid-step:hover {
    border-color: var(--ls-primary, #2f7cf6);
    color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-bid-quantity {
    display: grid;
    gap: 4px;
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
}

.powell-auction-pc-bid-quantity input {
    width: 100%;
}

.powell-auction-pc-bid > button[type="submit"] {
    border: 0;
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-deposit-tip {
    padding: 10px 12px;
    background: var(--ls-warning-soft, #fff7ed);
    border: 1px solid var(--ls-warning-border, #fed7aa);
    border-radius: 8px;
    color: var(--ls-warning-text, #9a3412);
}

.powell-auction-pc-pay-modal {
    max-width: 420px;
}

.powell-auction-pc-pay-dialog {
    display: grid;
    gap: 12px;
}

.powell-auction-pc-pay-title {
    color: var(--ls-text, #172033);
    line-height: 1.5;
}

.powell-auction-pc-pay-card {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-pay-card span,
.powell-auction-pc-pay-info span {
    color: var(--ls-text-muted, #8a94a6);
    font-size: 12px;
}

.powell-auction-pc-pay-card strong {
    color: var(--powell-auction-red, #f04438);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
}

.powell-auction-pc-pay-info {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 12px;
}

.powell-auction-pc-pay-info em {
    color: var(--ls-text, #172033);
    font-style: normal;
}

.powell-auction-pc-pay-note {
    margin: 0;
    padding: 9px 10px;
    border-left: 3px solid var(--ls-warning, #fb923c);
    background: var(--ls-warning-soft, #fff7ed);
    color: var(--ls-warning-text, #9a3412);
    font-size: 12px;
    line-height: 1.5;
}

.powell-auction-pc-audit-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.powell-auction-pc-audit-actions button {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-audit-actions button.is-danger {
    background: var(--ls-danger, #ef4444);
}

.powell-auction-pc-bids {
    display: grid;
    gap: 8px;
}

.powell-auction-pc-bids .powell-auction-pc-title-line {
    margin: 0;
    font-size: 15px;
}

.powell-auction-pc-bids p {
    margin: 0;
    color: var(--ls-text-tertiary, #98a2b3);
}

.powell-auction-pc-bid-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid var(--ls-border-light, #eef1f6);
}

.powell-auction-pc-bid-row img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.powell-auction-pc-bid-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-bid-row > span:nth-of-type(2) {
    display: grid;
    justify-items: end;
    color: var(--ls-danger, #ef4444);
}

.powell-auction-pc-bid-row small {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 11px;
}

.powell-auction-pc-bid-row em {
    color: var(--ls-primary, #2f7cf6);
    font-style: normal;
    font-size: 12px;
}

.powell-auction-pc-bid-table {
    overflow: hidden;
    border: 1px solid var(--ls-border-light, #e7edf6);
    border-radius: 8px;
}

.powell-auction-pc-bid-table-head,
.powell-auction-pc-bid-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 0.9fr;
}

.powell-auction-pc-bid-table-head span,
.powell-auction-pc-bid-table-row span,
.powell-auction-pc-bid-table-row em {
    min-width: 0;
    padding: 12px 14px;
    border-right: 1px solid var(--ls-border-light, #e7edf6);
    font-size: 13px;
    line-height: 1.5;
}

.powell-auction-pc-bid-table-head span:last-child,
.powell-auction-pc-bid-table-row span:last-child,
.powell-auction-pc-bid-table-row em:last-child {
    border-right: 0;
}

.powell-auction-pc-bid-table-head {
    background: var(--ls-bg-soft, #f3f6fb);
    color: var(--ls-text, #172033);
}

.powell-auction-pc-bid-table-row {
    border-top: 1px solid var(--ls-border-light, #e7edf6);
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-bid-table-row:nth-child(2n + 1) {
    background: var(--ls-bg-soft, #f8fbff);
}

.powell-auction-pc-bid-table-row em {
    color: var(--ls-text-secondary, #667085);
    font-style: normal;
}

.powell-auction-pc-bid-table-row em.is-leading {
    color: var(--ls-warning, #f97316);
}

.powell-auction-pc-bid-empty {
    min-height: 132px;
    display: grid;
    place-items: center;
    border: 1px dashed var(--ls-border-light, #d9e7fb);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f8fbff);
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 13px;
}

.powell-auction-pc-bid-pager {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--ls-text-secondary, #667085);
    font-size: 13px;
}

.powell-auction-pc-bid-pager button {
    min-width: 34px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid var(--ls-border-light, #d9e1ec);
    border-radius: 6px;
    background: #fff;
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-bid-pager button.is-active {
    border-color: var(--ls-primary, #2f7cf6);
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
}

.powell-auction-pc-bid-pager button.is-disabled {
    opacity: .45;
    cursor: not-allowed;
}

.powell-auction-pc-subpage {
    display: grid;
    gap: 16px;
}

.powell-auction-pc-subhead {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-back {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
    color: var(--ls-text-secondary, #667085);
    text-decoration: none;
}

.powell-auction-pc-subpanel {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-mini-empty {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #d9e7fb;
    border-radius: 8px;
    background: #fbfdff;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-empty-action {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    border: 1px solid var(--ls-primary, #2f7cf6);
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-admin-page {
    max-width: 1200px;
    margin: 0 auto;
}

.powell-auction-pc-admin-board,
.powell-auction-pc-admin-editor {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-admin-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 12px;
    align-items: center;
}

.powell-auction-pc-admin-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.powell-auction-pc-admin-search input {
    width: 100%;
    height: 36px;
    min-width: 0;
    padding: 0 12px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-primary, #101828);
    outline: 0;
}

.powell-auction-pc-admin-search input:focus {
    border-color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-admin-search button {
    height: 36px;
    flex: 0 0 auto;
    padding: 0 12px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-admin-search button:first-of-type {
    width: 38px;
    padding: 0;
    border-color: var(--ls-primary, #2f7cf6);
    background: var(--ls-primary-soft, #eef5ff);
    color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-admin-list {
    overflow: hidden;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-admin-list-head,
.powell-auction-pc-admin-row {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) 100px minmax(120px, .55fr) minmax(270px, 1fr) minmax(220px, .7fr);
    gap: 12px;
    align-items: center;
}

.powell-auction-pc-admin-list-head {
    padding: 12px 14px;
    background: #f6f9ff;
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 13px;
}

.powell-auction-pc-admin-row {
    padding: 14px;
    border-top: 1px solid var(--ls-border-light, #eef1f6);
}

.powell-auction-pc-admin-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
}

.powell-auction-pc-admin-cover {
    width: 72px;
    height: 72px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
    color: var(--ls-text-tertiary, #98a2b3);
}

.powell-auction-pc-admin-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-admin-item a {
    display: block;
    overflow: hidden;
    color: var(--ls-text-primary, #101828);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-admin-item p,
.powell-auction-pc-admin-item span,
.powell-auction-pc-admin-status em,
.powell-auction-pc-admin-price em,
.powell-auction-pc-admin-time em {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
    font-style: normal;
}

.powell-auction-pc-admin-item p {
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-admin-status,
.powell-auction-pc-admin-price,
.powell-auction-pc-admin-time {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.powell-auction-pc-admin-status span {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--ls-primary-soft, #eef5ff);
    color: var(--ls-primary, #2f7cf6);
    font-size: 12px;
}

.powell-auction-pc-admin-status span.is-ended,
.powell-auction-pc-admin-status span.is-cancelled {
    background: #f2f4f7;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-admin-price span {
    color: var(--powell-auction-red);
}

.powell-auction-pc-admin-time span {
    overflow: visible;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
}

.powell-auction-pc-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.powell-auction-pc-admin-actions button {
    height: 30px;
    padding: 0 10px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-admin-actions button:first-child {
    border-color: var(--ls-primary, #2f7cf6);
    color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-admin-actions button.is-danger {
    border-color: #ffd5d2;
    color: var(--powell-auction-red);
}

.powell-auction-pc-admin-editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.powell-auction-pc-admin-editor-head button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-tertiary, #98a2b3);
    cursor: pointer;
}

.powell-auction-pc-admin-editor form {
    display: grid;
    gap: 14px;
}

.powell-auction-pc-admin-editor .powell-auction-pc-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.powell-auction-pc-admin-editor label {
    display: grid;
    gap: 6px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-admin-editor label[hidden] {
    display: none;
}

.powell-auction-pc-admin-editor input,
.powell-auction-pc-admin-editor select,
.powell-auction-pc-admin-editor textarea {
    width: 100%;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    box-sizing: border-box;
}

.powell-auction-pc-admin-editor input,
.powell-auction-pc-admin-editor select {
    height: 38px;
    padding: 0 10px;
}

.powell-auction-pc-admin-editor textarea {
    padding: 10px;
    resize: vertical;
}

.powell-auction-pc-publish-page {
    padding: 20px;
}

.powell-auction-pc-publish-page form {
    margin-top: 0;
}

.powell-auction-pc-publish-page .powell-auction-pc-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.powell-auction-pc-publish-page .powell-auction-pc-form-section {
    gap: 12px;
    padding-bottom: 16px;
}

.powell-auction-pc-publish {
    padding: 18px;
    background: var(--ls-bg-card, #fff);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-publish form {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.powell-auction-pc-form-section {
    display: grid;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ls-border-light, #eef1f6);
}

.powell-auction-pc-form-section .powell-auction-pc-title-line {
    margin: 0;
    color: var(--ls-text, #172033);
    font-size: 15px;
}

.powell-auction-pc-publish label {
    display: grid;
    gap: 6px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-publish label[hidden] {
    display: none;
}

.powell-auction-pc-field-title {
    color: var(--ls-text-secondary, #667085);
    line-height: 1.45;
}

.powell-auction-pc-field-desc {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
    line-height: 1.55;
}

.powell-auction-pc-publish input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
}

.powell-auction-pc-publish select {
    width: 100%;
    height: 38px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
}

.powell-auction-pc-publish textarea {
    width: 100%;
    resize: vertical;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
}

.powell-auction-pc-image-field {
    display: grid;
    gap: 10px;
}

.powell-auction-pc-image-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-image-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.powell-auction-pc-image-add {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 14px;
    border: 1px solid var(--ls-primary, #2f7cf6);
    border-radius: 8px;
    background: var(--ls-primary-soft, #eef5ff);
    color: var(--ls-primary, #2f7cf6);
    cursor: pointer;
}

.powell-auction-pc-image-add i {
    font-size: 18px;
}

.powell-auction-pc-image-list {
    min-height: 106px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    padding: 10px;
    border: 1px dashed #d9e7fb;
    border-radius: 8px;
    background: #fbfdff;
    list-style: none;
    box-sizing: border-box;
}

.powell-auction-pc-image-list li {
    position: relative;
    width: 86px;
    height: 86px;
    overflow: hidden;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-image-list img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-image-list .close {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgb(17 24 39 / 70%);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-image-tip {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 12px;
    line-height: 1.5;
}

.powell-auction-pc-rich-editor {
    display: grid;
    gap: 10px;
}

.powell-auction-pc-rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
}

.powell-auction-pc-rich-toolbar button {
    min-width: 38px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-rich-toolbar button:hover {
    border-color: var(--ls-primary, #2f7cf6);
    color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-rich-toolbar i {
    font-size: 17px;
}

.powell-auction-pc-rich-body {
    min-height: 190px;
    padding: 12px;
    overflow: auto;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text, #172033);
    line-height: 1.75;
    outline: none;
}

.powell-auction-pc-rich-body:focus {
    border-color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-rich-body h2 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.45;
}

.powell-auction-pc-rich-body h3 {
    margin: 10px 0 6px;
    font-size: 17px;
    line-height: 1.45;
}

.powell-auction-pc-rich-body p {
    margin: 0 0 10px;
}

.powell-auction-pc-rich-body ul {
    margin: 0 0 10px 20px;
}

.powell-auction-pc-rich-body ol {
    margin: 0 0 10px 20px;
}

.powell-auction-pc-rich-body li {
    margin: 4px 0;
}

.powell-auction-pc-rich-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
}

.powell-auction-pc-rich-body video {
    max-width: 100%;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
}

.powell-auction-pc-rich-body audio {
    width: 100%;
    margin: 10px 0;
}

.powell-auction-pc-rich-body a {
    color: var(--ls-primary, #2f7cf6);
    text-decoration: none;
}

.powell-auction-pc-rich-body .powell-auction-pc-rich-file {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-check {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    color: var(--ls-text-secondary, #667085);
    font-size: 13px;
    line-height: 1.3;
}

.powell-auction-pc-check input {
    width: 16px;
    height: 16px;
}

.powell-auction-pc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.powell-auction-pc-submit {
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-mine {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: var(--ls-bg-card, #fff);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
}

.powell-auction-pc-mine .powell-auction-pc-title-line {
    margin: 6px 0 0;
    font-size: 15px;
}

.powell-auction-pc-mine p {
    margin: 0;
    color: var(--ls-text-tertiary, #98a2b3);
}

.powell-auction-pc-mine-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.powell-auction-pc-mine-tabs button {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #d9e5f7;
    border-radius: 6px;
    background: #f8fbff;
    color: #4b5563;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.powell-auction-pc-mine-tabs button.is-active {
    border-color: var(--powell-auction-blue);
    background: #fff;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-mine-tabs em {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--powell-auction-blue);
    font-style: normal;
    font-size: 12px;
}

.powell-auction-pc-mine-tabs button.is-active em {
    background: var(--powell-auction-blue);
    color: #fff;
}

.powell-auction-pc-mine-panels {
    display: grid;
    gap: 12px;
}

.powell-auction-pc-mine-panel.is-hidden {
    display: none;
}

.powell-auction-pc-mine-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    cursor: pointer;
}

.powell-auction-pc-mine-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-mine-row > span:nth-of-type(2) {
    color: var(--ls-danger, #ef4444);
}

.powell-auction-pc-mine-row em {
    color: var(--ls-text-tertiary, #98a2b3);
    font-style: normal;
}

.powell-auction-pc-trade {
    display: grid;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-trade-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

.powell-auction-pc-trade-head span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ls-text, #172033);
}

.powell-auction-pc-trade-head > span:nth-of-type(2) {
    color: var(--ls-danger, #ef4444);
}

.powell-auction-pc-trade-head em {
    padding: 3px 7px;
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-primary, #2f7cf6);
    font-style: normal;
    font-size: 12px;
}

.powell-auction-pc-trade-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.powell-auction-pc-trade-meta span {
    padding: 3px 7px;
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-secondary, #667085);
    font-size: 12px;
}

.powell-auction-pc-trade-text {
    margin: 0;
    color: var(--ls-text-secondary, #667085);
    line-height: 1.55;
    word-break: break-all;
}

.powell-auction-pc-trade-delivery {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid #dceafe;
    border-left: 3px solid var(--powell-auction-blue);
    border-radius: 6px;
    background: #fff;
}

.powell-auction-pc-trade-delivery-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 6px;
    background: #edf4ff;
    color: var(--powell-auction-blue);
    font-size: 16px;
}

.powell-auction-pc-trade-delivery-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.powell-auction-pc-trade-delivery-label {
    color: #475467;
    font-size: 12px;
    line-height: 1.2;
}

.powell-auction-pc-trade-delivery-body p {
    margin: 0;
    color: #172033;
    font-size: 13px;
    line-height: 1.65;
    word-break: break-word;
    white-space: pre-wrap;
}

.powell-auction-pc-trade-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.powell-auction-pc-trade-form select,
.powell-auction-pc-trade-form input {
    height: 34px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
}

.powell-auction-pc-trade-form select {
    grid-column: 1 / -1;
}

.powell-auction-pc-trade-form button,
.powell-auction-pc-trade-actions button {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 14px;
    border: 1px solid var(--ls-primary, #2f7cf6);
    border-radius: 8px;
    background: var(--ls-primary, #2f7cf6);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.powell-auction-pc-trade-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.powell-auction-pc-empty {
    min-height: 260px;
    display: grid;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 8px;
    padding: 28px;
    background: var(--ls-bg-card, #fff);
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    text-align: center;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-empty.is-inline {
    min-height: 280px;
}

.powell-auction-pc-empty-mark {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ls-border-light, #eef1f6);
    border-radius: 8px;
    background: var(--ls-bg-soft, #f7f9fc);
}

.powell-auction-pc-empty-mark i {
    color: var(--ls-primary, #2f7cf6);
    font-size: 26px;
}

.powell-auction-pc-empty .powell-auction-pc-section-title {
    margin: 0;
    color: var(--ls-text, #172033);
    font-size: 21px;
    line-height: 1.2;
}

.powell-auction-pc-empty p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.powell-auction-pc-load {
    width: 100%;
    height: 42px;
    margin-top: 14px;
    border: 1px solid var(--ls-border, #d9e1ec);
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.powell-auction-pc-pagination button {
    min-width: 36px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #d9e5f4;
    border-radius: 6px;
    background: #fff;
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-pagination button.is-active {
    border-color: var(--powell-auction-blue);
    background: #eef5ff;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-pagination button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 1180px) {
    .powell-auction-pc-hero {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-meta {
        justify-content: flex-start;
    }

    .powell-auction-pc-layout {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-side {
        position: static;
    }

    .powell-auction-pc-detail.is-standalone .powell-auction-pc-detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .powell-auction-pc-admin-toolbar {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-admin-list-head {
        display: none;
    }

    .powell-auction-pc-admin-row {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .powell-auction-pc-admin-item,
    .powell-auction-pc-admin-actions {
        grid-column: 1 / -1;
    }

    .powell-auction-pc-admin-editor .powell-auction-pc-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .powell-auction-pc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .powell-auction-pc-toolbar {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-detail.is-standalone .powell-auction-pc-detail-price,
    .powell-auction-pc-detail.is-standalone .powell-auction-pc-detail-meta {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-admin-row,
    .powell-auction-pc-admin-editor .powell-auction-pc-form-grid {
        grid-template-columns: 1fr;
    }
}

.powell-auction-pc-hero {
    grid-template-columns: 420px minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: stretch;
    padding: 0;
    border: 0;
    background: transparent;
}

.powell-auction-pc-spotlight,
.powell-auction-pc-banner,
.powell-auction-pc-account,
.powell-auction-pc-process,
.powell-auction-pc-toolbar,
.powell-auction-pc-section,
.powell-auction-pc-detail,
.powell-auction-pc-publish,
.powell-auction-pc-mine {
    border: 1px solid var(--ls-border-light, var(--powell-auction-line));
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    box-shadow: 0 10px 28px rgb(36 62 102 / 5%);
}

.powell-auction-pc-spotlight,
.powell-auction-pc-banner,
.powell-auction-pc-account {
    min-height: 236px;
}

.powell-auction-pc-spotlight {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
    background: linear-gradient(135deg, #fff6f4 0%, #fff 62%);
}

.powell-auction-pc-hero-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.powell-auction-pc-hero-head span:first-child {
    color: #111827;
    font-size: 20px;
}

.powell-auction-pc-hero-head span {
    color: #b7791f;
}

.powell-auction-pc-spotlight-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    cursor: pointer;
}

.powell-auction-pc-spotlight-cover {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #eef1f6;
    border-radius: 8px;
    background: #fff;
}

.powell-auction-pc-spotlight-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-spotlight-info {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.powell-auction-pc-spotlight-info .powell-auction-pc-title-line {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-spotlight-info span {
    color: #111827;
    font-size: 14px;
}

.powell-auction-pc-spotlight-info span:last-child {
    color: var(--powell-auction-red);
    font-size: 20px;
}

.powell-auction-pc-spotlight-info em,
.powell-auction-pc-spotlight-empty {
    color: #667085;
    font-style: normal;
}

.powell-auction-pc-spotlight-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 150px;
}

.powell-auction-pc-spotlight-empty i {
    color: var(--powell-auction-blue);
    font-size: 34px;
}

.powell-auction-pc-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    padding: 34px 42px;
    background:
        linear-gradient(135deg, #fff 0%, #f5f9ff 48%, #eaf3ff 100%);
}

.powell-auction-pc-banner::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: -28px;
    width: 260px;
    height: 120px;
    border-top: 1px solid rgb(80 134 241 / 16%);
    transform: skewX(-22deg);
    pointer-events: none;
}

.powell-auction-pc-title {
    gap: 10px;
    position: relative;
    z-index: 1;
}

.powell-auction-pc-title .powell-auction-pc-main-title {
    color: #111827;
    font-size: 34px;
}

.powell-auction-pc-title p {
    margin: 0;
    color: #555f6d;
    font-size: 15px;
    line-height: 1.7;
}

.powell-auction-pc-banner-date {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 18px 14px;
    border-radius: 8px;
    background: rgb(255 255 255 / 72%);
    border: 1px solid rgb(80 134 241 / 18%);
}

.powell-auction-pc-banner-date span:first-child {
    padding: 2px 9px;
    border-radius: 4px;
    background: var(--powell-auction-blue);
    color: #fff;
    letter-spacing: 1px;
}

.powell-auction-pc-banner-date span {
    color: #111827;
    font-size: 24px;
}

.powell-auction-pc-account {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
}

.powell-auction-pc-account .powell-auction-pc-btn {
    width: 100%;
}

.powell-auction-pc-account .powell-auction-pc-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    gap: 10px;
    background: transparent;
}

.powell-auction-pc-account .powell-auction-pc-stat {
    min-width: 0;
    border: 1px solid #e8f0fb;
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fe 100%);
}

.powell-auction-pc-process {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 18px;
}

.powell-auction-pc-process > span:first-child {
    color: #111827;
    font-size: 16px;
    margin-right: 4px;
}

.powell-auction-pc-process span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #555f6d;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.powell-auction-pc-process span::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid #b8c1cf;
    border-bottom: 1px solid #b8c1cf;
    transform: rotate(-45deg);
    margin-left: 8px;
}

.powell-auction-pc-process span:last-child::after {
    display: none;
    margin: 0;
}

.powell-auction-pc-process i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--powell-auction-blue-soft);
    color: var(--powell-auction-blue);
    font-size: 15px;
}

.powell-auction-pc-tabs button,
.powell-auction-pc-orders button,
.powell-auction-pc-cats button,
.powell-auction-pc-search input,
.powell-auction-pc-search button,
.powell-auction-pc-btn,
.powell-auction-pc-load,
.powell-auction-pc-submit,
.powell-auction-pc-trade-form button,
.powell-auction-pc-trade-actions button {
    border-radius: 6px;
}

.powell-auction-pc-btn,
.powell-auction-pc-submit,
.powell-auction-pc-trade-form button,
.powell-auction-pc-trade-actions button {
    background: var(--powell-auction-blue);
    border-color: var(--powell-auction-blue);
}

.powell-auction-pc-trade-actions button.is-confirm {
    background: #10b981;
    border-color: #10b981;
}

.powell-auction-pc-trade-actions button.is-pay {
    background: var(--powell-auction-blue);
    border-color: var(--powell-auction-blue);
}

.powell-auction-pc-tabs button.is-active,
.powell-auction-pc-cats button.is-active {
    border-color: var(--powell-auction-blue);
    background: #eef5ff;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-section {
    padding: 18px;
}

.powell-auction-pc-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.powell-auction-pc-section-head .powell-auction-pc-section-title {
    margin: 0;
    color: #111827;
    font-size: 22px;
}

.powell-auction-pc-section-head p {
    margin: 6px 0 0;
    color: #667085;
}

.powell-auction-pc-section-head button {
    height: 32px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer;
}

.powell-auction-pc-card-action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.powell-auction-pc-card-action span {
    color: #667085;
    font-size: 12px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-card-action button {
    height: 32px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: var(--powell-auction-blue);
    color: #fff;
    cursor: pointer;
}

.powell-auction-pc-detail,
.powell-auction-pc-publish,
.powell-auction-pc-mine {
    padding: 20px;
}

.powell-auction-pc-side-head {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--powell-auction-line);
}

.powell-auction-pc-detail-meta > span,
.powell-auction-pc-detail-box,
.powell-auction-pc-trade,
.powell-auction-pc-mine-row,
.powell-auction-pc-form-section {
    background: #f8fbff;
    border-color: #e4ecf7;
}

.powell-auction-pc-form-section {
    padding: 14px;
    border: 1px solid #e4ecf7;
    border-radius: 8px;
}

.powell-auction-pc-form-section:last-of-type {
    border-bottom: 1px solid #e4ecf7;
}

.powell-auction-pc-publish input,
.powell-auction-pc-publish select,
.powell-auction-pc-publish textarea,
.powell-auction-pc-bid input,
.powell-auction-pc-trade-form select,
.powell-auction-pc-trade-form input {
    border-radius: 6px;
    border-color: #dfe7f3;
}

@media (max-width: 1180px) {
    .powell-auction-pc-hero {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-spotlight,
    .powell-auction-pc-banner,
    .powell-auction-pc-account {
        min-height: 0;
    }

    .powell-auction-pc-account .powell-auction-pc-stats {
        grid-template-columns: repeat(2, 120px);
    }

    .powell-auction-pc-process {
        overflow-x: auto;
    }
}

.powell-auction-pc-live-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 160px;
    min-width: 0;
    cursor: pointer;
}

.powell-auction-pc-live-carousel {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.powell-auction-pc-live-track {
    display: flex;
    transition: transform .36s ease;
    will-change: transform;
}

.powell-auction-pc-live-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.powell-auction-pc-live-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    gap: 6px;
    padding: 6px 0 0 8px;
    background: linear-gradient(90deg, rgb(255 255 255 / 0%), #fff8f4 38%);
}

.powell-auction-pc-live-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
}

.powell-auction-pc-live-dots button.is-active {
    width: 18px;
    background: var(--powell-auction-blue);
}

.powell-auction-pc-live-cover {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eef1f6;
    box-shadow: 0 10px 24px rgb(16 24 40 / 6%);
}

.powell-auction-pc-live-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-live-main {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.powell-auction-pc-live-main .powell-auction-pc-title-line {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-live-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.powell-auction-pc-live-price span,
.powell-auction-pc-live-price em {
    color: #667085;
    font-size: 12px;
    font-style: normal;
}

.powell-auction-pc-live-price span:nth-of-type(2) {
    color: var(--powell-auction-red);
    font-size: 24px;
}

.powell-auction-pc-live-main dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
}

.powell-auction-pc-live-main dl div {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 8px 4px;
    border-radius: 6px;
    background: rgb(255 255 255 / 72%);
}

.powell-auction-pc-live-main dt {
    color: #667085;
    font-size: 12px;
}

.powell-auction-pc-live-main dd {
    margin: 0;
    color: #2563eb;
    font-size: 14px;
    text-align: center;
}

.powell-auction-pc-banner {
    grid-template-columns: minmax(0, 1fr) 210px 150px;
}

.powell-auction-pc-title span {
    width: fit-content;
    padding: 4px 10px;
    border-radius: 4px;
    background: #eef5ff;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-banner-visual {
    position: relative;
    z-index: 1;
    height: 160px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.powell-auction-pc-banner-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgb(36 62 102 / 18%));
}

.powell-auction-pc-banner-visual.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--powell-auction-blue);
    font-size: 54px;
}

.powell-auction-pc-rank {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, #cfe0ff, #7aa6ff);
    color: #fff;
    font-style: normal;
    box-shadow: 0 8px 18px rgb(80 134 241 / 28%);
}

.powell-auction-pc-card-meta {
    align-items: center;
}

.powell-auction-pc-card-meta button {
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #4b5563;
    cursor: pointer;
}

.powell-auction-pc-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.powell-auction-pc-card-facts span {
    padding: 3px 7px;
    border-radius: 4px;
    background: #f4f8ff;
    color: #667085;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .powell-auction-pc-banner {
        grid-template-columns: minmax(0, 1fr) 180px;
    }

    .powell-auction-pc-banner-date {
        display: none;
    }
}

@media (max-width: 720px) {
    .powell-auction-pc-banner {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-banner-visual {
        max-width: 240px;
    }

    .powell-auction-pc-live-slide {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-live-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }
}

/* Layout guard: keep the hero readable when there is no featured auction. */
.powell-auction-pc-hero {
    align-items: stretch;
}

.powell-auction-pc-banner {
    grid-template-columns: minmax(260px, 1fr) 180px 132px;
}

.powell-auction-pc-banner.is-empty {
    grid-template-columns: minmax(0, 1fr);
    min-height: 236px;
}

.powell-auction-pc-title {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
}

.powell-auction-pc-title span,
.powell-auction-pc-title .powell-auction-pc-main-title,
.powell-auction-pc-title p {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.powell-auction-pc-title span {
    white-space: nowrap;
}

.powell-auction-pc-title .powell-auction-pc-main-title {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.powell-auction-pc-title p {
    max-width: 520px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.powell-auction-pc-banner.is-empty .powell-auction-pc-title .powell-auction-pc-main-title {
    font-size: 32px;
}

.powell-auction-pc-banner.is-empty .powell-auction-pc-title p {
    max-width: 560px;
}

@media (max-width: 1180px) {
    .powell-auction-pc-banner {
        grid-template-columns: minmax(0, 1fr) 180px;
    }

    .powell-auction-pc-banner.is-empty {
        grid-template-columns: 1fr;
    }
}

/* Final layout guard for the PC auction homepage. */
.powell-auction-pc .powell-auction-pc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: stretch;
    padding: 0;
    border: 0;
    background: transparent;
}

.powell-auction-pc .powell-auction-pc-spotlight,
.powell-auction-pc .powell-auction-pc-banner,
.powell-auction-pc .powell-auction-pc-account {
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    overflow: hidden;
    box-sizing: border-box;
}

.powell-auction-pc .powell-auction-pc-spotlight {
    padding: 20px;
}

.powell-auction-pc .powell-auction-pc-spotlight-empty {
    height: 182px;
    min-height: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
}

.powell-auction-pc .powell-auction-pc-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 128px;
    align-items: center;
    gap: 20px;
    padding: 30px 34px;
    background:
        radial-gradient(circle at 84% 78%, rgb(80 134 241 / 18%), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f9ff 48%, #e8f3ff 100%);
}

.powell-auction-pc .powell-auction-pc-banner.is-empty {
    grid-template-columns: minmax(0, 1fr);
}

.powell-auction-pc .powell-auction-pc-banner.is-empty::before {
    content: "";
    position: absolute;
    right: 34px;
    top: 38px;
    width: 240px;
    height: 150px;
    border: 1px solid rgb(80 134 241 / 18%);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgb(80 134 241 / 10%), transparent),
        repeating-linear-gradient(135deg, rgb(80 134 241 / 12%) 0 1px, transparent 1px 14px);
    pointer-events: none;
}

.powell-auction-pc .powell-auction-pc-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 0;
    max-width: 520px;
}

.powell-auction-pc .powell-auction-pc-title span,
.powell-auction-pc .powell-auction-pc-title .powell-auction-pc-main-title,
.powell-auction-pc .powell-auction-pc-title p {
    display: block;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    letter-spacing: 0;
}

.powell-auction-pc .powell-auction-pc-title span {
    display: inline-flex;
    width: auto;
    white-space: nowrap;
}

.powell-auction-pc .powell-auction-pc-title .powell-auction-pc-main-title {
    margin: 0;
    width: 100%;
    color: #111827;
    font-size: 36px;
    line-height: 1.18;
}

.powell-auction-pc .powell-auction-pc-title p {
    margin: 0;
    width: 100%;
    max-width: 430px;
    color: #555f6d;
    font-size: 15px;
    line-height: 1.8;
}

.powell-auction-pc .powell-auction-pc-account {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
}

.powell-auction-pc .powell-auction-pc-account .powell-auction-pc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .powell-auction-pc .powell-auction-pc-hero {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc .powell-auction-pc-spotlight,
    .powell-auction-pc .powell-auction-pc-banner,
    .powell-auction-pc .powell-auction-pc-account {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .powell-auction-pc .powell-auction-pc-banner.is-empty::before {
        display: none;
    }
}

.powell-auction-pc-home-section,
.powell-auction-pc-outcome-col {
    border: 1px solid var(--ls-border-light, var(--powell-auction-line));
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgb(36 62 102 / 5%);
}

.powell-auction-pc-home-section {
    padding: 22px;
}

.powell-auction-pc-home-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.powell-auction-pc-home-head .powell-auction-pc-section-title {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.35;
}

.powell-auction-pc-home-head > button {
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer;
}

.powell-auction-pc-home-switch {
    align-items: center;
}

.powell-auction-pc-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.powell-auction-pc-upcoming-more,
.powell-auction-pc-coming-empty {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #243044;
    font-size: 18px;
    text-align: center;
    background:
        radial-gradient(circle, rgb(80 134 241 / 10%) 1px, transparent 2px) 0 0 / 18px 18px,
        #fff;
}

.powell-auction-pc-upcoming-more {
    flex-direction: column;
    gap: 4px;
}

.powell-auction-pc-coming-empty {
    min-height: 170px;
    flex-direction: column;
    gap: 10px;
    color: #667085;
    font-size: 14px;
}

.powell-auction-pc-coming-empty i {
    color: var(--powell-auction-blue);
    font-size: 36px;
}

.powell-auction-pc-coming-empty span:first-of-type {
    color: #243044;
    font-size: 18px;
}

.powell-auction-pc-upcoming-card {
    position: relative;
    min-height: 248px;
    padding: 14px;
    border: 1px solid #dde8f7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgb(36 62 102 / 4%);
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.powell-auction-pc-upcoming-tag {
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 14px;
    border-radius: 0 8px 0 8px;
    background: var(--powell-auction-blue);
    color: #fff;
    font-size: 12px;
}

.powell-auction-pc-upcoming-cover {
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid #edf2fb;
    border-radius: 6px;
    background: #f7faff;
    overflow: hidden;
}

.powell-auction-pc-upcoming-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.powell-auction-pc-upcoming-cover i {
    color: var(--powell-auction-blue);
    font-size: 34px;
}

.powell-auction-pc-upcoming-card .powell-auction-pc-title-line {
    margin: 0 0 8px;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-upcoming-card p {
    margin: 0 0 10px;
    color: #667085;
}

.powell-auction-pc-upcoming-card p span {
    color: var(--powell-auction-red);
    font-size: 18px;
}

.powell-auction-pc-upcoming-card div:last-child {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    border-radius: 4px;
    background: var(--powell-auction-blue);
    color: #fff;
    overflow: hidden;
}

.powell-auction-pc-upcoming-card div:last-child span,
.powell-auction-pc-upcoming-card div:last-child span:last-child {
    padding: 8px 10px;
    font-size: 12px;
}

.powell-auction-pc-upcoming-card div:last-child span:last-child {
    min-width: 0;
    background: rgb(255 255 255 / 12%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-candidate-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.powell-auction-pc-candidate-card {
    position: relative;
    min-height: 228px;
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    padding: 18px 14px 14px;
    border: 1px solid #dbe7fb;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgb(80 134 241 / 7%), transparent 72%),
        linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
    box-shadow: inset 0 -34px 70px rgb(80 134 241 / 4%);
    color: #243044;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.powell-auction-pc-candidate-card > i {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, #cfe0ff, #7aa6ff);
    color: #fff;
    font-style: normal;
    font-size: 12px;
}

.powell-auction-pc-candidate-card > button {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #4b5563;
}

.powell-auction-pc-candidate-card .powell-auction-pc-title-line {
    margin: 28px 0 8px;
    min-height: 43px;
    color: #1f3f8f;
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-candidate-card p {
    margin: 4px 0;
    color: #42526a;
    font-size: 12px;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-candidate-card footer {
    align-self: end;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgb(80 134 241 / 13%);
    color: #52637a;
    font-size: 12px;
}

.powell-auction-pc-candidate-empty {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    background: #f8fbff;
    border-radius: 8px;
}

.powell-auction-pc-outcomes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.powell-auction-pc-outcome-col {
    padding: 22px;
    background: #fff;
}

.powell-auction-pc-outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 14px;
}

.powell-auction-pc-outcome-row {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    min-height: 126px;
    padding: 14px;
    margin-bottom: 0;
    border: 1px solid #e4ecf8;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fbff 0%, #fff 68%);
    cursor: pointer;
    overflow: hidden;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.powell-auction-pc-outcome-row.is-sold {
    border-left: 3px solid #10b981;
}

.powell-auction-pc-outcome-row.is-failed {
    border-left: 3px solid #94a3b8;
}

.powell-auction-pc-outcome-cover {
    position: relative;
    width: 92px;
    height: 92px;
    overflow: hidden;
    border: 1px solid #e5edf8;
    border-radius: 6px;
    background: #fff;
}

.powell-auction-pc-outcome-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powell-auction-pc-outcome-cover i {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--powell-auction-blue);
}

.powell-auction-pc-outcome-cover span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 2px 6px;
    border-radius: 0 0 6px 0;
    background: #94a3b8;
    color: #fff;
    font-size: 11px;
}

.powell-auction-pc-outcome-cover span.is-sold {
    background: #10b981;
}

.powell-auction-pc-outcome-body {
    min-width: 0;
    display: grid;
    gap: 8px;
    align-content: start;
}

.powell-auction-pc-outcome-row .powell-auction-pc-title-line {
    margin: 0;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    min-height: 41px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc-outcome-meta {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.powell-auction-pc-outcome-meta span {
    max-width: 100%;
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 6px;
    background: #f1f6ff;
    color: #667085;
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-outcome-result {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.powell-auction-pc-outcome-result span {
    flex: 0 0 auto;
    color: #8a95a5;
    font-size: 12px;
}

.powell-auction-pc-outcome-result strong {
    min-width: 0;
    color: var(--powell-auction-red);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-outcome-empty {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    background: #f8fbff;
    border-radius: 8px;
}

.powell-auction-pc .powell-auction-pc-spotlight,
.powell-auction-pc .powell-auction-pc-banner,
.powell-auction-pc .powell-auction-pc-account,
.powell-auction-pc-process,
.powell-auction-pc-toolbar,
.powell-auction-pc-home-section,
.powell-auction-pc-outcome-col,
.powell-auction-pc-section,
.powell-auction-pc-detail,
.powell-auction-pc-publish,
.powell-auction-pc-mine {
    border: 1px solid var(--powell-auction-line-accent);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgb(23 32 51 / 5%);
}

.powell-auction-pc .powell-auction-pc-spotlight {
    background: linear-gradient(135deg, #fff 0%, #fff8f4 100%);
}

.powell-auction-pc-hero-head span:first-child,
.powell-auction-pc-process > span:first-child,
.powell-auction-pc-home-head .powell-auction-pc-section-title,
.powell-auction-pc-section-head .powell-auction-pc-section-title {
    color: var(--powell-auction-ink);
}

.powell-auction-pc-hero-head span {
    color: #a35b00;
}

.powell-auction-pc .powell-auction-pc-spotlight-empty {
    border-radius: 8px;
    background:
        radial-gradient(circle, rgb(80 134 241 / 12%) 1px, transparent 2px) 0 0 / 20px 20px,
        rgb(255 255 255 / 68%);
}

.powell-auction-pc .powell-auction-pc-banner {
    isolation: isolate;
    background:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 58%, rgb(80 134 241 / 12%) 58%),
        radial-gradient(circle at 80% 50%, rgb(80 134 241 / 22%), transparent 34%),
        linear-gradient(135deg, #fafdff 0%, #eaf4ff 100%);
}

.powell-auction-pc .powell-auction-pc-banner::after {
    right: 22px;
    bottom: 28px;
    width: 240px;
    height: 1px;
    border: 0;
    background: linear-gradient(90deg, transparent, rgb(80 134 241 / 32%));
    transform: none;
}

.powell-auction-pc .powell-auction-pc-title span {
    border-radius: 6px;
    background: #eaf3ff;
}

.powell-auction-pc .powell-auction-pc-title .powell-auction-pc-main-title {
    letter-spacing: 0;
}

.powell-auction-pc .powell-auction-pc-account {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    background: #fff;
}

.powell-auction-pc .powell-auction-pc-account .powell-auction-pc-stats {
    align-self: start;
}

.powell-auction-pc-account-actions {
    grid-row: 3;
    display: grid;
    gap: 12px;
    align-self: end;
}

.powell-auction-pc-account .powell-auction-pc-btn {
    height: 40px;
}

.powell-auction-pc-process {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 54px;
    padding: 0 18px;
    background: #fff;
}

.powell-auction-pc-process > span:first-child {
    flex: 0 0 auto;
    justify-content: flex-start;
    margin-right: 14px;
}

.powell-auction-pc-process span {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    color: var(--powell-auction-muted);
    font-size: 14px;
}

.powell-auction-pc-process i {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--powell-auction-blue);
    font-size: 20px;
    box-shadow: none;
}

.powell-auction-pc-home-head .powell-auction-pc-section-title::before,
.powell-auction-pc-section-head .powell-auction-pc-section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-right: 9px;
    border-radius: 999px;
    vertical-align: -3px;
    background: var(--powell-auction-blue);
}

.powell-auction-pc-section-head button {
    padding: 0 2px;
    color: #6b778c;
}

.powell-auction-pc-upcoming-more,
.powell-auction-pc-coming-empty,
.powell-auction-pc-candidate-empty,
.powell-auction-pc-outcome-empty,
.powell-auction-pc-empty.is-inline {
    background:
        radial-gradient(circle, rgb(80 134 241 / 12%) 1px, transparent 2px) 0 0 / 20px 20px,
        #fbfdff;
    border: 1px dashed #d9e7fb;
}

.powell-auction-pc-upcoming-card:hover,
.powell-auction-pc-candidate-card:hover,
.powell-auction-pc-outcome-row:hover {
    transform: translateY(-2px);
    border-color: var(--powell-auction-blue);
    box-shadow: 0 14px 30px rgb(80 134 241 / 12%);
}

.powell-auction-pc-tabs button,
.powell-auction-pc-orders button,
.powell-auction-pc-cats button {
    border-color: #dfe8f4;
    background: #f8fbff;
}

.powell-auction-pc-tabs button.is-active,
.powell-auction-pc-orders button.is-active,
.powell-auction-pc-cats button.is-active {
    box-shadow: inset 0 0 0 1px rgb(80 134 241 / 12%);
}

.powell-auction-pc-search input {
    color: var(--ls-text-primary, #101828);
}

.powell-auction-pc-search button {
    background: var(--ls-primary-soft, #eef5ff);
}

.powell-auction-pc-section {
    background: #fff;
}

.powell-auction-pc-empty.is-inline {
    min-height: 300px;
    box-shadow: none;
}

.powell-auction-pc-load {
    border-color: #dfe8f4;
    background: #fff;
}

@media (max-width: 1320px) {
    .powell-auction-pc-upcoming-grid,
    .powell-auction-pc-candidate-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .powell-auction-pc-upcoming-more {
        display: none;
    }
}

@media (max-width: 1180px) {
    .powell-auction-pc-upcoming-grid,
    .powell-auction-pc-candidate-grid,
    .powell-auction-pc-outcomes,
    .powell-auction-pc-outcome-grid {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-subhead {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .powell-auction-pc-subhead .powell-auction-pc-btn {
        width: 100%;
    }

    .powell-auction-pc-publish-page .powell-auction-pc-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Auction detail page inspired by announcement-style bidding pages. */
.powell-auction-pc-detail-page .powell-auction-pc-detail.is-standalone {
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.powell-auction-pc-detail-hero,
.powell-auction-pc-detail-panel,
.powell-auction-pc-detail-contact {
    border: 1px solid var(--ls-border-light, var(--powell-auction-line));
    border-radius: 8px;
    background: var(--ls-bg-card, #fff);
    box-shadow: 0 10px 28px rgb(36 62 102 / 5%);
}

.powell-auction-pc-detail-hero {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
}

.powell-auction-pc-detail-media,
.powell-auction-pc-detail-summary,
.powell-auction-pc-detail-contact {
    display: grid;
    gap: 10px;
}

.powell-auction-pc-detail-summary {
    min-width: 0;
    align-content: start;
    gap: 14px;
}

.powell-auction-pc-detail-main-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid #e8eef7;
    border-radius: 8px;
    background: #f7f9fc;
}

.powell-auction-pc-detail-main-image button,
.powell-auction-pc-detail-thumbs button {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.powell-auction-pc-detail-main-image img,
.powell-auction-pc-detail-thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
}

.powell-auction-pc-detail-thumbs button {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #e8eef7;
    border-radius: 6px;
}

.powell-auction-pc-detail-status,
.powell-auction-pc-detail-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.powell-auction-pc-detail-status span {
    min-width: 68px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    background: var(--powell-auction-blue-soft);
    color: var(--powell-auction-blue-dark);
    font-size: 13px;
}

.powell-auction-pc-detail-status em,
.powell-auction-pc-detail-current em {
    color: var(--ls-text-secondary, #667085);
    font-style: normal;
    font-size: 13px;
}

.powell-auction-pc-detail-title {
    color: var(--ls-text, #172033);
    font-size: 24px;
    line-height: 1.35;
}

.powell-auction-pc-detail-summary > p,
.powell-auction-pc-guide-grid p,
.powell-auction-pc-detail-contact p {
    margin: 0;
    color: var(--ls-text-secondary, #667085);
    font-size: 13px;
    line-height: 1.65;
}

.powell-auction-pc-detail-counts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.powell-auction-pc-detail-counts span {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 12px;
    border: 1px solid #e8eef7;
    border-radius: 8px;
    background: #f8fbff;
}

.powell-auction-pc-detail-counts b {
    color: var(--powell-auction-blue-dark);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.powell-auction-pc-detail-counts em {
    color: var(--ls-text-tertiary, #98a2b3);
    font-style: normal;
    font-size: 12px;
}

.powell-auction-pc-detail-current {
    padding: 16px;
    border: 1px solid #ffe1dc;
    border-radius: 8px;
    background: #fff7f5;
}

.powell-auction-pc-detail-current span {
    color: var(--ls-text-secondary, #667085);
    font-size: 13px;
}

.powell-auction-pc-detail-current strong {
    color: var(--powell-auction-red);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.powell-auction-pc-detail-bid {
    grid-template-columns: minmax(0, 1fr) 90px 132px;
}

.powell-auction-pc-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: start;
}

.powell-auction-pc-detail-panel {
    overflow: hidden;
}

.powell-auction-pc-detail-tabs {
    display: flex;
    gap: 4px;
    padding: 0 18px;
    border-bottom: 1px solid var(--ls-border-light, var(--powell-auction-line));
}

.powell-auction-pc-detail-tabs button {
    min-width: 96px;
    height: 48px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--ls-text-secondary, #667085);
    cursor: pointer;
}

.powell-auction-pc-detail-tabs button.is-active {
    border-bottom-color: var(--powell-auction-blue);
    color: var(--powell-auction-blue-dark);
}

.powell-auction-pc-detail-tabpanel {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.powell-auction-pc-panel-title {
    color: var(--ls-text, #172033);
    font-size: 18px;
    line-height: 1.4;
}

.powell-auction-pc-notice-head,
.powell-auction-pc-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.powell-auction-pc-notice-head span,
.powell-auction-pc-guide-grid div {
    padding: 12px;
    border: 1px solid #e8eef7;
    border-radius: 8px;
    background: #f8fbff;
    color: var(--ls-text-secondary, #667085);
}

.powell-auction-pc-guide-grid div {
    display: grid;
    gap: 6px;
}

.powell-auction-pc-guide-grid span {
    color: var(--ls-text, #172033);
}

.powell-auction-pc-detail-aside {
    display: grid;
    gap: 12px;
}

.powell-auction-pc-detail-contact {
    padding: 16px;
}

.powell-auction-pc-detail-contact span {
    color: var(--ls-text-tertiary, #98a2b3);
    font-size: 13px;
}

.powell-auction-pc-detail-contact strong {
    color: var(--ls-text, #172033);
    font-size: 17px;
    font-weight: 500;
}

@media (max-width: 1180px) {
    .powell-auction-pc-detail-hero,
    .powell-auction-pc-detail-content {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-detail-aside {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .powell-auction-pc-detail-bid,
    .powell-auction-pc-notice-head,
    .powell-auction-pc-guide-grid,
    .powell-auction-pc-detail-aside {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-detail-current {
        display: grid;
        justify-items: start;
    }

    .powell-auction-pc-detail-tabs {
        overflow-x: auto;
        padding: 0 12px;
    }

    .powell-auction-pc-detail-title {
        font-size: 20px;
    }
}

/* Reference-style announcement detail */
.powell-auction-pc-detail-page {
    width: 100%;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail.is-standalone {
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.powell-auction-pc-detail-stage {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.powell-auction-pc-detail-trade {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(430px, .96fr) minmax(380px, 1fr) 260px;
    gap: 18px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-media {
    gap: 12px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-summary {
    gap: 12px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-main-image {
    aspect-ratio: 1.24 / 1;
    border-color: #dce4ef;
    background: #fff;
}

.powell-auction-pc-detail-statbar {
    min-height: 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    background: #f6f9ff;
    color: #111827;
    font-size: 16px;
}

.powell-auction-pc-detail-statbar span {
    text-align: center;
}

.powell-auction-pc-detail-statbar b {
    color: #0057ff;
    font-weight: 400;
    font-size: 24px;
}

.powell-auction-pc-detail-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 2px;
}

.powell-auction-pc-detail-title-row span {
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 4px;
    background: #e89b11;
    color: #fff;
    font-size: 13px;
}

.powell-auction-pc-detail-title-row span.is-sold {
    background: var(--ls-success, #10b981);
}

.powell-auction-pc-detail-title-row span.is-failed {
    background: #94a3b8;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-title {
    color: #000;
    font-size: 22px;
    line-height: 1.35;
}

.powell-auction-pc-detail-timer,
.powell-auction-pc-detail-line,
.powell-auction-pc-detail-ended-time,
.powell-auction-pc-detail-total-line {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #111827;
    line-height: 1.45;
}

.powell-auction-pc-detail-timer span,
.powell-auction-pc-detail-line span,
.powell-auction-pc-detail-ended-time span,
.powell-auction-pc-detail-total-line span,
.powell-auction-pc-detail-current span,
.powell-auction-pc-detail-bid > span {
    color: #9aa3af;
}

.powell-auction-pc-detail-timer b {
    min-width: 0;
    height: auto;
    display: inline;
    background: transparent;
    color: #172033;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.powell-auction-pc-detail-timer em,
.powell-auction-pc-detail-line em,
.powell-auction-pc-detail-ended-time em,
.powell-auction-pc-detail-total-line em {
    color: #111827;
    font-style: normal;
}

.powell-auction-pc-detail-timer em {
    font-size: 13px;
}

.powell-auction-pc-detail-timer small {
    color: #64748b;
    font-size: 12px;
}

.powell-auction-pc-detail-bidbox {
    display: grid;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current {
    display: flex;
    min-height: 30px;
    gap: 14px;
    align-items: baseline;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    background: transparent;
}

.powell-auction-pc-detail-page .powell-auction-pc-bid-action-panel {
    --powell-auction-pc-detail-bid-width: 336px;
    display: grid;
    gap: 9px;
    padding: 14px 16px;
    border: 1px solid #e4ebf5;
    border-radius: 8px;
    background: #f7f9fc;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current strong {
    margin: 0;
    color: #e60012;
    font-size: 0;
    line-height: 1;
    text-align: center;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current > span {
    min-width: 60px;
    color: #64748b;
    font-size: 13px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current strong span {
    color: #c9183a;
    font-size: 25px;
    font-weight: 600;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current strong em {
    margin-left: 4px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #c9183a;
    font-size: 15px;
    font-style: normal;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-current small {
    height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 3px;
    background: #eaf2ff;
    color: #3b7cff;
    font-size: 12px;
}

.powell-auction-pc-detail-total-line em {
    font-size: 15px;
}

.powell-auction-pc-detail-total-line small {
    color: #8a95a5;
    font-size: 12px;
}

.powell-auction-pc-detail-sold-card {
    min-height: 126px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--ls-success, #10b981) 28%, transparent);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ls-success, #10b981), color-mix(in srgb, var(--ls-success, #10b981) 86%, #fff));
    color: #fff;
    text-align: center;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%);
}

.powell-auction-pc-detail-sold-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 48%);
    border-radius: 50%;
    background: rgb(255 255 255 / 18%);
    color: #fff;
    font-size: 24px;
}

.powell-auction-pc-detail-sold-card div {
    display: grid;
    gap: 4px;
}

.powell-auction-pc-detail-sold-card div span {
    color: rgb(255 255 255 / 86%);
    font-size: 14px;
}

.powell-auction-pc-detail-sold-card strong {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.powell-auction-pc-detail-failed-card {
    min-height: 126px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border-radius: 8px;
    background: #e3e3e3;
    color: #9aa0a6;
    text-align: center;
    font-size: 15px;
}

.powell-auction-pc-detail-failed-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #b8b8b8;
    color: #fff;
    font-size: 22px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid {
    grid-template-columns: 56px minmax(0, 1fr) 74px;
    align-items: center;
    gap: 10px 12px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-label {
    color: #8a95a5;
    font-size: 15px;
}

.powell-auction-pc-detail-latest {
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e3ebf7;
    border-radius: 8px;
    background: #f6f9ff;
}

.powell-auction-pc-detail-latest-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #111827;
    font-size: 15px;
    line-height: 1.4;
}

.powell-auction-pc-detail-latest-title em {
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff;
    color: #6b7b91;
    font-size: 12px;
    font-style: normal;
}

.powell-auction-pc-detail-latest-list {
    display: grid;
    gap: 7px;
}

.powell-auction-pc-detail-latest-head {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 58px;
    gap: 10px;
    padding: 0 10px;
    color: #7a8798;
    font-size: 12px;
}

.powell-auction-pc-detail-latest-head span:first-child {
    grid-column: 2;
}

.powell-auction-pc-detail-latest-head span:last-child {
    grid-column: 3;
    text-align: right;
}

.powell-auction-pc-detail-latest-row {
    min-height: 40px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border: 1px solid #e6eef9;
    border-radius: 7px;
    background: #fff;
    color: #111827;
    font-size: 13px;
}

.powell-auction-pc-detail-latest-row i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #eef4ff;
    color: #3b7cff;
    font-style: normal;
}

.powell-auction-pc-detail-latest-row > span:not(.powell-auction-pc-detail-latest-code) {
    color: #172033;
    font-size: 14px;
}

.powell-auction-pc-detail-latest-code {
    justify-self: end;
    color: #4b5b70;
}

.powell-auction-pc-detail-latest-row.is-leading {
    border-color: #ffd2b7;
    background: #fff8f3;
}

.powell-auction-pc-detail-latest-row.is-leading i {
    width: 34px;
    background: #f97316;
    color: #fff;
    font-size: 12px;
}

.powell-auction-pc-detail-latest-row.is-leading > span:not(.powell-auction-pc-detail-latest-code) {
    color: #f97316;
}

.powell-auction-pc-detail-latest-empty {
    min-height: 116px;
    display: grid;
    place-items: center;
    border: 1px dashed #d9e7fb;
    border-radius: 8px;
    background: #fff;
    color: #8a95a5;
    font-size: 14px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-stepper {
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 0;
    width: var(--powell-auction-pc-detail-bid-width);
    max-width: 100%;
    justify-self: start;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid.is-single .powell-auction-pc-bid-stepper {
    grid-column: 2 / span 2;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step,
.powell-auction-pc-detail-page .powell-auction-pc-detail-bid input {
    height: 44px;
    border-color: #d8e1ee;
    background: #f8fafc;
    text-align: center;
    font-size: 17px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid input[name="amount"] {
    border-radius: 2px 0 0 2px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step-stack {
    height: 44px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step {
    height: 22px;
    border-left: 0;
    border-radius: 0;
    background: #d7d7dc;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step:hover {
    background: #3b7cff;
    border-color: #3b7cff;
    color: #fff;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step:first-child {
    border-bottom: 0;
    border-radius: 0 2px 0 0;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-step:last-child {
    border-radius: 0 0 2px 0;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-quantity {
    grid-column: 3;
    align-self: stretch;
    gap: 2px;
    font-size: 12px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid .powell-auction-pc-bid-quantity span {
    color: #9aa3af;
    line-height: 1;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid input[name="quantity"] {
    width: 100%;
    border-radius: 2px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-bid > button[type="submit"] {
    grid-column: 2 / span 2;
    width: var(--powell-auction-pc-detail-bid-width);
    max-width: 100%;
    height: 46px;
    justify-self: start;
    border-radius: 2px;
    background: #3b7cff;
    font-size: 16px;
    font-weight: 500;
}

.powell-auction-pc-detail-page .powell-auction-pc-deposit-tip {
    width: var(--powell-auction-pc-detail-bid-width);
    max-width: calc(100% - 68px);
    box-sizing: border-box;
    margin-left: 68px;
    padding: 7px 11px;
    border: 0;
    border-left: 3px solid #ff9a4d;
    border-radius: 0;
    background: #fff5ec;
    color: #9a5b22;
    font-size: 12px;
}

.powell-auction-pc-detail-rules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 12px;
    color: #111827;
    font-size: 12px;
    line-height: 1.5;
}

.powell-auction-pc-detail-rules span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-summary > .powell-auction-pc-audit-actions {
    grid-template-columns: 138px;
    justify-content: start;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-summary > .powell-auction-pc-audit-actions button {
    height: 36px;
    border: 1px solid #fecaca;
    background: #fff;
    color: #ef4444;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-content {
    width: 100%;
    display: block;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-panel {
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-tabs {
    gap: 8px;
    height: 58px;
    align-items: center;
    padding: 0 28px;
    border-bottom: 1px solid #edf1f6;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-tabs button {
    min-width: auto;
    height: 34px;
    padding: 0 14px;
    border: 1px solid var(--ls-border-light, #d9e1ec);
    border-radius: 8px;
    background: #f8fbff;
    color: var(--ls-text-secondary, #667085);
    font-size: 14px;
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-tabs button.is-active {
    border-color: var(--ls-primary, #2f7cf6);
    background: var(--ls-primary-soft, #eef5ff);
    color: var(--ls-primary, #2f7cf6);
}

.powell-auction-pc-detail-page .powell-auction-pc-detail-tabpanel {
    padding: 28px 46px 34px;
}

.powell-auction-pc-notice-section {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.powell-auction-pc-detail-page .powell-auction-pc-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 19px;
}

.powell-auction-pc-detail-page .powell-auction-pc-panel-title i {
    color: #3b7cff;
}

.powell-auction-pc-notice-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px 24px 16px;
    background: #f3f7fc;
}

.powell-auction-pc-notice-table span {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
    min-height: 30px;
    align-items: center;
}

.powell-auction-pc-notice-table em {
    color: #8a95a5;
    font-style: normal;
}

.powell-auction-pc-notice-table b {
    color: #000;
    font-weight: 400;
}

@media (max-width: 1180px) {
    .powell-auction-pc-detail-stage,
    .powell-auction-pc-detail-trade {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-detail-latest {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .powell-auction-pc-detail-statbar,
    .powell-auction-pc-detail-rules,
    .powell-auction-pc-notice-table {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc-detail-page .powell-auction-pc-detail-tabs {
        gap: 8px;
        overflow-x: auto;
        padding: 0 14px;
    }
}

/* Refined live-auction hero. Keep this block after older hero rules. */
.powell-auction-pc .powell-auction-pc-spotlight {
    height: 282px;
    min-height: 282px;
    max-height: 282px;
    display: grid;
    grid-template-rows: 32px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 22px 18px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 92%) 0%, rgb(255 250 247 / 96%) 56%, rgb(247 251 255 / 100%) 100%);
}

.powell-auction-pc .powell-auction-pc-hero-head {
    min-width: 0;
    align-items: center;
}

.powell-auction-pc .powell-auction-pc-hero-head span:first-child {
    color: #111827;
    font-size: 21px;
    line-height: 32px;
}

.powell-auction-pc .powell-auction-pc-hero-head span:last-child {
    flex: 0 0 auto;
    min-width: 78px;
    color: #a35b00;
    font-size: 15px;
    line-height: 32px;
    text-align: right;
}

.powell-auction-pc .powell-auction-pc-live-carousel {
    min-height: 0;
    height: 100%;
}

.powell-auction-pc .powell-auction-pc-live-carousel.has-carousel .powell-auction-pc-live-track {
    height: calc(100% - 24px);
}

.powell-auction-pc .powell-auction-pc-live-track,
.powell-auction-pc .powell-auction-pc-live-slide {
    height: 100%;
}

.powell-auction-pc .powell-auction-pc-live-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.powell-auction-pc .powell-auction-pc-live-slide.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.powell-auction-pc .powell-auction-pc-live-card {
    position: relative;
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    padding: 12px 12px 16px;
    border: 1px solid #e4ecf8;
    border-radius: 8px;
    background: rgb(255 255 255 / 82%);
    box-shadow: 0 10px 22px rgb(28 45 74 / 5%);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.powell-auction-pc .powell-auction-pc-live-card:hover {
    border-color: #bfd6fb;
    box-shadow: 0 16px 30px rgb(36 62 102 / 9%);
    transform: translateY(-1px);
}

.powell-auction-pc .powell-auction-pc-live-cover {
    position: relative;
    width: 138px;
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #eef3f8;
    box-shadow: none;
}

.powell-auction-pc .powell-auction-pc-live-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.powell-auction-pc .powell-auction-pc-live-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    max-width: calc(100% - 16px);
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 6px;
    background: rgb(37 99 235 / 92%);
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    white-space: nowrap;
}

.powell-auction-pc .powell-auction-pc-live-main {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto auto minmax(42px, auto);
    gap: 7px;
    align-content: stretch;
    padding-bottom: 2px;
}

.powell-auction-pc .powell-auction-pc-live-title-row {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
}

.powell-auction-pc .powell-auction-pc-live-title-row .powell-auction-pc-title-line {
    margin: 0;
    color: #101828;
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc .powell-auction-pc-live-title-row > span {
    max-width: 72px;
    height: 22px;
    padding: 0 8px;
    border: 1px solid #dbe8fb;
    border-radius: 6px;
    background: #f5f9ff;
    color: #52657f;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc .powell-auction-pc-live-main p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.powell-auction-pc .powell-auction-pc-live-price {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding-top: 1px;
}

.powell-auction-pc .powell-auction-pc-live-price span:first-child {
    flex: 0 0 auto;
    color: #8a95a5;
    font-size: 12px;
}

.powell-auction-pc .powell-auction-pc-live-price span:nth-of-type(2) {
    min-width: 0;
    color: #ef3e35;
    font-size: 24px;
    line-height: 1.05;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.powell-auction-pc .powell-auction-pc-live-facts {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e9eff8;
    border-radius: 8px;
    background: #f7faff;
}

.powell-auction-pc .powell-auction-pc-live-facts span {
    min-width: 0;
    display: grid;
    gap: 2px;
    align-content: center;
    justify-items: center;
    min-height: 42px;
    padding: 6px 4px;
    border-right: 1px solid #e3ebf6;
}

.powell-auction-pc .powell-auction-pc-live-facts span:last-child {
    border-right: 0;
}

.powell-auction-pc .powell-auction-pc-live-facts em,
.powell-auction-pc .powell-auction-pc-live-facts i {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}

.powell-auction-pc .powell-auction-pc-live-facts em {
    color: #1d5fd1;
    font-size: 13px;
    line-height: 1.2;
}

.powell-auction-pc .powell-auction-pc-live-facts i {
    color: #7a8799;
    font-size: 12px;
}

.powell-auction-pc .powell-auction-pc-live-dots {
    right: 2px;
    bottom: 0;
    align-items: center;
    gap: 5px;
    height: 18px;
    padding: 0 0 0 10px;
    background: linear-gradient(90deg, rgb(255 250 247 / 0%), rgb(255 250 247 / 92%) 42%);
}

.powell-auction-pc .powell-auction-pc-live-dots button {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #b9c6d8;
}

.powell-auction-pc .powell-auction-pc-live-dots button.is-active {
    width: 18px;
    background: #5086f1;
}

.powell-auction-pc .powell-auction-pc-account {
    height: 282px;
    min-height: 282px;
    max-height: 282px;
    padding: 20px 18px;
    box-sizing: border-box;
}

.powell-auction-pc .powell-auction-pc-account-actions {
    align-self: end;
}

@media (max-width: 1180px) {
    .powell-auction-pc .powell-auction-pc-spotlight {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .powell-auction-pc .powell-auction-pc-account {
        height: auto;
        min-height: 0;
        max-height: none;
    }
}

@media (max-width: 860px) {
    .powell-auction-pc .powell-auction-pc-live-slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .powell-auction-pc .powell-auction-pc-live-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 170px;
    }

    .powell-auction-pc .powell-auction-pc-live-cover {
        width: 112px;
        min-height: 150px;
    }

    .powell-auction-pc .powell-auction-pc-live-title-row {
        grid-template-columns: 1fr;
    }

    .powell-auction-pc .powell-auction-pc-live-title-row > span {
        max-width: 100%;
        justify-self: start;
    }
}
