/* =========================================================================
   Responding to a Cleaning Request — page-specific styles
   Scoped entirely under #responding-cleaning-request, per this page's
   own spec (same convention as the Money and Payments page).

   COLOR / TOKEN NOTE: update the var(--your-real-variable, #fallback)
   calls below if your global stylesheet already defines these — e.g.
   if --cn-green already exists globally, point --rcr-green at it.
   ========================================================================= */

#responding-cleaning-request {
    --rcr-green: var(--cn-green, var(--primary, #1c7a4a));
    --rcr-green-dark: var(--primary-dark, #145c38);
    --rcr-green-light: var(--primary-light, #e7f6ee);
    --rcr-green-border: #cdebd9;
    --rcr-navy: var(--text-dark, #14261f);
    --rcr-text-muted: var(--text-muted, #5c6b65);
    --rcr-border: var(--border-color, #e3ece6);
    --rcr-radius-lg: 16px;
    --rcr-radius-md: 12px;
    --rcr-radius-sm: 10px;
    --rcr-gap: 24px;

    width: 100%;
    max-width: 100%;
    min-width: 0;
    color: var(--rcr-navy);
}

#responding-cleaning-request *,
#responding-cleaning-request *::before,
#responding-cleaning-request *::after {
    box-sizing: border-box;
}

#responding-cleaning-request img {
    display: block;
    max-width: 100%;
    height: auto;
}

#responding-cleaning-request svg {
    max-width: 100%;
}

#responding-cleaning-request h1,
#responding-cleaning-request h2,
#responding-cleaning-request h3 {
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
}

#responding-cleaning-request a {
    text-decoration: none;
    color: inherit;
}

#responding-cleaning-request .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    box-sizing: border-box;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

#responding-cleaning-request .rcr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    max-width: 100%;
    width: auto;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
}

#responding-cleaning-request .rcr-btn--primary {
    background: var(--rcr-green);
    color: #fff;
}

#responding-cleaning-request .rcr-btn--primary:hover {
    background: var(--rcr-green-dark);
}

#responding-cleaning-request .rcr-btn--outline {
    background: transparent;
    color: var(--rcr-green);
    border-color: var(--rcr-green);
}

#responding-cleaning-request .rcr-btn--outline:hover {
    background: var(--rcr-green-light);
}

/* =========================================================================
   BREADCRUMB
   ========================================================================= */

#responding-cleaning-request .rcr-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    font-size: 13px;
    color: var(--rcr-text-muted);
}

#responding-cleaning-request .rcr-breadcrumb a {
    color: var(--rcr-text-muted);
}

#responding-cleaning-request .rcr-breadcrumb a:hover {
    color: var(--rcr-green);
}

#responding-cleaning-request .rcr-breadcrumb li[aria-current="page"] {
    color: var(--rcr-navy);
    font-weight: 500;
}

#responding-cleaning-request .rcr-breadcrumb-sep {
    color: #b7c3bd;
}

/* =========================================================================
   HERO
   ========================================================================= */

#responding-cleaning-request .rcr-hero {
    margin-bottom: 32px;
}

#responding-cleaning-request .rcr-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

#responding-cleaning-request .rcr-hero-content {
    min-width: 0;
    order: 1;
}

#responding-cleaning-request .rcr-hero-media {
    min-width: 0;
    order: 2;
    position: relative;
}

#responding-cleaning-request .rcr-badge {
    display: inline-block;
    background: var(--rcr-green-light);
    color: var(--rcr-green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

#responding-cleaning-request .rcr-hero-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--rcr-navy);
    margin-bottom: 14px;
}

#responding-cleaning-request .rcr-hero-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: var(--rcr-navy);
    margin: 0 0 10px;
}

#responding-cleaning-request .rcr-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rcr-text-muted);
    margin: 0 0 20px;
    max-width: 60ch;
}

#responding-cleaning-request .rcr-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--rcr-navy);
}

#responding-cleaning-request .rcr-meta-row li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#responding-cleaning-request .rcr-meta-row .fa-solid {
    color: var(--rcr-green);
    font-size: 14px;
}

#responding-cleaning-request .rcr-hero-image {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--rcr-radius-lg);
}

#responding-cleaning-request .rcr-hero-note {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-top: -20px;
    background: var(--rcr-green-light);
    border: 1px solid var(--rcr-green-border);
    border-radius: var(--rcr-radius-sm);
    padding: 14px 18px;
}

#responding-cleaning-request .rcr-hero-note p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--rcr-navy);
    line-height: 1.4;
}

#responding-cleaning-request .rcr-hero-note-underline {
    display: block;
    width: 34px;
    height: 2px;
    background: var(--rcr-green);
    margin-top: 8px;
}

/* =========================================================================
   PAGE GRID (main content + sidebar)
   Mobile order here is simply "all of main, then all of sidebar" —
   which already matches this page's requested mobile order, so no
   grid-area reordering trick is needed (unlike some of the other
   resource pages, where sidebar cards had to be interleaved).
   ========================================================================= */

#responding-cleaning-request .rcr-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--rcr-gap);
}

#responding-cleaning-request .rcr-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#responding-cleaning-request .rcr-sidebar {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =========================================================================
   NUMBERED SECTIONS — fallback + shared styles
   ========================================================================= */

#responding-cleaning-request .rcr-section {
    min-width: 0;
}

/*
   FALLBACK STYLES — x-bookings.section-heading (.cbp-section__*)
   ---------------------------------------------------------------
   REMOVE THIS BLOCK if these classes already have site-wide styles.
*/
#responding-cleaning-request .cbp-section__head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

#responding-cleaning-request .cbp-section__number {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rcr-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#responding-cleaning-request .cbp-section__head-text {
    min-width: 0;
}

#responding-cleaning-request .cbp-section__head-text h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--rcr-navy);
    margin-bottom: 6px;
}

#responding-cleaning-request .cbp-section__desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--rcr-text-muted);
    margin: 0;
}
/* --- end fallback block --- */

/*
   x-bookings.checklist (.cbp-checklist) — real styles, duplicated
   safely from earlier pages' stylesheets (harmless if already global).
*/
#responding-cleaning-request .cbp-checklist {
    list-style: none;
    margin: 0;
    padding: 20px;
    background: var(--rcr-green-light);
    border: 1px solid var(--rcr-green-border);
    border-radius: var(--rcr-radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

#responding-cleaning-request .cbp-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.4;
    color: var(--rcr-navy);
}

#responding-cleaning-request .cbp-checklist__icon {
    color: var(--rcr-green);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/*
   x-bookings.tip-box (.cbp-tip-box) — new component, real styles.
*/
#responding-cleaning-request .cbp-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--rcr-green-light);
    border: 1px solid var(--rcr-green-border);
    border-radius: var(--rcr-radius-md);
    padding: 14px 16px;
    margin-top: 16px;
}

#responding-cleaning-request .cbp-tip-box__icon {
    flex-shrink: 0;
    color: var(--rcr-green);
    font-size: 15px;
    margin-top: 1px;
}

#responding-cleaning-request .cbp-tip-box__text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--rcr-navy);
    margin: 0;
}

/* =========================================================================
   SECTION 1 — checklist + request-info card
   ========================================================================= */

#responding-cleaning-request .rcr-checklist-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

#responding-cleaning-request .rcr-request-card {
    background: #fff;
    border: 1px solid var(--rcr-border);
    border-radius: var(--rcr-radius-md);
    padding: 18px;
    min-width: 0;
}

#responding-cleaning-request .rcr-request-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
}

#responding-cleaning-request .rcr-request-card__title .fa-solid {
    color: var(--rcr-green);
}

#responding-cleaning-request .rcr-request-card__line {
    font-size: 13.5px;
    color: var(--rcr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
}

#responding-cleaning-request .rcr-request-card__line .fa-solid {
    color: var(--rcr-green);
    width: 14px;
    flex-shrink: 0;
}

#responding-cleaning-request .rcr-request-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--rcr-green);
    margin-top: 6px;
}

/* =========================================================================
   SECTIONS 2 / 4 — content + supporting media/card layout
   ========================================================================= */

#responding-cleaning-request .rcr-content-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

#responding-cleaning-request .rcr-media-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--rcr-radius-md);
}

#responding-cleaning-request .rcr-notification-card {
    background: #fff;
    border: 1px solid var(--rcr-border);
    border-radius: var(--rcr-radius-md);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

#responding-cleaning-request .rcr-notification-card__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rcr-green-light);
    color: var(--rcr-green);
    font-size: 16px;
}

#responding-cleaning-request .rcr-notification-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
    margin: 0 0 4px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

#responding-cleaning-request .rcr-notification-card__time {
    font-size: 12px;
    font-weight: 500;
    color: var(--rcr-text-muted);
}

#responding-cleaning-request .rcr-notification-card__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--rcr-text-muted);
    margin: 0;
}

/* =========================================================================
   SECTION 3 — example message + tips
   ========================================================================= */

#responding-cleaning-request .rcr-message-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#responding-cleaning-request .rcr-message-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--rcr-green);
    text-transform: none;
    margin: 0 0 10px;
}

#responding-cleaning-request .rcr-message-label--navy {
    color: var(--rcr-navy);
}

#responding-cleaning-request .rcr-message-box {
    background: #fff;
    border: 1px solid var(--rcr-border);
    border-radius: var(--rcr-radius-md);
    padding: 18px;
    min-width: 0;
}

#responding-cleaning-request .rcr-message-box p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--rcr-navy);
    margin: 0 0 12px;
}

#responding-cleaning-request .rcr-message-box p:last-child {
    margin-bottom: 0;
}

/* =========================================================================
   SECTION 5 — manage requests card + toggle indicators
   ========================================================================= */

#responding-cleaning-request .rcr-manage-card {
    background: #fff;
    border: 1px solid var(--rcr-border);
    border-radius: var(--rcr-radius-md);
    padding: 18px;
    min-width: 0;
}

#responding-cleaning-request .rcr-manage-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
    margin: 0 0 14px;
}

#responding-cleaning-request .rcr-manage-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#responding-cleaning-request .rcr-manage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
    color: var(--rcr-navy);
}

/* Presentational-only toggle indicator — not a real form control, since
   the spec says functionality isn't required unless already supported.
   If real toggling is added later, swap this for an actual
   <input type="checkbox"> styled the same way. */
#responding-cleaning-request .rcr-toggle {
    display: inline-flex;
    align-items: center;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: #d7dedb;
    padding: 3px;
    flex-shrink: 0;
}

#responding-cleaning-request .rcr-toggle__knob {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.15s ease;
}

#responding-cleaning-request .rcr-toggle.is-on {
    background: var(--rcr-green);
}

#responding-cleaning-request .rcr-toggle.is-on .rcr-toggle__knob {
    transform: translateX(16px);
}

/* =========================================================================
   PREV / NEXT NAV
   ========================================================================= */

#responding-cleaning-request .rcr-page-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

#responding-cleaning-request .rcr-nav-btn {
    width: 100%;
    max-width: 100%;
}

/* =========================================================================
   SIDEBAR CARDS
   ========================================================================= */

#responding-cleaning-request .rcr-sidebar-card {
    background: #fff;
    border: 1px solid var(--rcr-border);
    border-radius: var(--rcr-radius-lg);
    padding: 20px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

#responding-cleaning-request .rcr-sidebar-card h2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--rcr-navy);
    margin-bottom: 16px;
}

/* --- Progress card --- */

#responding-cleaning-request .rcr-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

#responding-cleaning-request .rcr-progress-head h2 {
    margin-bottom: 0;
}

#responding-cleaning-request .rcr-progress-circle {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

#responding-cleaning-request .rcr-progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#responding-cleaning-request .rcr-progress-track,
#responding-cleaning-request .rcr-progress-value {
    fill: none;
    stroke-width: 6;
}

#responding-cleaning-request .rcr-progress-track {
    stroke: #e3ece6;
}

#responding-cleaning-request .rcr-progress-value {
    stroke: var(--rcr-green);
    stroke-linecap: round;
    /* circumference = 2 * PI * r(27) ≈ 169.6; 40% shown, 60% gap */
    stroke-dasharray: 169.6;
    stroke-dashoffset: 101.8;
}

#responding-cleaning-request .rcr-progress-fraction {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--rcr-navy);
}

#responding-cleaning-request .rcr-progress-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/*
   FALLBACK STYLES — x-bookings.progress-step (.cbp-progress__*)
   ---------------------------------------------------------------
   REMOVE THIS BLOCK if these classes already have site-wide styles.
*/
#responding-cleaning-request .cbp-progress__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--rcr-text-muted);
}

#responding-cleaning-request .cbp-progress__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #c3cec8;
    color: #fff;
}

#responding-cleaning-request .cbp-progress__item.is-complete {
    color: var(--rcr-navy);
}

#responding-cleaning-request .cbp-progress__item.is-complete .cbp-progress__icon {
    background: var(--rcr-green);
    border-color: var(--rcr-green);
}
/* --- end fallback block --- */

#responding-cleaning-request .rcr-progress-btn {
    width: 100%;
}

/* --- Download guide card ---
   FALLBACK STYLES — x-bookings.download-resource (.cbp-download__*)
   ---------------------------------------------------------------
   REMOVE THIS BLOCK if these classes already have site-wide styles
   (they should, if the Delivering a 5-Star Clean page shipped first).
*/
#responding-cleaning-request .cbp-download__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

#responding-cleaning-request .cbp-download__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rcr-green-light);
    color: var(--rcr-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

#responding-cleaning-request .cbp-download__body {
    min-width: 0;
    flex: 1;
}

#responding-cleaning-request .cbp-download__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
    margin: 0 0 4px;
}

#responding-cleaning-request .cbp-download__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--rcr-text-muted);
    margin: 0 0 12px;
}

#responding-cleaning-request .cbp-download__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--rcr-green);
    background: transparent;
    border: 1.5px solid var(--rcr-green);
    border-radius: 999px;
    padding: 10px 16px;
    overflow-wrap: break-word;
}

#responding-cleaning-request .cbp-download__btn:hover {
    background: var(--rcr-green-light);
}
/* --- end fallback block --- */

/* --- Related resources card ---
   FALLBACK STYLES — x-bookings.related-resource (.cbp-related__*)
   ---------------------------------------------------------------
   REMOVE THIS BLOCK if these classes already have site-wide styles.
*/
#responding-cleaning-request .rcr-related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#responding-cleaning-request .cbp-related__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

#responding-cleaning-request .cbp-related__thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--rcr-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--rcr-green-light);
    display: block;
}

#responding-cleaning-request .cbp-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#responding-cleaning-request .cbp-related__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

#responding-cleaning-request .cbp-related__title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--rcr-navy);
    line-height: 1.35;
    overflow-wrap: break-word;
}

#responding-cleaning-request .cbp-related__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--rcr-text-muted);
    flex-wrap: wrap;
}

#responding-cleaning-request .cbp-related__type {
    background: var(--rcr-green-light);
    color: var(--rcr-green-dark);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

#responding-cleaning-request .cbp-related__arrow {
    color: var(--rcr-green);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
/* --- end fallback block --- */

/* --- Top tips card ---
   FALLBACK STYLES — x-bookings.tip-item (.cbp-tip*)
   ---------------------------------------------------------------
   REMOVE THIS BLOCK if these classes already have site-wide styles.
*/
#responding-cleaning-request .rcr-tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#responding-cleaning-request .cbp-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#responding-cleaning-request .cbp-tip__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--rcr-green-light);
    color: var(--rcr-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

#responding-cleaning-request .cbp-tip__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

#responding-cleaning-request .cbp-tip__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
}

#responding-cleaning-request .cbp-tip__desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--rcr-text-muted);
}
/* --- end fallback block --- */

/* Explicit icon-color fix, as required by this page's spec: only the
   tip icon is green, never the surrounding text, and it's forced with
   !important specifically so it can't be knocked out by a global
   Font Awesome reset or an inherited text color further up the page. */
#responding-cleaning-request .tip-list .cbp-tip__icon,
#responding-cleaning-request .tip-list .cbp-tip__icon i,
#responding-cleaning-request .tip-list .cbp-tip__icon i::before {
    color: var(--rcr-green) !important;
}

/* --- Support card --- */

#responding-cleaning-request .rcr-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rcr-green-light);
    color: var(--rcr-green);
    margin-bottom: 14px;
    font-size: 18px;
}

#responding-cleaning-request .rcr-support-lead {
    font-size: 14px;
    font-weight: 700;
    color: var(--rcr-navy);
    margin: 0 0 6px;
}

#responding-cleaning-request .rcr-support-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--rcr-text-muted);
    margin: 0 0 16px;
}

#responding-cleaning-request .rcr-support-btn {
    width: 100%;
}

#responding-cleaning-request .rcr-support-note {
    font-size: 12.5px;
    color: var(--rcr-text-muted);
    text-align: center;
    margin: 12px 0 0;
}

/* =========================================================================
   MOBILE CONTAINER SAFETY
   ========================================================================= */

@media (max-width: 767px) {
    #responding-cleaning-request .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    #responding-cleaning-request .rcr-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #responding-cleaning-request .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #responding-cleaning-request .rcr-sidebar-card,
    #responding-cleaning-request .cbp-checklist,
    #responding-cleaning-request .rcr-request-card,
    #responding-cleaning-request .rcr-message-box,
    #responding-cleaning-request .rcr-manage-card {
        padding: 16px;
    }

    #responding-cleaning-request .rcr-hero-title {
        font-size: 28px;
    }

    #responding-cleaning-request .rcr-hero-image {
        height: 190px;
    }
}

@media (max-width: 360px) {
    #responding-cleaning-request .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #responding-cleaning-request .rcr-meta-row {
        gap: 12px;
        row-gap: 6px;
    }
}

/* =========================================================================
   TABLET — 768px and up
   ========================================================================= */

@media (min-width: 768px) {
    #responding-cleaning-request .rcr-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    #responding-cleaning-request .rcr-hero-image {
        height: 300px;
    }

    #responding-cleaning-request .rcr-checklist-card {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    #responding-cleaning-request .rcr-content-media {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    #responding-cleaning-request .rcr-media-card img {
        height: 100%;
    }

    #responding-cleaning-request .rcr-message-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #responding-cleaning-request .rcr-page-nav {
        flex-direction: row;
        justify-content: space-between;
    }

    #responding-cleaning-request .rcr-nav-btn {
        width: auto;
    }
}

/* =========================================================================
   LARGE TABLET / DESKTOP — 992px and up
   ========================================================================= */

@media (min-width: 992px) {
    #responding-cleaning-request .rcr-page-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}