/* ============================================================
   Study Feature — css/pages/study-page.css
   Follows the same design language as letter-page.css and
   videos-page.css. Christ-centered, calm, spiritual tone.
   ============================================================ */

:root {
  --brand-blue:      #4a90e2;
  --brand-blue-dark: #2a64b8;
  --ink:             #2c3e50;
  --muted:           #6c757d;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */

.study-hero {
  background: radial-gradient(
      1100px 480px at 50% -40%,
      rgba(74, 144, 226, 0.18),
      transparent
    ),
    linear-gradient(135deg, rgba(74, 144, 226, 0.06), rgba(53, 122, 189, 0.08));
  padding: 84px 0 48px;
  text-align: center;
}

.study-hero h1 {
  font-weight: 800;
  letter-spacing: -0.3px;
}

.study-hero p.lead {
  max-width: 820px;
  margin: 12px auto 0;
  color: #3e4a57;
}

@media (max-width: 575.98px) {
  .study-hero {
    padding-top: 68px;
  }
}

/* ─── Sections ───────────────────────────────────────────────────────────────── */

.section {
  padding: 56px 0;
}

.section.bg-gray {
  background: #f4f6fb;
}

.section-head {
  border-bottom: 1px solid #e9edf3;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}

.section-head p {
  color: var(--muted);
  margin: 0.35rem 0 0;
}

/* ─── "How to use" guidance box ──────────────────────────────────────────────── */

.study-how-to-box {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fd 100%);
  border: 1px solid rgba(74, 144, 226, 0.22);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.study-how-to-box h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.study-how-to-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.study-how-to-box ul li {
  color: #3e4a57;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  line-height: 1.55;
}

/* ─── Roadmap / lesson cards ──────────────────────────────────────────────────── */

.study-roadmap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.study-lesson-card {
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(2, 8, 20, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.4rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.study-lesson-card:hover {
  box-shadow: 0 8px 22px rgba(2, 8, 20, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.study-lesson-card.is-available {
  border-left: 4px solid var(--brand-blue);
}

.study-lesson-card.is-coming-soon {
  opacity: 0.68;
  cursor: default;
  pointer-events: none;
}

.study-lesson-card.is-coming-soon:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(2, 8, 20, 0.05);
}

/* Lesson number circle */
.study-lesson-number {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.is-coming-soon .study-lesson-number {
  background: #c8d2de;
}

.study-lesson-card-body {
  flex: 1;
  min-width: 0;
}

.study-lesson-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.study-status-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.study-status-badge.available {
  background: #e0f0e9;
  color: #1a6e42;
}

.study-status-badge.coming-soon {
  background: #eef0f4;
  color: #6c757d;
}

.study-read-time {
  font-size: 0.78rem;
  color: var(--muted);
}

.study-lesson-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.3rem;
}

.study-lesson-card p {
  font-size: 0.9rem;
  color: #5b6b7c;
  margin: 0;
  line-height: 1.55;
}

/* Completed checkmark (localStorage) */
.study-lesson-card.is-completed .study-lesson-number {
  background: #2e9e6a;
}

.study-lesson-card.is-completed .study-lesson-number::after {
  content: '✓';
}

.study-lesson-card.is-completed .study-lesson-number span {
  display: none;
}

/* ─── Landing page CTA section ────────────────────────────────────────────────── */

.study-begin-cta {
  text-align: center;
  padding: 4rem 0 3rem;
}

.study-begin-cta h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.study-begin-cta p {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  color: #5b6b7c;
  font-size: 1rem;
}

/* ─── Lesson page layout ──────────────────────────────────────────────────────── */

/* Lesson header breadcrumb */
.study-lesson-breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.study-lesson-breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
}

.study-lesson-breadcrumb a:hover {
  text-decoration: underline;
}

.study-lesson-breadcrumb .sep {
  margin: 0 0.4rem;
  color: #b0bcc8;
}

/* Lesson purpose statement */
.study-lesson-purpose {
  background: linear-gradient(135deg, #f7f9ff 0%, #eef3fc 100%);
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.97rem;
  color: #3e4a57;
  line-height: 1.6;
}

/* Lesson page two-column layout */
.study-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .study-layout {
    grid-template-columns: 1fr;
  }
  .study-sidebar {
    order: -1;
  }
}

/* ─── Sidebar — lesson roadmap ────────────────────────────────────────────────── */

.study-sidebar {
  position: sticky;
  top: 88px;
}

.study-sidebar-box {
  background: #f7f9fc;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.study-sidebar-box h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(44, 62, 80, 0.55);
  margin: 0 0 0.85rem;
}

.study-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.study-sidebar-nav li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eaecf0;
  font-size: 0.88rem;
  color: #5b6b7c;
  line-height: 1.4;
}

.study-sidebar-nav li:last-child {
  border-bottom: none;
}

.study-sidebar-nav li.is-active {
  color: var(--brand-blue);
  font-weight: 700;
}

.study-sidebar-nav li.is-active a {
  color: var(--brand-blue);
  font-weight: 700;
}

.study-sidebar-nav .lesson-dot {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 2px solid #c8d2de;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #8a99a8;
}

.study-sidebar-nav li.is-active .lesson-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.study-sidebar-nav li.is-completed .lesson-dot {
  background: #2e9e6a;
  border-color: #2e9e6a;
  color: #fff;
}

.study-sidebar-nav a {
  color: inherit;
  text-decoration: none;
}

.study-sidebar-nav a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

.study-sidebar-nav .lesson-coming-soon {
  font-style: italic;
  color: #b0bcc8;
}

/* ─── Lesson content body ─────────────────────────────────────────────────────── */

.study-content {
  max-width: 100%;
}

.study-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
  padding-top: 0.5rem;
}

.study-content h2:first-child {
  margin-top: 0;
}

.study-content p {
  font-size: 0.97rem;
  color: #3e4a57;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Scripture inline quote */
.study-verse {
  border-left: 3px solid var(--brand-blue);
  background: #f7f9fc;
  border-radius: 0 8px 8px 0;
  padding: 0.65rem 1rem;
  margin: 0.6rem 0 1rem;
}

.study-verse blockquote {
  margin: 0;
  font-size: 0.97rem;
  font-style: italic;
  color: #3e4a57;
  line-height: 1.65;
}

.study-verse cite {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}

/* Scripture references list (inline) */
.study-verse-refs {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0.5rem 0 1rem;
}

.study-verse-refs span {
  white-space: nowrap;
}

/* Main idea callout */
.study-main-idea {
  background: #fff8e8;
  border: 1px solid #f0d98a;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  color: #4a3a0e;
  line-height: 1.65;
}

.study-main-idea strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #856404;
  margin-bottom: 0.35rem;
}

/* Explanatory note */
.study-note {
  background: #f4f6fb;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.65;
}

.study-note strong {
  color: var(--ink);
}

/* ─── Key Truth box ───────────────────────────────────────────────────────────── */

.study-key-truth {
  background: linear-gradient(135deg, #0b1f66 0%, #1a3a8f 100%);
  border-radius: 14px;
  padding: 1.6rem 1.75rem;
  margin: 2.5rem 0;
  color: #fff;
}

.study-key-truth h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1rem;
}

.study-key-truth p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 0.5rem;
}

.study-key-truth p:last-child {
  margin: 0;
}

.study-key-truth .key-truth-scripture {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

/* ─── Reflection questions ────────────────────────────────────────────────────── */

.study-reflection {
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(2, 8, 20, 0.05);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.study-reflection h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
}

.study-reflection ol {
  padding-left: 1.35rem;
  margin: 0;
}

.study-reflection ol li {
  font-size: 0.97rem;
  color: #3e4a57;
  line-height: 1.65;
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.study-reflection ol li:last-child {
  margin-bottom: 0;
}

/* ─── Prayer / closing invitation ────────────────────────────────────────────── */

.study-closing {
  text-align: center;
  padding: 2rem 0 1rem;
}

.study-closing p {
  font-size: 1rem;
  color: #5b6b7c;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

/* ─── Prev / Next lesson navigation ──────────────────────────────────────────── */

.study-lesson-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e6e9ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.study-lesson-nav .btn {
  min-width: 140px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 10px;
  transition: all 0.22s ease;
  font-size: 0.92rem;
}

.study-lesson-nav .btn-outline-secondary {
  border: 2px solid var(--brand-blue) !important;
  color: var(--brand-blue) !important;
  background: transparent !important;
}

.study-lesson-nav .btn-outline-secondary:hover {
  background: var(--brand-blue) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.study-lesson-nav .btn-primary {
  background: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  color: #fff;
}

.study-lesson-nav .btn-primary:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.study-lesson-nav .btn-primary.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.study-back-to-study {
  text-align: center;
  margin-top: 1.75rem;
}

.study-back-to-study a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.study-back-to-study a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

/* Mark as read button */
.study-mark-read {
  text-align: center;
  margin-bottom: 1rem;
}

.study-mark-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1.5px solid #d0d8e4;
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.study-mark-read-btn:hover {
  border-color: #2e9e6a;
  color: #2e9e6a;
  background: #f0faf5;
}

.study-mark-read-btn.is-marked {
  border-color: #2e9e6a;
  color: #2e9e6a;
  background: #f0faf5;
}

/* ─── CTA band (reuses component, no duplication needed) ─────────────────────── */

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 767.98px) {
  .study-hero {
    padding: 60px 0 36px;
  }

  .study-lesson-card {
    gap: 1rem;
  }

  .study-lesson-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .study-key-truth {
    padding: 1.25rem 1.3rem;
  }

  .study-lesson-nav .btn {
    min-width: 120px;
    padding: 0.6rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .study-lesson-card,
  .study-lesson-nav .btn,
  .study-mark-read-btn {
    transition: none !important;
    transform: none !important;
  }
}

/* ── Learning Outcomes box ──────────────────────────────────────────────── */
.study-learning-outcomes {
  background: #f0f7ff;
  border: 1px solid #c5ddf7;
  border-left: 4px solid #4a90e2;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.study-learning-outcomes h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #4a90e2;
  margin: 0 0 0.75rem;
}
.study-learning-outcomes ul {
  margin: 0;
  padding-left: 1.25rem;
}
.study-learning-outcomes li {
  font-size: 0.9375rem;
  color: #1e3a5f;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

/* ── Before You Begin box ───────────────────────────────────────────────── */
.study-before-you-begin {
  background: #fdf8f0;
  border: 1px solid #e8d8b0;
  border-left: 4px solid #c9a84c;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: #5a4a28;
  line-height: 1.6;
}
.study-before-you-begin strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #c9a84c;
  margin-bottom: 0.4rem;
}

/* ── Review / Check Understanding section ───────────────────────────────── */
.study-review {
  background: #f8fafe;
  border: 1px solid #d0dff5;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.study-review h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.study-review ol {
  margin: 0;
  padding-left: 1.5rem;
}
.study-review ol li {
  font-size: 0.9375rem;
  color: #374151;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

/* ── Study with someone note ────────────────────────────────────────────── */
.study-with-someone {
  background: #f4f4f4;
  border-left: 3px solid #9ca3af;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
.study-with-someone strong {
  color: #374151;
}

/* ── Study structure description on landing page ────────────────────────── */
.study-structure-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.study-structure-box h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 1rem;
}
.study-structure-box ul {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
@media (max-width: 600px) {
  .study-structure-box ul { grid-template-columns: 1fr; }
}
.study-structure-box li {
  font-size: 0.9275rem;
  color: #374151;
  line-height: 1.5;
}

/* ── Check Your Understanding section ──────────────────────────────────── */
.study-check-understanding {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.study-check-understanding h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}
.study-check-understanding > ol {
  margin: 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.study-check-understanding > ol > li {
  font-size: 0.9375rem;
  color: #1f2937;
  line-height: 1.6;
}
.study-check-understanding > ol > li > p:first-child {
  margin-bottom: 0.5rem;
}
.study-mcq-options {
  list-style: none;
  padding-left: 0.5rem;
  margin: 0.5rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.study-mcq-options li {
  font-size: 0.9175rem;
  color: #374151;
  padding: 0.2rem 0;
}
.study-answer {
  margin-top: 0.6rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.6rem;
}
.study-answer summary {
  font-size: 0.825rem;
  font-weight: 600;
  color: #4a90e2;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.study-answer summary::-webkit-details-marker { display: none; }
.study-answer summary::before {
  content: '▸';
  font-size: 0.7rem;
  transition: transform 0.15s;
}
.study-answer[open] summary::before { transform: rotate(90deg); }
.study-answer p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
  padding-left: 0.25rem;
}

/* ── Key Scriptures box ─────────────────────────────────────────────────── */
.study-key-scriptures {
  background: #eef6ff;
  border: 1px solid #bdd5f7;
  border-left: 4px solid #4a90e2;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.study-key-scriptures h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a90e2;
  margin: 0 0 0.6rem;
}
.study-key-scriptures ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.study-key-scriptures li {
  font-size: 0.9rem;
  color: #1e3a5f;
  font-style: italic;
}

/* ── Big Idea line ──────────────────────────────────────────────────────── */
.study-big-idea {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e3a5f;
  line-height: 1.55;
  border-left: 4px solid #c9a84c;
  padding: 0.5rem 1rem;
  margin: 0 0 1.75rem;
  background: #fdf8f0;
  border-radius: 0 8px 8px 0;
}

/* ── Question type label ────────────────────────────────────────────────── */
.study-question-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fff;
  background: #4a90e2;
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  margin-right: 0.4rem;
  vertical-align: middle;
  line-height: 1.6;
}
.study-question-label.label-observe  { background: #4a90e2; }
.study-question-label.label-understand { background: #6366f1; }
.study-question-label.label-scripture { background: #059669; }
.study-question-label.label-explain  { background: #d97706; }
.study-question-label.label-respond  { background: #7c3aed; }

/* ── After This Lesson box ──────────────────────────────────────────────── */
.study-after-lesson {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #16a34a;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.study-after-lesson h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16a34a;
  margin: 0 0 0.5rem;
}
.study-after-lesson p {
  font-size: 0.9375rem;
  color: #14532d;
  margin: 0;
  line-height: 1.6;
}

/* ── Study Completion Note (Lesson 5 only) ──────────────────────────────── */
.study-completion-note {
  background: #1e3a5f;
  color: #e8f0fb;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
}
.study-completion-note h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}
.study-completion-note p {
  font-size: 0.9375rem;
  color: #c8daf7;
  margin: 0;
  line-height: 1.75;
}
