.elementor-4870 .elementor-element.elementor-element-06e0639{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ba970b5 *//* Core Styling for the Lesson Container */
.language-boost-lesson {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #f7f9fc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid #e0e8f0;
}

/* Header Styling (A subtle space theme) */
.lesson-header {
  background-color: #1a2a44; /* Dark blue/space theme */
  color: #ffffff;
  padding: 40px 30px;
  text-align: center;
}

.lesson-header h1 {
  font-size: 2.8rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -1px;
}

.lesson-header .intro-text {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Vocab Section & Individual Cards */
.vocab-section {
  padding: 30px;
}

.vocab-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vocab-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Headings for the vocab cards and sub-sections */
.phrase-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #e74c3c; /* A strong accent red */
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Highlighting the basic definition to differentiate it */
.basic-definition {
  font-size: 1.1rem;
  font-style: italic;
  color: #7f8c8d;
  background-color: #fcfcfc;
  padding: 10px 15px;
  border-radius: 5px;
  border-left: 4px solid #3498db; /* Blue accent */
  margin-bottom: 25px;
}

/* The core 'detailed' section styling */
.detailed-explanation h3,
.extra-examples h3 {
  font-size: 1.3rem;
  color: #34495e;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.detailed-explanation p {
  margin-bottom: 20px;
}

.usage-modes {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.usage-modes li {
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 3px solid #eee;
}

.usage-modes li strong {
  color: #34495e;
}

/* Example list and specific focus context styling */
.example-list {
  padding-left: 20px;
  margin-top: 0;
}

.example-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #34495e;
}

.example-list li .focus {
  font-size: 0.9rem;
  color: #bdc3c7;
  display: block;
  margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-boost-lesson {
    margin: 20px;
  }
  
  .lesson-header h1 {
    font-size: 2rem;
  }
  
  .vocab-card {
    padding: 15px;
  }
  
  .phrase-heading {
    font-size: 1.6rem;
  }
}/* End custom CSS */