/* === PRACTICE HEADER === */
.ppa-practice-header {
  text-align: center;
  padding: 70px 20px 30px;
}

.ppa-practice-header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #111;
}

.ppa-practice-header p {
  font-size: 1.1rem;
  color: #555;
}

/* === PRACTICE LIST === */
.ppa-practice-list {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

/* === ROW === */
.ppa-practice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: #ffffff;
  padding: 22px 25px;
  margin-bottom: 15px;

  border-radius: 14px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* === CHAPTER NAME === */
.chapter-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* === PRACTICE BUTTON === */
.practice-btn {
  background: linear-gradient(135deg, #FFD700, #e6c200);
  color: #000;
  text-decoration: none !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* === FOOTER CTA === */
.ppa-practice-footer {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(160deg, #fff9e6, #ffffff);
}

.ppa-practice-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .ppa-practice-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-btn {
    align-self: flex-start;
  }
}
