/* ===== Feature Page Base Layout ===== */

.feature-page {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 24px;
}


/* Left Ad */
.feature-ad {
  width: 220px;
  flex-shrink: 0;
}

.feature-ad .ad-box {
  height: 600px;
  border: 2px dashed #ff2f92;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2f92;
  font-weight: 600;
}

/* Main Content */
.feature-main {
  flex: 1;
  min-width: 0; /* prevents overflow */
}

/* ============================
   ✅ MOBILE LAYOUT FIX
   Matches Hero-like behavior
   ============================ */

@media (max-width: 768px) {

  .feature-page {
    flex-direction: column;      /* stack */
    padding: 16px;               /* tighter sides */
    gap: 20px;
  }

  .feature-main {
    max-width: 100%;
  }

  /* Move ad below content on mobile */
  .feature-ad {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .feature-ad .ad-box {
    width: 100%;
    max-width: 320px;
    height: 120px;
  }
}
