.pc-deals-page .home-center__inner{
  width: 100%;
}

.pc-deals-page .pc-deals-main{
  min-width: 0;
}

.pc-deals-page .pc-page-layout{
  display: grid;
  grid-template-columns: var(--pc-side-w) minmax(0, 1fr);
  grid-template-areas: "side main";
  gap: var(--pc-side-gap);
  align-items: start;
}

.pc-deals-page .home-side{
  grid-area: side;
}

.pc-deals-page .pc-deals-main{
  grid-area: main;
  min-width: 0;
}

/* If you still have any "hide sidebar until ready" rule, this guarantees Deals shows it */
.pc-deals-page .home-side__inner{
  opacity: 1 !important;
  visibility: visible !important;
}

.pc-deals-page .pc-deals-head{
  padding: 24px 0 8px;
}

.pc-deals-page .pc-deals-title{
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 650;
}

.pc-deals-page .pc-deals-sub{
  margin: 0;
  font-size: 18px;
  padding-left: 3px;
  line-height: 1.7;
  color: #4b5563;
}

/* Reuse your home-deals grid, but keep it tight under the title */
.pc-deals-page #pcDeals.home-deals{
  margin: 0;
  padding: 0;
}

.pc-deals-empty{
  padding: 56px 24px 80px;
}

.pc-deals-empty__center{
  width: 100%;
  max-width: 760px;
}

.pc-deals-empty__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

.pc-deals-empty__msg{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 760px){
  .pc-deals-page .home-center__inner{
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .pc-deals-page .pc-page-layout{
    display: block;
  }

  .pc-deals-page .home-side{
    display: none;
  }

  .pc-deals-page .pc-deals-main{
    width: 100%;
    max-width: none;
  }

  .pc-deals-page .pc-deals-head{
    padding: 22px 0 14px;
  }

  .pc-deals-page .pc-deals-title{
    font-size: 34px;
  }

  .pc-deals-page .pc-deals-sub{
    max-width: 280px;
    font-size: 16px;
    line-height: 1.55;
    padding-left: 0;
  }

  .pc-deals-page #pcDeals.home-deals{
    width: 100%;
  }

  .pc-deals-page .home-deals__grid{
    width: 100%;
  }
}