.elementor-13985 .elementor-element.elementor-element-e539759{--display:flex;}/* Start custom CSS for container, class: .elementor-element-e539759 *//* =========================
   PRACTICE EXAM PAGE DESIGN
   Works with: [my_recorded_section class="exam-design"]
   Theme: #E81140
========================= */

/* Wrapper */
.exam-design {
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

/* Course card */
.exam-design .exam-course-card{
  background: linear-gradient(135deg, #fff5f7, #ffffff);
  border: 1px solid rgba(232,17,64,0.16);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(232,17,64,0.08);
  position: relative;
  overflow: hidden;
  transition: .28s ease;
}

/* subtle top accent */
.exam-design .exam-course-card:before{
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  height: 4px;
  background: #E81140;
  opacity: .9;
}

.exam-design .exam-course-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(232,17,64,0.14);
}

/* Header */
.exam-design .exam-course-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

/* Course title */
.exam-design .exam-course-title{
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  display:flex;
  align-items:center;
  gap: 10px;
  line-height: 1.2;
}

/* icon for course title */
.exam-design .exam-course-title:before{
  content:"📝";
  font-size: 18px;
}

/* Badge */
.exam-design .exam-course-badge{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(232,17,64,0.10);
  color: #E81140;
  border: 1px solid rgba(232,17,64,0.28);
  text-transform: uppercase;
}

/* Links grid */
.exam-design .exam-links{
  display: grid;
  gap: 12px;
}

/* Practice exam button */
.exam-design .exam-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration:none;
  background: #ffffff;
  border: 1px solid rgba(232,17,64,0.18);
  color: #111827;
  font-weight: 700;
  transition: .25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* left icon */
.exam-design .exam-link:before{
  content:"📝";
  font-size: 16px;
  opacity: .95;
}

/* right arrow */
.exam-design .exam-link:after{
  content:"›";
  font-size: 22px;
  opacity: .55;
  transform: translateY(-1px);
}

/* Hover */
.exam-design .exam-link:hover{
  background: #E81140;
  border-color: rgba(232,17,64,0.35);
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 14px 26px rgba(232,17,64,0.25);
}

.exam-design .exam-link:hover:after{
  opacity: .9;
}

/* Message box */
.ld-live-exam-msg{
  padding: 15px;
  border-radius: 12px;
  background: #fff1f2;
  border-left: 5px solid #E81140;
  font-weight: 700;
  color: #7f1d1d;
}/* End custom CSS */