/* ===================================== */
/* 1. GLOBAL / DESKTOP (980px and above) */
/* ===================================== */

.this_color_131315 { background-color: #131315; }

.entire_stage_wrapper_container {
  width: 100%;
  background-color: #131315;
}

.entire_stage_wrapper_outside {
  position: relative;
  width: 100%;
  height: 700px;
  margin: auto;
    
/*  background-color: rgba(26,213,187,0.64);*/
}

.entire_stage_wrapper_inside {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: auto;
  width: 1000px;
  height: 700px;
  z-index: 1;
    
/*  background-color: rgba(10, 10, 86, 0.64);*/
}

.the-stage-copy {
  position: absolute;
  top: 385px; /* --- ADJUST VERTICAL POSITION HERE --- */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 74px;
  line-height: 1.2;
  text-align: left;
  color: white;
  text-wrap: balance;
  text-transform: none;
    
/*  background-color: rgba(255, 0, 71, 0.30);*/
}

.MPR-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
  position: absolute;
  top: 604px; /* --- ADJUST GAP FROM TEXT HERE --- */ 
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-sizing: border-box;
}

.MPR-item {
  font-family: var(--mpr-font-main);
  font-size: 24px;
  color: var(--mpr-btn-two-text) !important;
  background-color: var(--mpr-btn-two-bg) !important;
  border: 2px solid var(--mpr-btn-two-border) !important;
  padding: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0; /* Brutalist sharp corners */
}

.MPR-item:hover {
  color: var(--mpr-btn-two-text-hover) !important;
  background-color: var(--mpr-btn-two-bg-hover) !important;
  border: 2px solid var(--mpr-btn-two-border-hover) !important;
}

/* ============================= */
/* 2. TABLET (979px to 734px)    */
/* ============================= */

@media (max-width: 979px) {
  .entire_stage_wrapper_outside {
    height: 600px;
  }    
  .entire_stage_wrapper_inside {
    width: 733px;
    height: 600px;
  }
  
  .the-stage-copy {
    font-size: 62px;
    top: 300px; /* ertical spacing */
    padding: 0 20px;
  }

  .MPR-container {
    grid-template-columns: repeat(3, 1fr); /* 3 Cols for Tablet */
    top: 480px;
    padding: 0 20px;
  }
}

/* =========================== */
/* 3. MOBILE (733px and below) */
/* =========================== */

@media (max-width: 733px) {
  .entire_stage_wrapper_outside {
    height: 580px;
  }

  .entire_stage_wrapper_inside {
    width: 300px;
    height: 580px;
  }

  .the-stage-copy {
    font-size: 42px;
    top: 100px; /* --- MOBILE TOP POSITION --- */ 
    padding: 0 0px;
  }

  .MPR-container {
    grid-template-columns: 1fr;
    top: 330px; /* --- MOBILE BUTTON GAP --- */ 
    padding: 0 0px;
    gap: 12px;
  }

  .MPR-item {
    font-size: 20px;
    padding: 15px;
  }
}