/** Curriculum section styles (compiled from RAW_Sections_Copies/curriculum.md + snapshot). */

.ahr-section-curriculum {
  box-sizing: border-box;
  width: 100%;
  padding: 64px 100px 49px;
  font-family: "Inter", Arial, sans-serif;
}

.ahr-curriculum-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.ahr-course-includes {
  width: 100%;
  padding: 10px;
  margin: 0;
  font-family: inherit;
  box-sizing: border-box;
}

.ahr-course-includes h2 {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
}

.ahr-includes-grid {
  display: grid;
  grid-template-columns: minmax(0, 37%) minmax(0, 1fr);
  gap: 12px 24px;
  align-items: start;
}

.ahr-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #111827;
}

.ahr-include-item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ahr-curriculum-main {
  width: 100%;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
}

.ahr-curriculum-heading {
  margin: 0 0 8px;
  padding-left: 10px;
  font-family: inherit;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.ahr-course-stats {
  margin: 0 0 12px;
  font-family: inherit;
}

.ahr-stats-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 10px;
}

.ahr-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #111827;
  white-space: nowrap;
}

.ahr-stat-item img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.ahr-curriculum-syllabus {
  padding: 0 50px 0 10px;
  box-sizing: border-box;
}

.ahr-curriculum-bonus {
  margin-top: 30px;
  padding: 0 50px 0 20px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .ahr-section-curriculum {
    padding: 50px;
  }

  .ahr-course-includes h2 {
    font-size: 28px;
  }

  .ahr-curriculum-heading {
    font-size: 30px;
  }

  .ahr-curriculum-syllabus {
    padding: 0;
  }

  .ahr-curriculum-bonus {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .ahr-section-curriculum {
    padding: 10px 0 0;
  }

  .ahr-course-includes,
  .ahr-curriculum-main {
    padding: 10px;
  }

  .ahr-curriculum-main {
    margin-top: -30px;
  }

  .ahr-course-includes h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .ahr-curriculum-heading {
    font-size: 25px;
    padding-left: 0;
  }

  .ahr-includes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 20px;
  }

  .ahr-stats-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 20px;
  }

  .ahr-stat-item {
    white-space: normal;
  }

  .ahr-curriculum-syllabus {
    padding: 0 15px;
  }

  .ahr-curriculum-bonus {
    margin-top: -12px;
    padding: 0 20px 30px;
  }
}



/* Wrapper for one course section */

  .ahr-course-section {

    border: 1px solid #e5e7eb;

    border-radius: 4px;

    background: #ffffff;

    font-family: inherit;

    font-size: 14px;

    color: #111827;

    overflow: hidden;

  }

  .ahr-course-section + .ahr-course-section {

    margin-top: 24px;

  }

  /* Section header */

  .ahr-section-head {

    display: flex;

    font-size: 18px;

    align-items: center;

    justify-content: space-between;

    padding: 14px 18px;

    background: #e5e5e5;

    font-weight: 600;

  }

  .ahr-section-title {

    display: flex;

    align-items: center;

    gap: 8px;

  }

  .ahr-section-meta {

    font-size: 16px;

    color: #6b7280;

    font-weight: 500;

  }

  /* Lesson list */

  .ahr-lesson-list {

    display: flex;

    flex-direction: column;

  }

  .ahr-lesson-row {

    display: flex;

    align-items: center;

    padding: 10px 18px;

    border-top: 1px solid #e5e7eb;

    transition: background 0.15s ease, transform 0.15s ease;

  }

  .ahr-lesson-row:first-child {

    border-top: 1px solid #e5e7eb;

  }

  .ahr-lesson-row:not(.is_locked) {

    cursor: pointer;

  }

  .ahr-lesson-row:not(.is_locked):hover {

    background: #f9fafb;

  }

  .ahr-lesson-row:not(.is_locked):hover .ahr-lesson-title {

    transform: translateX(1px);

  }

  /* Icon on the left */

  .ahr-lesson-icon {

    flex: 0 0 auto;

    margin-right: 10px;

  }

  .ahr-lesson-icon img {

    display: block;

    width: 20px;

    height: 20px;

  }

  /* Main text area */

  .ahr-lesson-main {

    display: flex;

    align-items: center;

    gap: 8px;

    flex: 1 1 auto;

    min-width: 0;

  }

  .ahr-lesson-title {

    font-weight: 500;

    text-decoration: none;

    color: #1f2933;

    transition: transform 0.15s ease, color 0.15s ease;

    display: inline-block;

  }

  .ahr-lesson-row:not(.is_locked):hover .ahr-lesson-title {

    color: #111827;

  }

  /* Base status column */

  .ahr-lesson-status {

    flex: 0 0 40px;

    margin-left: auto;

    margin-right: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    order: 2;

  }

  /* Wider status when there is a Preview pill */

  .ahr-lesson-row.is_preview .ahr-lesson-status {

    flex-basis: 30px;

  }

  /* Tight lock column for locked rows */

  .ahr-lesson-row.is_locked .ahr-lesson-status {

    flex-basis: 28px;

    margin-right: 8px;

  }

  /* Preview pill */

  .ahr-lesson-preview {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 1px 8px;

    font-size: 11px;

    font-weight: 500;

    border-radius: 9999px;

    background-color: #2ba1e9;

    color: #ffffff;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.03em;

    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;

    white-space: nowrap;

  }

  .ahr-lesson-preview:hover {

    transform: translateY(-0.5px);

    box-shadow: 0 0 0 1px rgba(43, 161, 233, 0.1), 0 3px 8px rgba(15, 23, 42, 0.14);

    background-color: #2493d5;

    color:#fff;

  }

  .ahr-lesson-lock img {

    width: 16px;

    height: 16px;

    display: block;

    opacity: 0.5;

  }

  /* Time column at the very end, fixed width */

  .ahr-lesson-time {

    flex: 0 0 78px;

    display: inline-flex;

    align-items: center;

    justify-content: flex-end;

    gap: 4px;

    font-size: 12px;

    color: #6b7280;

    white-space: nowrap;

    order: 3;

  }

  .ahr-lesson-time img {

    width: 12px;

    height: 12px;

    display: block;

  }

  .ahr-lesson-duration {

    font-weight: 500;

    text-align: right;

  }

  /* Locked state */

  .ahr-lesson-row.is_locked {

    cursor: default;

    background: #fafafa;

  }

  .ahr-lesson-row.is_locked .ahr-lesson-title,

  .ahr-lesson-row.is_locked .ahr-lesson-duration,

  .ahr-lesson-row.is_locked .ahr-lesson-time {

    color: #9ca3af;

  }

  .ahr-lesson-row.is_locked .ahr-lesson-preview {

    display: none;

  }

  /* Document lessons */

  .ahr-lesson-row.is_doc .ahr-lesson-icon img {

    width: 18px;

    height: 18px;

    filter: grayscale(50%) brightness(0.7);

  }

  /* Make icons grey for locked rows */

  .ahr-lesson-row.is_locked .ahr-lesson-icon img {

    filter: grayscale(75%) opacity(0.8)

  }

  .ahr-lesson-time img {

    opacity: 0.5;

  }

  

  @media (max-width:868px) {

    .ahr-section-head {

        font-size:16px;

    }

    .ahr-lesson-title {

        font-size:12px;

        line-height:1.3;

    }

  }

  /* Responsive tweaks */

  @media (max-width: 668px) {

    .ahr-section-head {

        font-size:15px;

    }

    .ahr-lesson-title {

        font-size:10px;

        line-height:1.3;

    }

    .ahr-section-meta {

      font-size: 12px;

      padding-left:10px;

    }

    .ahr-lesson-row {

      padding: 10px 12px;

    }

    .ahr-section-head {

      padding: 12px 12px;

    }

    .ahr-lesson-row.is_preview .ahr-lesson-status {

      flex-basis: 30px;

      margin-left:10px;

    }

    .ahr-lesson-row.is_locked .ahr-lesson-status {

      flex-basis: 24px;

      margin-left: 10px;

    }

    .ahr-lesson-preview {

        font-size:10px;

    }

    .ahr-lesson-time {

      flex-basis: 70px;

      font-size: 11px;

      gap: 6px;

    }

  }

  /* Collapsed section state */

  .ahr-course-section.is_collapsed .ahr-lesson-list {

    display: none;

  }

  /* Make headers clickable when they have a toggle icon */

  .ahr-course-section .ahr-section-head.has-toggle {

    cursor: pointer;

  }

.ahr-bonus-header {

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 24px 0;

  }

  .ahr-bonus-media {

    flex: 0 0 180px;

    max-width: 220px;

  }

  .ahr-bonus-media img {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 12px;

  }

  .ahr-bonus-copy {

    flex: 1;

  }

  .ahr-bonus-copy h2 {

    font-size: 35px;

    margin: 0 0 8px 0;

    font-weight: 700;

    color:#0f3350;

  }

  .ahr-bonus-copy p {

      color:#0f3350;

      opacity:0.9;

      max-width:700px;

    margin: 0;

    font-size: 16px;

    line-height: 1.6;

  }

  /* Tablet and mobile */

  @media (max-width: 900px) {

    .ahr-bonus-header {

      align-items: flex-start;

    }

    

    .ahr-bonus-copy h2 {

    font-size: 30px;

    }

    

     .ahr-bonus-copy p {

      max-width:700px;

    margin: 0;

    font-size: 14px;

    line-height: 1.4;

  }

    .ahr-bonus-media {

      width: 180px;

      max-width: 60%;

    }

  }

  @media (max-width: 600px) {

    .ahr-bonus-header {

    flex-direction: column;

     align-items: center;

     text-align: center;

    }

    .ahr-bonus-media {

        flex: 0 0 0;

      width: 160px;

      max-width: 70%;

      margin: 20px 0 -10px 0;

    }

    

    .ahr-bonus-media img {

    display: block;

    width: 100%;

    height: auto;

    

  }

    .ahr-bonus-copy h2 {

    font-size: 30px;

    }

    

     .ahr-bonus-copy p {

      max-width:700px;

    margin: 0;

    font-size: 14px;

    line-height: 1.4;

    max-width:320px;

  }

  }

/* Global header background for ALL bonus sections */

  .ahr-bonus-section .ahr-section-head {

      line-height:1.4;

    background: #f9e8c1;

    color:#061c49;

    border: solid 1px #ffa8a2;

    border-radius: 2px;

  }


.ahr-section-curriculum .ahr-course-section.is_collapsed .ahr-lesson-list {
  display: none;
}
.ahr-section-curriculum .ahr-course-section .ahr-section-head.has-toggle {
  cursor: pointer;
}
