/* ===============================
   EXTRA QUESTION PAGE CARDS
================================ */
.question-extra-card {
  background: #ffffff !important;
  color: #111 !important;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 25px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  min-height: 180px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===============================
   BLACK HEADINGS
================================ */
.question-extra-card h3 {
  color: #000;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 12px;
}

/* ===============================
   PARAGRAPHS / TEXT
================================ */
.question-extra-card p {
  line-height: 1.7;
  margin: 0 0 12px;
}

.question-extra-card p:last-child {
  margin-bottom: 0;
}

/* ===============================
   DEFAULT LINKS (PINK)
================================ */
.question-extra-card a {
  color: #FF006E;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.question-extra-card a:hover {
  text-decoration: underline;
}

/* ===============================
   🔥 NEW BUTTON (BULLETPROOF)
================================ */
.examspert-btn {
  background: #FF006E;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none !important;
  font-weight: 600;
  transition: 0.2s ease;
}

.examspert-btn:hover {
  opacity: 0.9;
  color: #fff !important;
}

/* ===============================
   LIST STYLING
================================ */
.question-extra-card ul,
.question-extra-card ol {
  padding-left: 18px;
  margin: 0 0 12px;
}

.question-extra-card ul li,
.question-extra-card ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===============================
   IMAGES
================================ */
.question-extra-card img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 991px) {
  .question-extra-card {
    min-height: 160px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .question-extra-card {
    padding: 18px;
    min-height: 140px;
  }

  .question-extra-card h3 {
    font-size: 18px;
  }
}

/* ===============================
   WHITE PAGE WRAPPER
================================ */

.page-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0;
}