/* style.css */

/* — Hero / Lesson Section — */
.section3 {
  background: #fff;
  padding: 80px 0;
  font-family: Georgia, serif;
  color: #333;
}
.section3 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
}
.section3 h2 {
  font-size: 3rem;
  margin: 0 0 24px;
  line-height: 1.2;
  color: #2c3e50;
}
.section3 h3 {
  font-size: 2rem;
  margin: 48px 0 16px;
  line-height: 1.3;
  color: #2c3e50;
}
.section3 p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0 0 32px;
}
.section3 table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 1.15rem;
}
.section3 th,
.section3 td {
  padding: 20px 24px;
  vertical-align: top;
}
.section3 th + th,
.section3 td + td {
  border-left: 1px solid #ddd;
}
.section3 tr + tr td {
  border-top: 1px solid #ddd;
}
.section3 .btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 32px;
  background: #66bb6a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background .3s ease;
}
.section3 .btn:hover {
  background: #57a05d;
}

@media (max-width: 768px) {
  .section3 .container {
    padding: 0 16px;
  }
  .section3 table,
  .section3 th,
  .section3 td {
    font-size: 1rem;
    padding: 12px 8px;
  }
}
.lesson {
  position: relative;
  padding-top: 3rem;  /* make room for header + CTAs */
}

.lesson-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.lesson-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.lesson-ctas {
  display: flex;
  gap: 1rem;
}

.lesson-ctas .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Audio Companion button */
.btn-audio {
  background: #42a5f5;
  color: #fff;
}
.btn-audio:hover {
  background: #1e88e5;
}

/* SmartFocus Live button */
.btn-live {
  background: #66bb6a;
  color: #fff;
}
.btn-live:hover {
  background: #43a047;
}

/* Icon styling (requires Font Awesome) */
.lesson-ctas .fa-solid {
  font-size: 1.1rem;
}

/* On mobile, stack them */
@media (max-width: 600px) {
  .lesson-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .lesson-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hide the default post title on single posts */
.single-post .entry-title {
  display: none;
}

/* Hide the default title on single posts/pages */
.single-post .entry-title,
.single-post h1.wp-block-post-title {
  display: none !important;
}
