.elementor-6427 .elementor-element.elementor-element-3a30992{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2099469 *//* ===== PREMIUM MODERN THEME VARIABLES ===== */
:root {
  --bg-app: #f1f5f9; /* Very soft app-like background */
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-desc: #64748b;
  --badge-bg: #f8fafc;
  --badge-text: #64748b;
  --border-light: #f1f5f9;
  
  /* Gradient Colors for Premium Look */
  --grad-start: #3b82f6; /* Vibrant Blue */
  --grad-end: #8b5cf6;   /* Rich Purple */
  
  /* Soft 3D Shadows */
  --shadow-base: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 15px 30px rgba(99, 102, 241, 0.12);
}

/* ===== BASE WRAPPER ===== */
.ha-list-wrapper {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 950px; /* Perfect reading width */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-app);
  box-sizing: border-box;
  border-radius: 20px; /* Optional: Soft curves for the whole block */
}

.ha-list-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== HEADINGS (WITH GRADIENT EFFECT) ===== */
.ha-header-section {
  text-align: center;
  margin-bottom: 45px;
}

.ha-main-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 10px;
  /* Gradient Text Magic */
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ha-sub-title {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-desc);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== LIST CONTAINER ===== */
.ha-list-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== PREMIUM LIST ITEM (CARD) ===== */
.ha-list-item {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card-bg);
  padding: 22px 28px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-base);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Magic Left Color Strip on Hover */
.ha-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ha-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.ha-list-item:hover::before {
  opacity: 1;
}

/* ===== BADGE (CHAPTER NUMBER) ===== */
.ha-item-badge {
  flex-shrink: 0;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ha-list-item:hover .ha-item-badge {
  background: rgba(139, 92, 246, 0.1);
  color: var(--grad-end);
  border-color: rgba(139, 92, 246, 0.2);
}

/* ===== CONTENT (MIDDLE) ===== */
.ha-item-content {
  flex-grow: 1;
  padding-right: 24px;
}

.ha-item-content h3 {
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.ha-item-content p {
  font-size: 14.5px;
  color: var(--text-desc);
  line-height: 1.6;
}

/* ===== GRADIENT ACTION BUTTON ===== */
.ha-item-action {
  flex-shrink: 0;
}

.ha-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ha-btn:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.ha-btn:active {
  transform: scale(0.96);
}

.ha-icon {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.ha-list-item:hover .ha-icon {
  transform: translateX(5px); /* Smooth arrow movement */
}

/* ===== RESPONSIVE (TABLET & MOBILE) ===== */
@media (max-width: 768px) {
  .ha-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 16px;
  }

  .ha-item-badge {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .ha-item-content {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .ha-item-action {
    width: 100%;
  }

  .ha-btn {
    width: 100%; /* Full width button on mobile */
    padding: 14px 24px;
  }
}/* End custom CSS */