/* ============================================================
   HOME — Layout principal
   Espelho de templates/Home/styles.ts
   ============================================================ */

/* ── Grid 2 colunas (75% + 23%) ─────────────────────────────── */
.pc-home-wrapper {
  padding-bottom: var(--pc-space-xl);
}

.pc-home-grid {
  display:         flex;
  justify-content: space-between;
  gap:             2.4rem;
  align-items:     flex-start;
}

/* Left — 75% */
.pc-home-left {
  width: 75%;
  min-width: 0;
}

/* Right / Sidebar — 23% */
.pc-home-right {
  width:      23%;
  flex-shrink: 0;
}

/* ── Bottom (Vídeos — full width abaixo do grid) ───────────── */
.pc-home-bottom {
  margin-top: var(--pc-space-md);
}

/* ── Responsive — mobile (< 1200px) ─────────────────────────── */
@media (max-width: 1200px) {
  .pc-home-grid {
    flex-direction: column;
    gap:            0;
  }

  .pc-home-left,
  .pc-home-right {
    width: 100%;
  }

  .pc-home-right {
    margin-top: var(--pc-space-xl);
  }
}
