/* Erasmus+ Learning Homepage */

.oer-homepage {
  font-family: inherit;
  color: #1f2933;
  background: #ffffff;
}

.oer-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.oer-hero {
  background: linear-gradient(135deg, #eef4f8 0%, #f8fbfd 100%);
  padding: 80px 0;
}

.oer-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.oer-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0077b6;
}

.oer-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: #102a43;
}

.oer-hero-subtitle {
  font-size: 22px;
  line-height: 1.5;
  color: #334e68;
  margin-bottom: 18px;
}

.oer-hero p,
.oer-section p,
.oer-final-cta p {
  font-size: 17px;
  line-height: 1.75;
  color: #52606d;
}

.oer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.oer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}

.oer-btn-primary {
  background: #0077b6;
  color: #ffffff;
}

.oer-btn-primary:hover {
  background: #005f92;
  color: #ffffff;
  transform: translateY(-2px);
}

.oer-btn-secondary {
  background: #ffffff;
  color: #0077b6;
  border: 1px solid #cfe8f5;
}

.oer-btn-secondary:hover {
  background: #eaf6fb;
  color: #005f92;
}

.oer-btn-white {
  background: #ffffff;
  color: #0077b6;
}

.oer-btn-white:hover {
  background: #eef8fc;
  color: #005f92;
}

.oer-hero-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 45, 75, 0.12);
  border: 1px solid #e6eef4;
}

.oer-card-top {
  font-size: 14px;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 18px;
}

.oer-hero-card h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #102a43;
}

.oer-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: #334e68;
  font-weight: 600;
}

.oer-section {
  padding: 74px 0;
}

.oer-light {
  background: #f5f8fa;
}

.oer-centered {
  max-width: 780px;
  text-align: center;
}

.oer-section h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: #102a43;
}

.oer-section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.oer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oer-feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e2e8ee;
  box-shadow: 0 10px 30px rgba(15, 45, 75, 0.06);
}

.oer-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6fb;
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 20px;
}

.oer-feature-card h3,
.oer-audience-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #102a43;
}

.oer-course-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  background: #eef7fb;
  border: 1px solid #d7edf7;
  border-radius: 28px;
  padding: 44px;
}

.oer-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.oer-audience-grid > div {
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid #e2e8ee;
}

.oer-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.oer-final-cta {
  padding: 78px 0;
  background: linear-gradient(135deg, #005f92 0%, #0077b6 100%);
  color: #ffffff;
}

.oer-final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  color: #ffffff;
}

.oer-final-cta p {
  color: #eaf6fb;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .oer-hero-grid,
  .oer-course-box,
  .oer-split {
    grid-template-columns: 1fr;
  }

  .oer-cards {
    grid-template-columns: 1fr;
  }

  .oer-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oer-hero {
    padding: 58px 0;
  }

  .oer-section {
    padding: 58px 0;
  }
}

@media (max-width: 600px) {
  .oer-audience-grid {
    grid-template-columns: 1fr;
  }

  .oer-course-box {
    padding: 30px;
  }

  .oer-buttons {
    flex-direction: column;
  }

  .oer-btn {
    width: 100%;
  }
}
/* Custom WPML language switcher in header menu */

.oer-language-switcher {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 14px !important;
    list-style: none !important;
}

.oer-lang-current {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: transparent !important;
    border: 0 !important;
    padding: 8px 4px !important;
    cursor: pointer !important;
    font: inherit !important;
    color: inherit !important;
}

.oer-lang-flag {
    width: 18px !important;
    height: 12px !important;
    object-fit: cover !important;
    display: inline-block !important;
}

.oer-lang-arrow {
    font-size: 11px !important;
    margin-left: 2px !important;
}

.oer-lang-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    min-width: 155px !important;
    background: #ffffff !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    border: 1px solid #e2e8ee !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(15, 45, 75, 0.16) !important;
    z-index: 99999 !important;
}

.oer-language-switcher:hover .oer-lang-dropdown {
    display: block !important;
}

.oer-lang-dropdown-item {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.oer-lang-dropdown-item a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 9px 14px !important;
    color: #334e68 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.oer-lang-dropdown-item a:hover {
    background: #f1f7fb !important;
    color: #0077b6 !important;
}/* 1. Prepare the parent container for link expansion and smooth animations */
.clickable-card {
    position: relative !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
}

/* Lift the card slightly and add a subtle shadow on hover for a natural UX feel */
.clickable-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* 2. Invisible overlay: expand the button's link tag to cover the entire card area */
.clickable-card a::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important; /* Forces the invisible clickable layer to sit on top of everything */
    width: 100% !important;
    height: 100% !important;
}

/* 3. Prevent inner text, images, or icons from blocking or interfering with the click event */
.clickable-card .elementor-widget, 
.clickable-card img, 
.clickable-card h3 {
    pointer-events: none !important;
}
/* =========================================================
   PageTurners Course Design — Step 1
   Main colours, typography and lesson layout
   Works across EN, PL, DA, SL
   ========================================================= */

:root {
  --pt-ink: #17313b;
  --pt-text: #2f3f46;
  --pt-muted: #6b7c85;

  --pt-green: #2fa876;
  --pt-green-dark: #1f7f5a;
  --pt-green-soft: #eaf7f1;

  --pt-blue: #2e78d6;
  --pt-blue-soft: #edf5ff;

  --pt-paper: #fffdf7;
  --pt-yellow: #f3bd4f;
  --pt-yellow-soft: #fff8e7;

  --pt-border: #dfe9e6;
  --pt-shadow: 0 12px 32px rgba(23, 49, 59, 0.08);
}

/* Main lesson content container */
.pt-lesson {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 22px 70px;
  color: var(--pt-text);
  font-size: 17px;
  line-height: 1.78;
}

/* Headings inside lessons */
.pt-lesson h1,
.pt-lesson h2,
.pt-lesson h3,
.pt-lesson h4 {
  color: var(--pt-ink);
  line-height: 1.25;
  margin-top: 0;
}

.pt-lesson h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.pt-lesson h2 {
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 14px;
}

.pt-lesson h3 {
  font-size: 21px;
  font-weight: 750;
  margin-bottom: 12px;
}

.pt-lesson p {
  margin-bottom: 18px;
}

.pt-lesson strong {
  color: var(--pt-ink);
}

.pt-lesson ul,
.pt-lesson ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.pt-lesson li {
  margin-bottom: 9px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .pt-lesson {
    padding: 28px 16px 50px;
    font-size: 16px;
  }
}
/* =========================================================
   PageTurners Course Design — Step 3
   Hero banner and learning cards
   ========================================================= */

/* Hero section */
.pt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47, 168, 118, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(46, 120, 214, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, var(--pt-paper));
  border: 1px solid var(--pt-border);
  border-radius: 28px;
  padding: 42px;
  margin-bottom: 34px;
  box-shadow: var(--pt-shadow);
}

.pt-hero::after {
  content: "📖";
  position: absolute;
  right: 28px;
  bottom: 18px;
  color: rgba(47, 168, 118, 0.14);
  font-size: 82px;
  line-height: 1;
}

.pt-hero-label {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--pt-green-dark);
  border: 1px solid #cfe7dd;
  font-weight: 800;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

/* General lesson card */
.pt-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 34px;
  margin: 28px 0;
  border: 1px solid var(--pt-border);
  box-shadow: 0 10px 28px rgba(23, 49, 59, 0.06);
}

.pt-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Learning goals card */
.pt-goals {
  background: linear-gradient(135deg, #ffffff, var(--pt-green-soft));
  border-left: 7px solid var(--pt-green);
}

.pt-goals h2::before {
  content: "✓";
  color: var(--pt-green);
  font-weight: 900;
}

/* Reading explanation card */
.pt-reading {
  background: #ffffff;
  border-top: 5px solid var(--pt-blue);
}

.pt-reading h2::before {
  content: "📘";
}

/* Activity card */
.pt-activity {
  background: linear-gradient(135deg, #ffffff, var(--pt-yellow-soft));
  border-left: 7px solid var(--pt-yellow);
}

.pt-activity h2::before {
  content: "✍";
  color: #c88716;
}

/* Reflection card */
.pt-reflection {
  background: linear-gradient(135deg, #ffffff, var(--pt-blue-soft));
  border-left: 7px solid var(--pt-blue);
}

.pt-reflection h2::before {
  content: "💭";
}

/* Key takeaway card */
.pt-key {
  background: linear-gradient(135deg, #ffffff, var(--pt-green-soft));
  border-left: 7px solid var(--pt-green-dark);
}

.pt-key h2::before {
  content: "🌱";
}

/* Checklist */
.pt-checklist {
  list-style: none;
  padding-left: 0 !important;
}

.pt-checklist li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 13px;
}

.pt-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--pt-green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

/* Numbered activity steps */
.pt-steps {
  counter-reset: pt-step;
  list-style: none;
  padding-left: 0 !important;
}

.pt-steps li {
  counter-increment: pt-step;
  position: relative;
  padding-left: 50px;
  margin-bottom: 18px;
}

.pt-steps li::before {
  content: counter(pt-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pt-blue);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
  .pt-hero {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .pt-hero::after {
    display: none;
  }

  .pt-card {
    padding: 24px 22px;
    border-radius: 18px;
  }
}
/* =========================================================
   PageTurners Card Width Expansion
   Expands only PageTurners lesson cards on desktop
   ========================================================= */

@media (min-width: 1024px) {
  .pt-lesson {
    max-width: 920px !important;
    width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .pt-hero,
  .pt-card {
    width: calc(100% + 180px) !important;
    margin-left: -90px !important;
    margin-right: -90px !important;
    box-sizing: border-box !important;
  }

  .pt-hero p,
  .pt-card p,
  .pt-card ul,
  .pt-card ol {
    max-width: 900px;
  }
}

@media (max-width: 1023px) {
  .pt-hero,
  .pt-card {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* PageTurners readability polish */
.pt-card p,
.pt-card li {
  font-size: 16px;
  line-height: 1.75;
}

.pt-card h2 {
  margin-bottom: 18px;
}

.pt-card ul,
.pt-card ol {
  margin-top: 12px;
}

.pt-card strong {
  font-weight: 800;
}

.pt-activity h3 {
  margin-top: 24px;
}
/* =========================================================
   PageTurners Compact Hero for lessons with video
   Use: <div class="pt-hero pt-hero-compact">
   ========================================================= */

.pt-hero.pt-hero-compact {
  padding: 28px 34px;
  margin-bottom: 30px;
  border-radius: 24px;
}

.pt-hero.pt-hero-compact h1 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 10px;
}

.pt-hero.pt-hero-compact p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.pt-hero.pt-hero-compact::after {
  font-size: 54px;
  right: 24px;
  bottom: 14px;
  opacity: 0.6;
}
/* =========================================================
   PageTurners Course Overview Design
   For Tutor LMS About Course section
   ========================================================= */

.pt-course-overview {
  max-width: 980px;
  margin: 0 auto;
  color: #2f3f46;
  font-size: 16px;
  line-height: 1.75;
}

.pt-course-overview h3 {
  color: #17313b;
  font-size: 26px;
  font-weight: 800;
  margin-top: 34px;
  margin-bottom: 16px;
}

.pt-course-overview h4 {
  color: #17313b;
  font-size: 20px;
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 8px;
}

.pt-course-intro {
  background: linear-gradient(135deg, #ffffff, #eaf7f1);
  border: 1px solid #dfe9e6;
  border-radius: 24px;
  padding: 30px 34px;
  margin: 24px 0 30px;
  box-shadow: 0 10px 28px rgba(23, 49, 59, 0.06);
}

.pt-course-live {
  background: #fff8e7;
  border-left: 6px solid #f3bd4f;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 700;
}

.pt-course-live a {
  color: #1f7f5a;
  text-decoration: none;
}

.pt-course-card {
  background: #ffffff;
  border: 1px solid #dfe9e6;
  border-radius: 20px;
  padding: 26px 30px;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(23, 49, 59, 0.05);
}

.pt-course-card.green {
  border-left: 7px solid #2fa876;
  background: linear-gradient(135deg, #ffffff, #eaf7f1);
}

.pt-course-card.blue {
  border-left: 7px solid #2e78d6;
  background: linear-gradient(135deg, #ffffff, #edf5ff);
}

.pt-course-card.yellow {
  border-left: 7px solid #f3bd4f;
  background: linear-gradient(135deg, #ffffff, #fff8e7);
}

.pt-course-overview ul,
.pt-course-overview ol {
  padding-left: 24px;
}

.pt-course-overview li {
  margin-bottom: 9px;
}

.pt-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.pt-module-box {
  background: #ffffff;
  border: 1px solid #dfe9e6;
  border-radius: 18px;
  padding: 22px;
}

.pt-key-message {
  background: linear-gradient(135deg, #eaf7f1, #edf5ff);
  border-radius: 22px;
  padding: 28px 32px;
  margin: 30px 0;
  font-weight: 600;
  color: #17313b;
}

@media (max-width: 768px) {
  .pt-module-grid {
    grid-template-columns: 1fr;
  }

  .pt-course-intro,
  .pt-course-card,
  .pt-key-message {
    padding: 22px;
  }
}
/* PageTurners numbered steps - only main steps get blue circles */
.pt-steps {
  counter-reset: pt-step;
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.pt-steps > li {
  counter-increment: pt-step;
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 1.6rem;
}

.pt-steps > li::before {
  content: counter(pt-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #2f7dd8;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nested bullet lists inside numbered steps should stay normal bullets */
.pt-steps > li ul {
  list-style-type: disc;
  padding-left: 1.6rem;
  margin-top: 0.5rem;
}

.pt-steps > li ul li {
  counter-increment: none;
  padding-left: 0;
  margin-bottom: 0.5rem;
  position: static;
}

.pt-steps > li ul li::before {
  content: none !important;
  display: none !important;
}
/* PageTurners Polish step list fix: remove double numbering only on Polish pages */
html[lang^="pl"] .pt-lesson .pt-steps ol {
  list-style: none !important;
  counter-reset: pt-step-counter;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

html[lang^="pl"] .pt-lesson .pt-steps ol > li {
  list-style: none !important;
  counter-increment: pt-step-counter;
  position: relative;
  padding-left: 4rem;
  margin-bottom: 1.2rem;
}

html[lang^="pl"] .pt-lesson .pt-steps ol > li::marker {
  content: "" !important;
}

html[lang^="pl"] .pt-lesson .pt-steps ol > li::before {
  content: counter(pt-step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  background: #2f7edb;
}
.oer-home {
  font-family: inherit;
  color: #172033;
}

.oer-home * {
  box-sizing: border-box;
}

.oer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 72px 32px;
  background: linear-gradient(135deg, #eef7ff 0%, #f7f4ff 100%);
  border-radius: 28px;
  margin-bottom: 40px;
}

.oer-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f2eea;
}

.oer-hero h1,
.oer-section h2 {
  margin: 0 0 18px;
  line-height: 1.12;
  color: #172033;
}

.oer-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.oer-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.oer-hero p,
.oer-section p,
.oer-card p,
.oer-step p {
  color: #4c5870;
  line-height: 1.7;
}

.oer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.oer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oer-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.oer-btn-primary {
  background: #5f2eea;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(95, 46, 234, 0.22);
}

.oer-btn-secondary {
  background: #ffffff;
  color: #5f2eea;
  border: 1px solid rgba(95, 46, 234, 0.25);
}

.oer-hero-card,
.oer-card,
.oer-step {
  background: #ffffff;
  border: 1px solid #e8ecf3;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.06);
}

.oer-hero-card h2,
.oer-card h3,
.oer-step h3 {
  margin: 0 0 10px;
  color: #172033;
}

.oer-hero-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4c5870;
  line-height: 1.8;
}

.oer-section {
  padding: 44px 0;
}

.oer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.oer-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oer-highlight {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #f4f8ff;
  border: 1px solid #e1ebfb;
  border-radius: 24px;
  padding: 34px;
}

.oer-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.oer-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5f2eea;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.oer-cta {
  text-align: center;
  background: #172033;
  color: #ffffff;
  border-radius: 28px;
  padding: 48px 28px;
  margin-top: 30px;
}

.oer-cta h2,
.oer-cta p {
  color: #ffffff;
}

.oer-cta .oer-buttons {
  justify-content: center;
}

@media (max-width: 900px) {
  .oer-hero,
  .oer-grid,
  .oer-grid-four,
  .oer-steps {
    grid-template-columns: 1fr;
  }

  .oer-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .oer-hero {
    padding: 48px 22px;
  }
}
.oer-about .oer-about-hero {
  margin-top: 20px;
}

.oer-section-intro {
  max-width: 880px;
  margin-bottom: 24px;
}

.oer-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.oer-partner-card {
  background: #ffffff;
  border: 1px solid #e8ecf3;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.06);
}

.oer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 18px;
  background: #f8fafc;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  padding: 18px;
}

.oer-logo-wrap img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.oer-partner-role {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f2eea;
}

.oer-partner-card h3 {
  margin: 0 0 12px;
  color: #172033;
  line-height: 1.3;
}

.oer-partner-card p {
  color: #4c5870;
  line-height: 1.7;
}

.oer-future {
  background: #f4f8ff;
  border: 1px solid #e1ebfb;
  border-radius: 24px;
  padding: 34px;
}

@media (max-width: 1100px) {
  .oer-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .oer-partner-grid {
    grid-template-columns: 1fr;
  }

  .oer-logo-wrap {
    height: 110px;
  }
}
.oer-courses-page .oer-courses-hero {
  margin-top: 20px;
}

.oer-course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.oer-course-card {
  background: #ffffff;
  border: 1px solid #e8ecf3;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.06);
}

.oer-course-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #f4f8ff 0%, #f8f5ff 100%);
  border-color: #dfe8fb;
}

.oer-course-card h3 {
  margin: 12px 0 12px;
  color: #172033;
  line-height: 1.3;
}

.oer-course-card p {
  color: #4c5870;
  line-height: 1.7;
}

.oer-course-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #5f2eea;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oer-course-status-soon {
  background: #eef2f7;
  color: #4c5870;
}

.oer-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.oer-course-meta span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e1e7f0;
  color: #4c5870;
  font-size: 0.86rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .oer-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oer-course-featured {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .oer-course-grid {
    grid-template-columns: 1fr;
  }

  .oer-course-featured {
    grid-column: span 1;
  }
}
.oer-student-corner .oer-student-hero {
  margin-top: 20px;
}

.oer-student-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.oer-student-card {
  background: #ffffff;
  border: 1px solid #e8ecf3;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.06);
}

.oer-student-card h3 {
  margin: 12px 0 12px;
  color: #172033;
}

.oer-student-card p {
  color: #4c5870;
  line-height: 1.7;
}

.oer-step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5f2eea;
  color: #ffffff;
  font-weight: 800;
}

.oer-text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #5f2eea;
  text-decoration: none;
}

.oer-text-link:hover {
  text-decoration: underline;
}

.oer-help-box {
  background: #f4f8ff;
  border: 1px solid #e1ebfb;
  border-radius: 24px;
  padding: 34px;
}

@media (max-width: 1100px) {
  .oer-student-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .oer-student-grid {
    grid-template-columns: 1fr;
  }
}
.oer-login-note {
  max-width: 760px;
  margin: 40px auto 24px;
  padding: 26px 30px;
  background: #f4f8ff;
  border: 1px solid #e1ebfb;
  border-radius: 22px;
}

.oer-login-note h2 {
  margin-top: 0;
  color: #172033;
}

.oer-login-note p {
  color: #4c5870;
  line-height: 1.7;
}
.tutor-student-registration-form::before,
#tutor-registration-form::before,
form[action*="register"]::before {
  content: "Create your learner account\A\ARegister once to access the Erasmus+ learning platform. After registration, you can choose from the available courses in the course catalogue.\A\APlease check your email inbox and spam folder if email confirmation is required.";
  display: block;
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 26px 30px;
  background: #f4f8ff;
  border: 1px solid #e1ebfb;
  border-radius: 22px;
  color: #4c5870;
  line-height: 1.7;
  white-space: pre-line;
}
.oer-btn,
.oer-btn:visited {
  text-decoration: none !important;
}

.oer-btn-primary,
.oer-btn-primary:visited,
.oer-highlight .oer-btn-primary,
.oer-highlight .oer-btn-primary:visited,
.oer-cta .oer-btn-primary,
.oer-cta .oer-btn-primary:visited {
  background: #5f2eea !important;
  color: #ffffff !important;
  border-color: #5f2eea !important;
}

.oer-btn-primary:hover,
.oer-highlight .oer-btn-primary:hover,
.oer-cta .oer-btn-primary:hover {
  color: #ffffff !important;
  background: #4d22c9 !important;
}

.oer-btn-secondary,
.oer-btn-secondary:visited {
  background: #ffffff !important;
  color: #172033 !important;
  border: 1px solid #d8e1ef !important;
}

.oer-btn-secondary:hover {
  color: #172033 !important;
  background: #f4f8ff !important;
}
.tutor-dashboard-left-menu ul,
.tutor-dashboard-left-menu li,
.tutor-dashboard-menu ul,
.tutor-dashboard-menu li,
.tutor-dashboard .tutor-dashboard-permalinks,
.tutor-dashboard .tutor-dashboard-permalinks li {
  list-style: none !important;
  padding-left: 0 !important;
}

.tutor-dashboard .tutor-dashboard-permalinks li::marker {
  content: "" !important;
}
.tutor-dashboard-fullwidth {
  max-width: 1180px;
  width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.tutor-dashboard-fullwidth .tutor-dashboard {
  width: 100% !important;
  max-width: 100% !important;
}

.tutor-dashboard-fullwidth .tutor-dashboard-content {
  min-width: 0 !important;
}

body.logged-in .dashboard-login-help {
  display: none !important;
}

.tutor-dashboard-left-menu ul,
.tutor-dashboard-left-menu li,
.tutor-dashboard-menu ul,
.tutor-dashboard-menu li,
.tutor-dashboard .tutor-dashboard-permalinks,
.tutor-dashboard .tutor-dashboard-permalinks li {
  list-style: none !important;
  padding-left: 0 !important;
}

.tutor-dashboard .tutor-dashboard-permalinks li::marker {
  content: "" !important;
}

@media (max-width: 768px) {
  .tutor-dashboard-fullwidth {
    padding: 0 12px;
    overflow-x: auto;
  }
}
body.logged-in .dashboard-login-help {
  display: none !important;
}

body:not(.logged-in) .tutor-dashboard-fullwidth {
  display: none !important;
}
/* Hide LIFE4YOU header only on Toxic Parenting pages */
body:has(.tp-page) header,
body:has(.tp-page) #masthead,
body:has(.tp-page) .site-header,
body:has(.tp-page) .wp-block-template-part:first-child {
  display: none !important;
}

/* Remove the space left above the project page */
body:has(.tp-page) #page,
body:has(.tp-page) #content,
body:has(.tp-page) .site-content,
body:has(.tp-page) main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Hide the LIFE4YOU header on every TOXIC PARENTING mini-site page */
body:has(.tp-page) #masthead,
body:has(.tp-page) header.site-header,
body:has(.tp-page) .site-header,
body:has(.tp-page) .wp-site-blocks > header,
body:has(.tp-page) header.wp-block-template-part {
  display: none !important;
}

/* Remove the remaining space above the mini-site */
body:has(.tp-page) #page,
body:has(.tp-page) #content,
body:has(.tp-page) .site-content,
body:has(.tp-page) main.site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* TOXIC PARENTING – full-width global footer */
body:has(.tp-page) footer,
body:has(.tp-page) .site-footer,
body:has(.tp-page) #colophon {
  position: relative;
  left: 50%;
  width: 100vw !important;
  max-width: none !important;
  margin-right: -50vw !important;
  margin-left: -50vw !important;
}

body:has(.tp-page) footer .container,
body:has(.tp-page) .site-footer .container,
body:has(.tp-page) #colophon .container {
  width: 100% !important;
  max-width: none !important;
}
/* TOXIC PARENTING – make every project page full browser width */
body:has(.tp-page) .site-content,
body:has(.tp-page) .content-area,
body:has(.tp-page) main.site-main,
body:has(.tp-page) .elementor,
body:has(.tp-page) .elementor-section-wrap,
body:has(.tp-page) .elementor-element,
body:has(.tp-page) .elementor-widget-wrap,
body:has(.tp-page) .elementor-widget-html,
body:has(.tp-page) .elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Full-width project-page breakout */
.tp-page {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  margin-right: -50vw !important;
  margin-left: -50vw !important;
}

/* Same inner alignment as the homepage */
.tp-page .tp-inner {
  width: calc(100% - 40px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 640px) {
  .tp-page .tp-inner {
    width: calc(100% - 30px) !important;
  }
}
.ntp-course-intro {
  --ntp-navy: #252c61;
  --ntp-navy-dark: #171c47;
  --ntp-green: #58b990;
  --ntp-green-dark: #32866a;
  --ntp-coral: #ef786f;
  --ntp-yellow: #f4c854;
  --ntp-blue: #62a9d7;
  --ntp-cream: #fffaf1;
  --ntp-soft: #f5f7fc;
  --ntp-text: #31344b;
  --ntp-muted: #686d80;
  --ntp-white: #ffffff;
  --ntp-border: #e7e9f2;
  --ntp-shadow: 0 18px 48px rgba(37, 44, 97, 0.12);
}

.ntp-course-intro,
.ntp-course-intro * {
  box-sizing: border-box;
}

.ntp-course-intro {
  width: 100%;
  overflow: hidden;
  color: var(--ntp-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.ntp-course-intro img {
  display: block;
  max-width: 100%;
}

.ntp-course-intro h2,
.ntp-course-intro h3,
.ntp-course-intro p,
.ntp-course-intro ul {
  margin-top: 0;
}

.ntp-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 28px;
  background: var(--ntp-soft);
  box-shadow: var(--ntp-shadow);
}

.ntp-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.ntp-colour-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 7px;
}

.ntp-colour-strip span:nth-child(1) { background: var(--ntp-navy); }
.ntp-colour-strip span:nth-child(2) { background: var(--ntp-green); }
.ntp-colour-strip span:nth-child(3) { background: var(--ntp-coral); }
.ntp-colour-strip span:nth-child(4) { background: var(--ntp-yellow); }
.ntp-colour-strip span:nth-child(5) { background: var(--ntp-blue); }

.ntp-welcome {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 38px;
  border-radius: 26px;
  color: var(--ntp-white);
  background: linear-gradient(135deg, var(--ntp-navy), var(--ntp-navy-dark));
}

.ntp-welcome::before,
.ntp-welcome::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.ntp-welcome::before {
  top: -85px;
  right: -45px;
  width: 190px;
  height: 190px;
}

.ntp-welcome::after {
  bottom: -70px;
  left: 38%;
  width: 130px;
  height: 130px;
}

.ntp-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px !important;
  color: var(--ntp-yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ntp-eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ntp-coral);
  box-shadow: 17px 0 0 var(--ntp-green);
  content: "";
  margin-right: 17px;
}

.ntp-welcome h2 {
  position: relative;
  max-width: 780px;
  margin: 0 0 15px !important;
  color: var(--ntp-white) !important;
  font-size: clamp(30px, 4.4vw, 48px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em;
}

.ntp-welcome-text {
  position: relative;
  max-width: 800px;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 17px;
  line-height: 1.75;
}

.ntp-facts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.ntp-facts span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--ntp-white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 700;
}

.ntp-section {
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--ntp-border);
  border-radius: 24px;
  background: var(--ntp-white);
}

.ntp-section-heading {
  margin-bottom: 23px;
}

.ntp-kicker {
  margin: 0 0 7px !important;
  color: var(--ntp-green-dark) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ntp-section h2 {
  margin: 0 0 10px !important;
  color: var(--ntp-navy) !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.015em;
}

.ntp-lead {
  max-width: 780px;
  margin: 0 !important;
  color: var(--ntp-muted) !important;
  font-size: 16px;
}

.ntp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ntp-feature {
  padding: 23px;
  border-radius: 19px;
  background: var(--ntp-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ntp-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(37, 44, 97, 0.1);
}

.ntp-feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  border-radius: 15px;
  color: var(--ntp-white);
  background: var(--ntp-navy);
  font-size: 18px;
  font-weight: 900;
}

.ntp-feature:nth-child(2) .ntp-feature-icon { background: var(--ntp-green); }
.ntp-feature:nth-child(3) .ntp-feature-icon { background: var(--ntp-coral); }

.ntp-feature h3 {
  margin: 0 0 8px !important;
  color: var(--ntp-navy) !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.ntp-feature p {
  margin: 0 !important;
  color: var(--ntp-muted) !important;
  font-size: 14px;
  line-height: 1.6;
}

.ntp-outcomes {
  background: linear-gradient(135deg, #f6fbf8, #f7f9ff);
}

.ntp-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.ntp-checklist li {
  position: relative;
  margin: 0 !important;
  padding: 14px 15px 14px 46px;
  border: 1px solid rgba(88, 185, 144, 0.22);
  border-radius: 15px;
  color: var(--ntp-text);
  background: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.ntp-checklist li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--ntp-white);
  background: var(--ntp-green);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.ntp-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ntp-module {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--ntp-border);
  border-radius: 21px;
  background: var(--ntp-white);
}

.ntp-module::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--ntp-accent);
  content: "";
}

.ntp-module-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ntp-module-number {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--ntp-white);
  background: var(--ntp-accent);
  font-weight: 900;
}

.ntp-module h3 {
  margin: 0 !important;
  color: var(--ntp-navy) !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
}

.ntp-module p {
  margin: 0 !important;
  color: var(--ntp-muted) !important;
  font-size: 14px;
  line-height: 1.6;
}

.ntp-module-1 { --ntp-accent: var(--ntp-coral); }
.ntp-module-2 { --ntp-accent: var(--ntp-yellow); }
.ntp-module-3 { --ntp-accent: var(--ntp-green); }
.ntp-module-4 { --ntp-accent: var(--ntp-blue); }

.ntp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ntp-audience-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--ntp-cream);
}

.ntp-audience-card:last-child {
  background: #eef8f4;
}

.ntp-audience-card h3 {
  margin: 0 0 8px !important;
  color: var(--ntp-navy) !important;
  font-size: 20px !important;
}

.ntp-audience-card p {
  margin: 0 !important;
  color: var(--ntp-muted) !important;
  font-size: 15px;
}

.ntp-pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ntp-step {
  position: relative;
  padding: 22px 17px 20px;
  border-radius: 18px;
  text-align: center;
  background: var(--ntp-soft);
}

.ntp-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 13px;
  border-radius: 14px;
  color: var(--ntp-white);
  background: var(--ntp-navy);
  font-size: 13px;
  font-weight: 900;
}

.ntp-step:nth-child(2) .ntp-step-number { background: var(--ntp-coral); }
.ntp-step:nth-child(3) .ntp-step-number { background: var(--ntp-green); }
.ntp-step:nth-child(4) .ntp-step-number { background: var(--ntp-blue); }

.ntp-step h3 {
  margin: 0 0 7px !important;
  color: var(--ntp-navy) !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.ntp-step p {
  margin: 0 !important;
  color: var(--ntp-muted) !important;
  font-size: 13px;
  line-height: 1.5;
}

.ntp-assessment {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 30px;
  border-radius: 24px;
  color: var(--ntp-white);
  background: linear-gradient(135deg, var(--ntp-green-dark), var(--ntp-green));
  box-shadow: 0 16px 38px rgba(50, 134, 106, 0.2);
}

.ntp-assessment-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 27px;
  font-weight: 900;
}

.ntp-assessment h2 {
  margin: 0 0 8px !important;
  color: var(--ntp-white) !important;
  font-size: 27px !important;
  line-height: 1.25 !important;
}

.ntp-assessment p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.65;
}

.ntp-oer-note {
  position: relative;
  overflow: hidden;
  padding: 31px 34px;
  border-radius: 24px;
  text-align: center;
  background: var(--ntp-cream);
}

.ntp-oer-note::before {
  position: absolute;
  top: -52px;
  left: -45px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(244, 200, 84, 0.23);
  content: "";
}

.ntp-oer-note h2 {
  position: relative;
  margin: 0 0 9px !important;
  color: var(--ntp-navy) !important;
  font-size: 25px !important;
}

.ntp-oer-note p {
  position: relative;
  max-width: 760px;
  margin: 0 auto !important;
  color: var(--ntp-muted) !important;
  font-size: 15px;
  line-height: 1.65;
}

.ntp-banner,
.ntp-welcome,
.ntp-section,
.ntp-assessment,
.ntp-oer-note {
  animation: ntp-rise 0.65s ease both;
}

.ntp-welcome { animation-delay: 0.06s; }
.ntp-section:nth-of-type(1) { animation-delay: 0.12s; }
.ntp-section:nth-of-type(2) { animation-delay: 0.18s; }

@keyframes ntp-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .ntp-feature-grid { grid-template-columns: 1fr; }
  .ntp-pathway { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .ntp-banner { border-radius: 20px; }
  .ntp-banner img { aspect-ratio: 4 / 3; }
  .ntp-welcome, .ntp-section { padding: 26px 21px; border-radius: 21px; }
  .ntp-checklist, .ntp-module-grid, .ntp-audience-grid, .ntp-pathway { grid-template-columns: 1fr; }
  .ntp-assessment { grid-template-columns: 1fr; padding: 26px 22px; text-align: center; }
  .ntp-assessment-icon { margin: 0 auto; }
  .ntp-oer-note { padding: 27px 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .ntp-course-intro *,
  .ntp-course-intro *::before,
  .ntp-course-intro *::after {
    animation: none !important;
    transition: none !important;
  }
}
.ntp-course-intro {
  max-width: none;
  container-type: inline-size;
}

@media (min-width: 1200px) {
  .tutor-row.tutor-justify-center .tutor-col-xl-8 {
    width: 98% !important;
  }
}

@container (max-width: 760px) {
  .ntp-feature-grid,
  .ntp-module-grid,
  .ntp-checklist,
  .ntp-audience-grid {
    grid-template-columns: 1fr;
  }

  .ntp-pathway {
    grid-template-columns: repeat(2, 1fr);
  }
}

@container (max-width: 520px) {
  .ntp-pathway {
    grid-template-columns: 1fr;
  }
}