/* 臨時清掃服務者回覆 v63：緊湊比較卡版 */
.temp-cleaning-replies-shell {
    --tc-ink: #12263a;
    --tc-muted: #647487;
    --tc-line: #e6ded5;
    --tc-paper: #ffffff;
    --tc-soft: #faf7f3;
    --tc-teal: #0b8f82;
    --tc-teal-dark: #08736a;
    --tc-teal-soft: #eaf7f5;
    --tc-coral: #f36d56;
    --tc-coral-dark: #d95843;
    --tc-coral-soft: #fff1ed;
    --tc-shadow: 0 10px 30px rgba(23, 43, 58, .06);
    width: min(100%, 1720px);
    min-height: 100vh;
    padding-bottom: 56px;
    color: var(--tc-ink);
    background:
        radial-gradient(circle at 2% 2%, rgba(243, 109, 86, .08), transparent 28rem),
        radial-gradient(circle at 98% 5%, rgba(11, 143, 130, .08), transparent 30rem),
        #f6f3ee;
    font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* top navigation */
.temp-cleaning-replies-shell .temp-cleaning-topbar {
    min-height: 66px;
    padding: 0 30px;
    border-bottom: 1px solid var(--tc-line);
    background: rgba(255, 253, 249, .97);
    box-shadow: 0 5px 18px rgba(23, 43, 58, .045);
}

.temp-cleaning-replies-shell .service-brand {
    font-size: 30px;
}

.temp-cleaning-replies-shell .service-brand small {
    font-size: 12px;
}

.temp-cleaning-replies-shell .service-menu {
    gap: 24px;
    font-size: 14px;
}

.temp-cleaning-replies-shell .service-menu a {
    padding: 22px 0;
}

.temp-cleaning-replies-shell .service-menu a.active::after,
.temp-cleaning-replies-shell .service-menu a:hover::after {
    bottom: 13px;
}

.temp-cleaning-replies-shell .service-actions {
    gap: 9px;
}

.temp-cleaning-replies-shell .service-actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    padding: 0 15px;
    font-size: 13px;
    box-shadow: none;
}

/* notification and flow */
.temp-cleaning-replies-shell > .alert {
    width: min(1320px, calc(100% - 44px));
    margin: 14px auto 0;
    padding: 11px 15px;
    border: 1px solid #c7e6e1;
    border-radius: 12px;
    background: #edf8f6;
    color: #126e66;
    box-shadow: none;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
}

.temp-cleaning-progress {
    width: min(1320px, calc(100% - 44px));
    margin: 14px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--tc-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 5px 18px rgba(23, 43, 58, .035);
}

.temp-cleaning-progress span {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 10px;
    color: #8a8179;
    font-size: 12px;
    font-weight: 900;
}

.temp-cleaning-progress span + span {
    border-left: 1px solid var(--tc-line);
}

.temp-cleaning-progress span::before {
    content: attr(data-step);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0ebe5;
    color: #756c64;
    font-size: 10px;
}

.temp-cleaning-progress span.done {
    color: var(--tc-teal-dark);
}

.temp-cleaning-progress span.done::before {
    content: "✓";
    background: var(--tc-teal-soft);
    color: var(--tc-teal);
}

.temp-cleaning-progress span.active {
    color: #fff;
    background: var(--tc-teal);
}

.temp-cleaning-progress span.active::before {
    background: #fff;
    color: var(--tc-teal);
}

/* compact hero */
.temp-cleaning-replies-hero {
    width: min(1320px, calc(100% - 44px));
    margin: 14px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 14px;
    align-items: stretch;
}

.temp-cleaning-replies-copy,
.temp-cleaning-replies-ticket,
.temp-cleaning-replies-panel,
.temp-cleaning-reply-card,
.temp-cleaning-replies-summary article {
    border: 1px solid var(--tc-line);
    background: var(--tc-paper);
    box-shadow: var(--tc-shadow);
    backdrop-filter: none;
}

.temp-cleaning-replies-copy {
    min-height: 142px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px;
    align-content: center;
    border-radius: 20px;
    padding: 22px 26px;
}

.temp-cleaning-replies-copy > .eyebrow,
.temp-cleaning-replies-copy > h1,
.temp-cleaning-replies-copy > p,
.temp-cleaning-replies-copy > .temp-cleaning-live-pill {
    grid-column: 1;
}

.temp-cleaning-replies-copy h1 {
    margin: 3px 0 6px;
    color: var(--tc-ink);
    font-family: "Noto Sans TC", sans-serif;
    font-size: clamp(30px, 3vw, 39px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.temp-cleaning-replies-copy p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--tc-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.temp-cleaning-replies-actions {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    display: grid;
    gap: 8px;
    margin: 0;
}

.temp-cleaning-replies-actions a,
.reply-actions a,
.reply-actions button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 11px;
    padding: 0 15px;
    background: var(--tc-coral);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.temp-cleaning-replies-actions a:hover,
.reply-actions a:hover,
.reply-actions button:hover {
    transform: translateY(-1px);
    background: var(--tc-coral-dark);
}

.temp-cleaning-replies-actions a.ghost,
.reply-actions a.ghost {
    border: 1px solid #b9ddd8;
    background: #fff;
    color: var(--tc-teal-dark);
}

.temp-cleaning-replies-actions a.ghost:hover,
.reply-actions a.ghost:hover {
    border-color: var(--tc-teal);
    background: var(--tc-teal-soft);
}

.temp-cleaning-live-pill {
    width: fit-content;
    margin-top: 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: var(--tc-teal-soft) !important;
    color: var(--tc-teal-dark) !important;
    font-size: 11px !important;
    letter-spacing: 0 !important;
}

.temp-cleaning-live-pill::before {
    width: 7px !important;
    height: 7px !important;
    box-shadow: 0 0 0 4px rgba(11, 143, 130, .1) !important;
}

.temp-cleaning-replies-ticket {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #bfe0dc;
    border-radius: 20px;
    padding: 21px;
    background: linear-gradient(145deg, #f4fbfa 0%, #e8f6f3 100%);
    color: var(--tc-ink);
    box-shadow: none;
}

.temp-cleaning-replies-ticket span,
.temp-cleaning-replies-ticket small {
    color: var(--tc-muted);
    font-size: 11px;
    font-weight: 900;
}

.temp-cleaning-replies-ticket strong {
    margin: 5px 0;
    color: var(--tc-teal-dark);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.03em;
}

.temp-cleaning-replies-ticket p {
    margin: 8px 0 0;
    color: var(--tc-ink);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 900;
}

.temp-cleaning-replies-ticket .request-condition-note {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.45;
}

/* metrics */
.temp-cleaning-replies-summary {
    width: min(1320px, calc(100% - 44px));
    margin: 0 auto 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.temp-cleaning-replies-summary article {
    min-height: 82px;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: none;
}

.temp-cleaning-replies-summary article:nth-child(odd) {
    background: #fffaf7;
}

.temp-cleaning-replies-summary article:nth-child(even) {
    background: #f3faf8;
}

.temp-cleaning-replies-summary span,
.temp-cleaning-replies-summary small {
    display: block;
    color: var(--tc-muted);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
}

.temp-cleaning-replies-summary strong {
    display: block;
    margin: 3px 0;
    color: var(--tc-ink);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    line-height: 1.25;
}

/* request + sorting */
.temp-cleaning-replies-overview {
    width: min(1320px, calc(100% - 44px));
    margin: 0 auto 14px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
    gap: 14px;
    align-items: stretch;
}

.temp-cleaning-replies-panel {
    border-radius: 18px;
    padding: 17px;
    box-shadow: none;
}

.temp-cleaning-replies-overview .section-heading.compact {
    margin-bottom: 10px;
}

.temp-cleaning-replies-overview .section-heading.compact h2 {
    margin: 2px 0 0;
    color: var(--tc-ink);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 19px;
    letter-spacing: -.02em;
}

.temp-cleaning-replies-overview #tempBookingStatus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--tc-teal-soft);
    color: var(--tc-teal-dark);
    font-size: 10px;
    font-weight: 900;
}

.temp-cleaning-request-info.replies-info {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.temp-cleaning-request-info.replies-info article {
    min-height: 75px;
    padding: 10px 11px;
    border: 1px solid #ece3da;
    border-radius: 12px;
    background: var(--tc-soft);
}

.temp-cleaning-request-info.replies-info article small,
.temp-cleaning-request-info.replies-info article span {
    display: block;
    color: var(--tc-muted);
    font-size: 10px;
    line-height: 1.4;
}

.temp-cleaning-request-info.replies-info article strong {
    display: block;
    margin: 3px 0;
    color: var(--tc-ink);
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.temp-cleaning-reply-sort-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.temp-cleaning-reply-sort-tabs a {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #dfeae8;
    border-radius: 12px;
    padding: 9px 10px;
    background: #f4f8f7;
    color: var(--tc-ink);
    text-decoration: none;
}

.temp-cleaning-reply-sort-tabs a:hover {
    border-color: #a9d3ce;
}

.temp-cleaning-reply-sort-tabs a.active {
    border-color: var(--tc-teal);
    background: var(--tc-teal);
    color: #fff;
    box-shadow: none;
}

.temp-cleaning-reply-sort-tabs strong,
.temp-cleaning-reply-sort-tabs small {
    display: block;
    color: inherit;
}

.temp-cleaning-reply-sort-tabs strong {
    font-size: 13px;
}

.temp-cleaning-reply-sort-tabs small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.35;
    opacity: .78;
}

/* provider comparison */
.temp-cleaning-replies-layout {
    width: min(1320px, calc(100% - 44px));
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.temp-cleaning-replies-main {
    display: grid;
    gap: 10px;
}

.temp-cleaning-list-heading {
    min-height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 0 3px;
}

.temp-cleaning-list-heading h2 {
    margin: 1px 0 0;
    color: var(--tc-ink);
    font-size: 22px;
    line-height: 1.2;
}

.temp-cleaning-provider-count {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid #c8e4e0;
    border-radius: 999px;
    background: var(--tc-teal-soft);
    color: var(--tc-teal-dark);
    font-size: 11px;
    font-weight: 900;
}

.temp-cleaning-reply-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.temp-cleaning-reply-card {
    position: relative;
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-columns: 38px 70px minmax(0, 1fr);
    grid-auto-rows: max-content;
    column-gap: 11px;
    row-gap: 0;
    border-radius: 18px;
    padding: 16px;
    overflow: hidden;
    box-shadow: 0 7px 22px rgba(23, 43, 58, .05);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.temp-cleaning-reply-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: transparent;
}

.temp-cleaning-reply-card:hover {
    transform: translateY(-2px);
    border-color: #bfd9d5;
    box-shadow: 0 12px 28px rgba(23, 43, 58, .08);
}

.temp-cleaning-reply-card.recommended {
    border-color: #f4b6aa;
}

.temp-cleaning-reply-card.recommended::before {
    background: var(--tc-coral);
}

.temp-cleaning-reply-card.selected {
    border-color: #79c6be;
    box-shadow: 0 12px 28px rgba(11, 143, 130, .10);
}

.temp-cleaning-reply-card.selected::before {
    background: var(--tc-teal);
}

.reply-rank {
    grid-column: 1;
    grid-row: 1;
    width: 36px;
    height: 36px;
    align-self: start;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--tc-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    position: relative;
}

.reply-rank small {
    position: absolute;
    top: 41px;
    left: 50%;
    min-width: 42px;
    transform: translateX(-50%);
    color: var(--tc-coral-dark);
    font-size: 9px;
    text-align: center;
    white-space: nowrap;
}

.reply-avatar {
    grid-column: 2;
    grid-row: 1;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 15px;
    background: #f0ebe5;
}

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

.reply-body {
    display: contents;
}

.reply-title-row {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    display: grid;
    gap: 7px;
    align-content: start;
}

.reply-title-row h3 {
    margin: 1px 0 0;
    color: var(--tc-ink);
    font-size: 18px;
    line-height: 1.32;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
}

.reply-title-row .eyebrow {
    margin: 0;
    color: #bd694e;
    font-size: 9px;
    line-height: 1.35;
}

.reply-price {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #f3d5ce;
    border-radius: 11px;
    padding: 7px 9px;
    background: var(--tc-coral-soft);
    text-align: left;
}

.reply-price span {
    color: #88736b;
    font-size: 9px;
    font-weight: 900;
}

.reply-price strong {
    color: var(--tc-coral-dark);
    font-size: 16px;
    white-space: nowrap;
}

.reply-metrics {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 14px;
}

.reply-metrics span {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    border: 1px solid #ece3d9;
    border-radius: 10px;
    padding: 5px 7px;
    background: #fffaf4;
    color: #5b5048;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.reply-note {
    grid-column: 1 / -1;
    margin: 11px 0 0;
    color: #536473;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
}

.reply-chips {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.reply-chips span {
    border-radius: 999px;
    padding: 5px 8px;
    background: var(--tc-teal-soft);
    color: var(--tc-teal-dark);
    font-size: 9px;
    font-weight: 900;
}

.reply-service-tags {
    grid-column: 1 / -1;
    margin-top: 8px;
    color: #4d5b67;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;
}

.reply-service-tags strong {
    color: var(--tc-ink);
}

.reply-service-tags.muted {
    color: #79858e;
}

.reply-actions {
    grid-column: 1 / -1;
    align-self: end;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 13px;
}

.reply-actions form {
    margin: 0;
}

.reply-actions a,
.reply-actions button {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
}

.reply-actions a.solid {
    background: var(--tc-teal);
}

/* panels under provider cards */
.temp-cleaning-replies-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

#tempSelectedReplyPanel {
    grid-column: 1 / -1;
}

.temp-cleaning-replies-side .temp-cleaning-replies-panel {
    padding: 16px;
}

.temp-cleaning-replies-side .temp-cleaning-replies-panel h3 {
    margin: 2px 0 10px;
    color: var(--tc-ink);
    font-size: 18px;
}

.temp-cleaning-replies-panel.warm {
    background: linear-gradient(145deg, #fff9f4, #f0faf8);
}

.temp-cleaning-replies-panel.warm > strong {
    display: block;
    margin: 5px 0;
    color: var(--tc-teal-dark);
    font-size: 17px;
}

.temp-cleaning-replies-panel.warm > span,
.temp-cleaning-replies-panel.warm > p {
    display: block;
    color: var(--tc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.temp-cleaning-replies-side a.solid {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border-radius: 10px;
    padding: 0 14px;
    background: var(--tc-teal);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.temp-cleaning-side-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.temp-cleaning-side-list article {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 7px;
    row-gap: 2px;
    padding: 9px;
    border: 1px solid #ece3da;
    border-radius: 11px;
    background: #fff;
}

.temp-cleaning-side-list article strong {
    grid-row: 1 / span 2;
    width: auto;
    min-width: 25px;
    min-height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    padding: 3px 5px;
    background: var(--tc-coral-soft);
    color: var(--tc-coral-dark);
    font-size: 9px;
    line-height: 1.2;
    text-align: center;
}

.temp-cleaning-side-list article span {
    color: var(--tc-ink);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 900;
}

.temp-cleaning-side-list article small {
    color: var(--tc-muted);
    font-size: 9px;
    line-height: 1.45;
}

.temp-cleaning-empty-state {
    grid-column: 1 / -1;
    padding: 22px !important;
    border-radius: 18px !important;
    box-shadow: none !important;
}

.temp-cleaning-empty-state h3 {
    font-size: 22px !important;
}

/* responsive */
@media (max-width: 1220px) {
    .temp-cleaning-replies-shell .service-menu {
        gap: 15px;
    }

    .temp-cleaning-replies-shell .service-brand small {
        display: none;
    }

    .temp-cleaning-replies-overview {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-reply-sort-tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .temp-cleaning-reply-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 930px) {
    .temp-cleaning-replies-shell .temp-cleaning-topbar {
        padding: 0 18px;
    }

    .temp-cleaning-replies-hero {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-replies-copy {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-replies-actions {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: repeat(2, minmax(0, max-content));
        margin-top: 13px;
    }

    .temp-cleaning-replies-ticket {
        min-height: 0;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        align-items: center;
    }

    .temp-cleaning-replies-ticket strong {
        grid-row: 1 / span 4;
        margin: 0;
    }

    .temp-cleaning-replies-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .temp-cleaning-request-info.replies-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .temp-cleaning-replies-side {
        grid-template-columns: 1fr;
    }

    #tempSelectedReplyPanel {
        grid-column: auto;
    }

    .temp-cleaning-side-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .temp-cleaning-replies-shell {
        padding-bottom: 100px;
    }

    .temp-cleaning-replies-shell .temp-cleaning-topbar {
        min-height: 62px;
    }

    .temp-cleaning-progress,
    .temp-cleaning-replies-hero,
    .temp-cleaning-replies-summary,
    .temp-cleaning-replies-overview,
    .temp-cleaning-replies-layout,
    .temp-cleaning-replies-shell > .alert {
        width: calc(100% - 22px);
    }

    .temp-cleaning-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .temp-cleaning-progress span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--tc-line);
    }

    .temp-cleaning-progress span:nth-child(4) {
        border-top: 1px solid var(--tc-line);
    }

    .temp-cleaning-replies-copy {
        padding: 19px;
        border-radius: 17px;
    }

    .temp-cleaning-replies-copy h1 {
        font-size: 29px;
    }

    .temp-cleaning-replies-actions {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-replies-actions a {
        width: 100%;
    }

    .temp-cleaning-replies-ticket {
        border-radius: 17px;
        padding: 17px;
    }

    .temp-cleaning-replies-summary,
    .temp-cleaning-request-info.replies-info,
    .temp-cleaning-reply-sort-tabs,
    .temp-cleaning-reply-list,
    .temp-cleaning-side-list {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-replies-summary article {
        min-height: 0;
    }

    .temp-cleaning-reply-card {
        grid-template-columns: 34px 62px minmax(0, 1fr);
        padding: 14px;
    }

    .reply-rank {
        width: 32px;
        height: 32px;
    }

    .reply-rank small {
        top: 37px;
    }

    .reply-avatar {
        width: 62px;
        height: 62px;
        border-radius: 13px;
    }

    .reply-title-row h3 {
        font-size: 16px;
    }

    .reply-price {
        display: grid;
        gap: 2px;
    }

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

    .reply-actions {
        grid-template-columns: 1fr;
    }

    .temp-cleaning-list-heading {
        align-items: center;
    }
}
