/* =========================================================
   LAIS COURSES — UI V2
   Premium light academic design
   Add AFTER the existing Course CSS
   ========================================================= */


/* ---------- DESIGN TOKENS ---------- */

.course-landing{
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f2f6fa;

  --text: #172033;
  --text-strong: #0d1628;
  --muted: #4f5f73;
  --muted-light: #66768a;

  --line: rgba(23, 32, 51, 0.11);
  --line-strong: rgba(23, 32, 51, 0.18);

  --accent: #1593b2;
  --accent-dark: #0e718c;
  --accent-soft: rgba(21, 147, 178, 0.10);

  --accent2: #7357c7;
  --accent2-soft: rgba(115, 87, 199, 0.10);

  --success: #177a55;
  --success-soft: #eaf7f1;

  --shadow-sm:
    0 1px 2px rgba(17, 24, 39, 0.03),
    0 5px 18px rgba(17, 24, 39, 0.05);

  --shadow-md:
    0 10px 30px rgba(17, 24, 39, 0.07),
    0 2px 8px rgba(17, 24, 39, 0.04);

  --shadow-lg:
    0 24px 70px rgba(17, 24, 39, 0.10);

  color: var(--text);

  font-size: 17px;

  background:
    radial-gradient(
      900px 520px at 8% 5%,
      rgba(21,147,178,.12),
      transparent 65%
    ),
    radial-gradient(
      800px 500px at 92% 8%,
      rgba(115,87,199,.10),
      transparent 60%
    ),
    var(--bg);
}


/* ---------- GLOBAL COURSE TYPOGRAPHY ---------- */

.course-landing,
.course-landing p,
.course-landing li,
.course-landing dd,
.course-landing dt,
.course-landing a{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.course-landing a{
  color: inherit;
  text-decoration: none;
}

.course-container{
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.course-landing .muted{
  color: var(--muted);
}

.course-landing .small{
  font-size: 14px;
}


/* =========================================================
   HERO
   ========================================================= */

.course-hero{
  position: relative;
  overflow: hidden;

  padding: 92px 0 72px;

  border-bottom: 1px solid var(--line);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.42) 0%,
      rgba(255,255,255,.10) 100%
    );
}

.course-hero::before{
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  right: -150px;
  top: -190px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(115,87,199,.13),
      transparent 68%
    );

  pointer-events: none;
}

.course-hero__grid{
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .75fr);

  gap: 54px;
  align-items: start;
}


/* ---------- HERO META ---------- */

.course-badge{
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  width: fit-content;

  gap: 8px;

  margin: 0 0 24px;

  padding: 8px 10px;

  border: 1px solid rgba(21,147,178,.18);
  border-radius: 12px;

  background: rgba(255,255,255,.72);

  box-shadow: var(--shadow-sm);

  color: var(--muted);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}


/* ---------- COURSE TITLE ---------- */

.course-title{
  max-width: 850px;

  margin: 0 0 20px;

  color: var(--text-strong);

  font-size: clamp(44px, 5vw, 68px);
  font-weight: 750;

  line-height: 1.02;
  letter-spacing: -0.045em;
}


/* ---------- SUBTITLE ---------- */

.course-subtitle{
  max-width: 760px;

  margin: 0 0 30px;

  color: #46566c;

  font-size: clamp(19px, 2vw, 23px);
  font-weight: 400;

  line-height: 1.55;
}


/* =========================================================
   INSTRUCTOR STRIP
   ========================================================= */

.course-instructor{
  max-width: 700px;

  margin: 0 0 24px;

  padding: 17px 20px;

  border: 1px solid var(--line);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.90),
      rgba(242,246,250,.86)
    );

  box-shadow: var(--shadow-sm);
}

.course-instructor__meta{
  color: var(--text);

  font-size: 16px;
  line-height: 1.55;
}

.course-instructor__meta strong{
  color: var(--text-strong);
  font-weight: 700;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.course-cta{
  display: flex;
  flex-wrap: wrap;

  gap: 11px;

  margin: 25px 0 24px;
}

.btn-primary,
.btn-secondary{
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border-radius: 12px;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.2;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.btn-primary{
  color: #ffffff !important;

  border: 1px solid transparent;

  background:
    linear-gradient(
      135deg,
      var(--accent-dark),
      var(--accent2)
    );

  box-shadow:
    0 8px 20px rgba(42,94,132,.19);
}

.btn-primary:hover{
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(42,94,132,.25);
}

.btn-secondary{
  color: #26364b !important;

  border: 1px solid var(--line-strong);

  background: rgba(255,255,255,.78);
}

.btn-secondary:hover{
  color: var(--text-strong) !important;

  border-color: rgba(21,147,178,.30);

  background: #ffffff;

  transform: translateY(-2px);

  box-shadow: var(--shadow-sm);
}

.btn-link{
  color: var(--accent-dark) !important;

  font-size: 14px;
  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-block{
  width: 100%;
}


/* =========================================================
   TRUST ITEMS
   ========================================================= */

.course-trust{
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 9px;
}

.course-trust span{
  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(255,255,255,.62);

  color: #536276;

  font-size: 13px;
  font-weight: 600;
}


/* =========================================================
   COURSE DETAILS CARD
   ========================================================= */

.course-card{
  position: relative;

  padding: 24px;

  border: 1px solid rgba(23,32,51,.10);
  border-radius: 22px;

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,.98),
      rgba(247,250,253,.96)
    );

  box-shadow: var(--shadow-lg);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.course-card__title{
  margin: 0 0 18px;

  color: var(--text-strong);

  font-size: 18px;
  font-weight: 750;

  letter-spacing: -.015em;
}

.course-dl{
  display: grid;

  gap: 9px;

  margin: 0;
}

.course-dl > div{
  display: grid;
  grid-template-columns: minmax(100px, .72fr) minmax(0, 1.3fr);

  gap: 16px;
  align-items: center;

  padding: 13px 14px;

  border: 1px solid rgba(23,32,51,.07);
  border-radius: 13px;

  background: #f7f9fc;
}

.course-dl dt{
  color: var(--muted);

  font-size: 14px;
  font-weight: 600;
}

.course-dl dd{
  margin: 0;

  color: var(--text-strong);

  font-size: 15px;
  font-weight: 700;

  line-height: 1.4;
  text-align: right;
}


/* ---------- ONGOING COURSE ---------- */

.course-dl > .course-dl__highlight{
  border-color: rgba(21,147,178,.23);

  background:
    linear-gradient(
      135deg,
      rgba(21,147,178,.10),
      rgba(115,87,199,.06)
    );
}

.course-recurring-pill{
  display: inline-flex;
  align-items: center;

  gap: 5px;

  padding: 5px 9px;

  border: 1px solid rgba(21,147,178,.30);
  border-radius: 999px;

  background: rgba(21,147,178,.10);

  color: #0b6c85;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .045em;
  text-transform: uppercase;
}

.course-recurring-pill::before{
  content: "↻";

  font-size: 13px;

  line-height: 1;
}


/* ---------- REGISTRATION STATUS ---------- */

.course-pill{
  display: inline-flex;
  align-items: center;

  padding: 5px 9px;

  border: 1px solid rgba(23,32,51,.12);
  border-radius: 999px;

  background: #eef3f7;

  color: #344358;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .035em;
}


/* ---------- DETAILS ACTIONS ---------- */

.course-card__actions{
  display: grid;

  gap: 11px;

  margin-top: 18px;
}

.course-note{
  margin: 15px 0 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.course-section{
  padding: 72px 0;

  border-bottom: 1px solid var(--line);

  background: transparent;
}

.course-section--alt{
  background:
    linear-gradient(
      180deg,
      rgba(240,244,249,.60),
      rgba(247,249,252,.72)
    );
}

.course-section h2{
  position: relative;

  margin: 0 0 26px;

  color: var(--text-strong);

  font-size: clamp(28px, 3vw, 36px);
  font-weight: 750;

  line-height: 1.15;
  letter-spacing: -.025em;
}

.course-section h2::after{
  content: "";

  display: block;

  width: 44px;
  height: 3px;

  margin-top: 12px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--accent2)
    );
}

.course-section p{
  max-width: 850px;

  margin: 0 0 18px;

  color: var(--text);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================================
   WYSIWYG CONTENT
   ========================================================= */

.course-wysiwyg{
  max-width: 880px;

  color: var(--text);
}

.course-wysiwyg :where(p, ul, ol){
  color: var(--text);

  font-size: 17px;

  line-height: 1.8;
}

.course-wysiwyg p{
  margin-bottom: 20px;
}

.course-wysiwyg ul,
.course-wysiwyg ol{
  margin: 18px 0 22px;

  padding-left: 26px;
}

.course-wysiwyg li{
  margin-bottom: 10px;

  padding-left: 4px;
}

.course-wysiwyg strong{
  color: var(--text-strong);

  font-weight: 750;
}

.course-wysiwyg a{
  color: var(--accent-dark);

  font-weight: 650;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.course-grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 24px;
}

.feature{
  padding: 22px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: var(--surface);

  box-shadow: var(--shadow-sm);
}

.feature h3{
  margin: 0 0 10px;

  color: var(--text-strong);

  font-size: 18px;
}

.feature p{
  margin: 0;

  color: var(--muted);

  font-size: 15px;
}

.course-list{
  margin: 15px 0 0;

  padding-left: 22px;

  color: var(--text);

  font-size: 17px;

  line-height: 1.75;
}


/* =========================================================
   REGISTRATION
   ========================================================= */

.register-box{
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);

  gap: 42px;
  align-items: center;

  padding: 34px;

  border: 1px solid rgba(21,147,178,.18);
  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.96),
      rgba(235,247,250,.95)
    );

  box-shadow: var(--shadow-md);
}

.register-box::before{
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  bottom: -140px;

  border-radius: 50%;

  background: rgba(115,87,199,.08);

  pointer-events: none;
}

.register-box > *{
  position: relative;
}

.register-box h2{
  margin-bottom: 18px;
}

.register-actions{
  width: 100%;
}

.course-alert{
  padding: 15px;

  border: 1px solid var(--line);
  border-radius: 13px;

  background: var(--surface-soft);

  color: var(--muted);

  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   FAQ
   ========================================================= */

.course-accordion{
  display: grid;

  gap: 12px;

  margin-top: 18px;
}

.course-acc-item{
  padding: 14px 18px;

  border: 1px solid var(--line);
  border-radius: 16px;

  background: #ffffff;

  box-shadow: var(--shadow-sm);
}

.course-acc-item summary{
  cursor: pointer;

  color: var(--text-strong);

  font-size: 16px;
  font-weight: 700;

  list-style: none;
}

.course-acc-item summary::-webkit-details-marker{
  display: none;
}

.course-acc-body{
  padding: 14px 0 4px;
}


/* =========================================================
   COURSE ARCHIVE
   ========================================================= */

.course-archive-hero{
  padding: 76px 0 42px;

  border-bottom: 1px solid var(--line);
}

.course-archive-title{
  margin: 0 0 12px;

  color: var(--text-strong);

  font-size: clamp(40px, 5vw, 58px);
  font-weight: 750;

  letter-spacing: -.04em;
}

.course-archive-subtitle{
  margin: 0;

  color: var(--muted);

  font-size: 19px;
}

.course-grid-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.course-card-link{
  display: block;
}

.course-card-link .course-card{
  transition:
    transform .20s ease,
    box-shadow .20s ease,
    border-color .20s ease;
}

.course-card-link:hover .course-card{
  transform: translateY(-5px);

  border-color: rgba(21,147,178,.24);

  box-shadow:
    0 24px 55px rgba(17,24,39,.13);
}

.course-card--compact{
  height: 100%;
}

.course-card-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 14px;
}

.course-card-h{
  margin: 0;

  color: var(--text-strong);

  font-size: 21px;
  font-weight: 750;

  line-height: 1.3;
}

.course-card-meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 6px;
}

.course-card-date{
  color: var(--muted);

  font-size: 14px;
}

.course-card-date-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 10px;

  margin-top: 15px;
}

.course-card-duration{
  color: var(--accent-dark);

  font-size: 13px;
  font-weight: 700;
}

.course-card-p{
  margin: 15px 0 0;

  color: var(--text);

  font-size: 15px;

  line-height: 1.65;
}

.course-card-cta{
  display: inline-block;

  margin-top: 18px;

  color: var(--accent-dark);

  font-size: 14px;
  font-weight: 750;

  text-decoration: none;
}

.course-card-link:hover .course-card-cta{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.course-thumb img{
  display: block;

  width: 100%;
  height: auto;

  margin-top: 18px;

  border-radius: 15px;
}

.course-pagination{
  margin-top: 30px;
}

.course-pagination .page-numbers{
  color: var(--muted);
}

.course-pagination .current{
  color: var(--text-strong);

  font-weight: 700;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px){

  .course-container{
    width: min(100% - 36px, 760px);
  }

  .course-hero{
    padding: 64px 0 46px;
  }

  .course-hero__grid{
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .course-title{
    font-size: clamp(38px, 9vw, 54px);
  }

  .course-grid-3{
    grid-template-columns: 1fr;
  }

  .register-box{
    grid-template-columns: 1fr;

    gap: 24px;
  }

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

  .course-section{
    padding: 56px 0;
  }
}


@media (max-width: 600px){

  .course-container{
    width: calc(100% - 28px);
  }

  .course-hero{
    padding: 48px 0 36px;
  }

  .course-badge{
    width: 100%;
  }

  .course-title{
    font-size: 38px;

    line-height: 1.06;
  }

  .course-subtitle{
    font-size: 18px;
  }

  .course-cta{
    display: grid;
  }

  .course-cta .btn-primary,
  .course-cta .btn-secondary{
    width: 100%;
  }

  .course-card{
    padding: 19px;
  }

  .course-dl > div{
    grid-template-columns: 1fr;

    gap: 4px;
  }

  .course-dl dd{
    text-align: left;
  }

  .course-section{
    padding: 46px 0;
  }

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

  .course-section p,
  .course-wysiwyg :where(p, ul, ol){
    font-size: 16px;

    line-height: 1.75;
  }

  .register-box{
    padding: 22px;
  }
}
/* =========================================================
   LAIS COURSES — UI V3
   Hero composition + visual polish
   ========================================================= */


/* ---------- HERO STATUS ---------- */

.course-hero__status{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 22px;
}

.course-type-label{
  display:inline-flex;
  align-items:center;
  min-height:29px;
  padding:5px 11px;

  border:1px solid rgba(21,147,178,.22);
  border-radius:999px;

  background:rgba(255,255,255,.78);

  color:#315467;

  font-size:11px;
  font-weight:800;

  letter-spacing:.075em;
  text-transform:uppercase;

  box-shadow:
    0 1px 2px rgba(17,24,39,.03);
}


/* ---------- START DATE ---------- */

.course-hero__start{
  display:flex;
  flex-direction:column;
  gap:2px;

  width:fit-content;

  margin:0 0 22px;

  padding-left:15px;

  border-left:3px solid var(--accent);
}

.course-hero__start-label{
  color:var(--muted);

  font-size:13px;
  font-weight:650;

  line-height:1.3;
}

.course-hero__start strong{
  color:var(--text-strong);

  font-size:17px;
  font-weight:750;

  line-height:1.4;
}


/* =========================================================
   HERO RIGHT PANEL
   ========================================================= */

.course-hero__panel{
  position:relative;
}

.course-hero__panel-inner{
  display:grid;
  gap:14px;

  position:sticky;
  top:28px;
}


/* ---------- FEATURED IMAGE ---------- */

.course-hero__media{
  position:relative;
  overflow:hidden;

  aspect-ratio:16 / 9;

  border:1px solid rgba(23,32,51,.10);
  border-radius:22px;

  background:#eaf0f5;

  box-shadow:
    0 18px 45px rgba(17,24,39,.10);
}

.course-hero__media::after{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(10,22,36,.14) 100%
    );
}

.course-hero__image{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .5s ease;
}

.course-hero__media:hover .course-hero__image{
  transform:scale(1.025);
}


/* =========================================================
   HERO TITLE ENHANCEMENTS
   ========================================================= */

.course-title{
  position:relative;
}

.course-title::after{
  content:"";

  display:block;

  width:72px;
  height:5px;

  margin-top:22px;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent2)
    );
}


/* =========================================================
   DETAILS CARD — STRONGER VISUAL HIERARCHY
   ========================================================= */

.course-card#details{
  overflow:hidden;
}

.course-card#details::before{
  content:"";

  position:absolute;
  top:0;
  left:0;
  right:0;

  height:4px;

  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent2)
    );
}

.course-card__title{
  padding-top:3px;

  font-size:20px;
}

.course-dl > div{
  position:relative;
  overflow:hidden;

  transition:
    background .18s ease,
    border-color .18s ease;
}

.course-dl > div:hover{
  border-color:rgba(21,147,178,.20);
  background:#f3f8fa;
}

.course-dl > div::before{
  content:"";

  position:absolute;

  left:0;
  top:10px;
  bottom:10px;

  width:2px;

  border-radius:999px;

  background:transparent;
}

.course-dl > div:hover::before{
  background:var(--accent);
}


/* ---------- FEE EMPHASIS ---------- */

.course-dl > div:last-child{
  margin-top:4px;

  border-color:rgba(115,87,199,.16);

  background:
    linear-gradient(
      135deg,
      rgba(115,87,199,.07),
      rgba(21,147,178,.05)
    );
}

.course-dl > div:last-child dd{
  color:#47358d;

  font-size:17px;
}


/* =========================================================
   INSTRUCTOR
   ========================================================= */

.course-instructor{
  position:relative;
  overflow:hidden;

  padding-left:22px;
}

.course-instructor::before{
  content:"";

  position:absolute;

  left:0;
  top:0;
  bottom:0;

  width:4px;

  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--accent2)
    );
}


/* =========================================================
   CONTENT SECTIONS — EDITORIAL FEEL
   ========================================================= */

.course-section .course-container{
  position:relative;
}

.course-section h2{
  max-width:760px;
}

.course-wysiwyg{
  font-size:17px;
}

.course-wysiwyg > p:first-child{
  font-size:18px;
  line-height:1.82;
}

.course-wysiwyg ul{
  display:grid;
  gap:4px;
}

.course-wysiwyg li::marker{
  color:var(--accent-dark);
}


/* =========================================================
   OUTCOMES SECTION
   ========================================================= */

#outcomes .course-wysiwyg ul{
  list-style:none;

  padding:0;
  margin-top:24px;

  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:12px;
}

#outcomes .course-wysiwyg li{
  position:relative;

  margin:0;
  padding:17px 18px 17px 45px;

  border:1px solid var(--line);
  border-radius:15px;

  background:rgba(255,255,255,.82);

  box-shadow:var(--shadow-sm);

  line-height:1.55;
}

#outcomes .course-wysiwyg li::before{
  content:"✓";

  position:absolute;

  left:17px;
  top:17px;

  display:flex;
  align-items:center;
  justify-content:center;

  width:20px;
  height:20px;

  border-radius:50%;

  background:rgba(21,147,178,.12);

  color:var(--accent-dark);

  font-size:12px;
  font-weight:900;
}


/* =========================================================
   AUDIENCE SECTION
   ========================================================= */

#audience .course-wysiwyg{
  padding:28px 30px;

  border:1px solid rgba(23,32,51,.09);
  border-radius:20px;

  background:#fff;

  box-shadow:var(--shadow-sm);
}


/* =========================================================
   INSTRUCTOR SECTION
   ========================================================= */

#instructor .course-wysiwyg{
  padding:28px 30px;

  border-left:4px solid var(--accent2);

  border-radius:0 18px 18px 0;

  background:
    linear-gradient(
      90deg,
      rgba(115,87,199,.06),
      rgba(255,255,255,.70)
    );
}


/* =========================================================
   REGISTRATION — MORE PROMINENT CTA
   ========================================================= */

#registration{
  padding-top:84px;
  padding-bottom:84px;
}

.register-box{
  padding:42px;

  border-color:rgba(21,147,178,.22);

  box-shadow:
    0 20px 55px rgba(17,24,39,.09);
}

.register-box h2{
  font-size:34px;
}

.register-actions .btn-primary{
  min-height:56px;

  font-size:16px;

  border-radius:14px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:950px){

  .course-hero__panel-inner{
    position:static;
  }

  #outcomes .course-wysiwyg ul{
    grid-template-columns:1fr;
  }
}


@media (max-width:600px){

  .course-hero__status{
    gap:6px;
  }

  .course-type-label,
  .course-recurring-pill,
  .course-pill{
    font-size:10px;
  }

  .course-hero__start strong{
    font-size:16px;
  }

  .course-hero__media{
    border-radius:18px;
  }

  .course-title::after{
    width:55px;
    height:4px;
    margin-top:17px;
  }

  #audience .course-wysiwyg,
  #instructor .course-wysiwyg{
    padding:21px;
  }

  .register-box{
    padding:24px;
  }

  .register-box h2{
    font-size:29px;
  }
}
/* =========================================================
   LAIS COURSE CATALOGUE — SIMPLIFIED V4
   ========================================================= */


/* ---------- HERO ---------- */

.course-archive-hero{
  position:relative;
  overflow:hidden;

  padding:82px 0 64px;

  border-bottom:1px solid var(--line);

  background:
    radial-gradient(
      750px 420px at 92% 0%,
      rgba(115,87,199,.12),
      transparent 68%
    ),
    radial-gradient(
      700px 400px at 4% 20%,
      rgba(21,147,178,.11),
      transparent 68%
    ),
    rgba(255,255,255,.36);
}

.course-archive-hero__inner{
  max-width:780px;
}

.course-archive-eyebrow{
  display:inline-block;

  margin-bottom:18px;

  color:var(--accent-dark);

  font-size:12px;
  font-weight:800;

  letter-spacing:.09em;
  text-transform:uppercase;
}

.course-archive-title{
  margin:0 0 18px;

  color:var(--text-strong);

  font-size:clamp(50px,6vw,74px);
  font-weight:760;

  line-height:1;
  letter-spacing:-.05em;
}

.course-archive-subtitle{
  max-width:720px;

  margin:0;

  color:#46566b;

  font-size:20px;
  line-height:1.65;
}


/* ---------- CATALOGUE ---------- */

.course-catalogue{
  padding:70px 0 90px;
}

.course-catalogue__heading{
  margin-bottom:30px;
}

.course-catalogue__kicker{
  display:block;

  margin-bottom:7px;

  color:var(--accent-dark);

  font-size:12px;
  font-weight:800;

  letter-spacing:.08em;
  text-transform:uppercase;
}

.course-catalogue__heading h2{
  margin:0;

  color:var(--text-strong);

  font-size:32px;
  font-weight:750;

  letter-spacing:-.025em;
}


/* =========================================================
   GRID
   ========================================================= */

.course-catalogue-grid{
  display:grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(min(100%, 340px), 1fr)
    );

  gap:30px;
}


/* =========================================================
   CARD
   ========================================================= */

.course-catalog-card{
  overflow:hidden;

  display:flex;
  flex-direction:column;

  min-width:0;
  height:100%;

  border:1px solid rgba(23,32,51,.10);
  border-radius:24px;

  background:#fff;

  box-shadow:
    0 3px 10px rgba(17,24,39,.035),
    0 16px 38px rgba(17,24,39,.06);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.course-catalog-card:hover{
  transform:translateY(-5px);

  border-color:rgba(21,147,178,.24);

  box-shadow:
    0 8px 22px rgba(17,24,39,.06),
    0 28px 60px rgba(17,24,39,.10);
}


/* =========================================================
   IMAGE
   ========================================================= */

.course-catalog-card__media{
  position:relative;
  overflow:hidden;

  display:block;

  aspect-ratio:16 / 9;

  background:#edf3f6;
}

.course-catalog-card__image{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .5s ease;
}

.course-catalog-card:hover
.course-catalog-card__image{
  transform:scale(1.025);
}

.course-catalog-card__placeholder{
  width:100%;
  height:100%;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(21,147,178,.25),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(115,87,199,.22),
      transparent 48%
    ),
    #edf3f6;
}


/* ---------- IMAGE BADGES ---------- */

.course-catalog-card__badges{
  position:absolute;

  top:14px;
  left:14px;
  right:14px;

  display:flex;
  flex-wrap:wrap;

  gap:7px;
}

.catalog-badge{
  display:inline-flex;
  align-items:center;

  padding:7px 10px;

  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;

  background:rgba(255,255,255,.92);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  color:#344358;

  font-size:10px;
  font-weight:800;

  line-height:1;

  letter-spacing:.04em;
  text-transform:uppercase;
}

.catalog-badge--ongoing{
  color:#096b84;

  background:rgba(236,250,252,.94);
}

.catalog-badge--open{
  color:#116443;

  background:rgba(236,249,242,.95);
}

.catalog-badge--waitlist{
  color:#865712;
}

.catalog-badge--closed{
  color:#833d48;
}

.catalog-badge--coming_soon{
  color:#584391;
}


/* =========================================================
   BODY
   ========================================================= */

.course-catalog-card__body{
  display:flex;
  flex-direction:column;

  flex:1;

  padding:26px;
}


/* ---------- TYPE ---------- */

.course-catalog-card__eyebrow{
  display:flex;
  flex-wrap:wrap;

  gap:6px;

  margin-bottom:10px;

  color:var(--accent-dark);

  font-size:11px;
  font-weight:800;

  letter-spacing:.06em;
  text-transform:uppercase;
}

.course-catalog-card__separator{
  color:#a2adba;
}


/* ---------- TITLE ---------- */

.course-catalog-card__title{
  margin:0 0 10px;

  color:var(--text-strong);

  font-size:25px;
  font-weight:760;

  line-height:1.2;
  letter-spacing:-.03em;
}

.course-catalog-card__title a{
  color:inherit !important;

  text-decoration:none !important;
}


/* ---------- SUBTITLE ---------- */

.course-catalog-card__subtitle{
  margin:0 0 20px;

  color:#526176 !important;

  font-size:16px !important;

  line-height:1.62 !important;
}


/* =========================================================
   INSTRUCTOR
   ========================================================= */

.course-catalog-instructor{
  position:relative;

  margin:0 0 22px;

  padding:13px 16px 13px 18px;

  border:1px solid rgba(23,32,51,.08);
  border-radius:14px;

  background:#f7f9fb;
}

.course-catalog-instructor::before{
  content:"";

  position:absolute;

  left:0;
  top:11px;
  bottom:11px;

  width:3px;

  border-radius:999px;

  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--accent2)
    );
}

.course-catalog-instructor__text{
  display:flex;
  flex-direction:column;

  line-height:1.3;
}

.course-catalog-instructor__text > span{
  margin-bottom:3px;

  color:#6a7889;

  font-size:10px;
  font-weight:800;

  letter-spacing:.065em;
  text-transform:uppercase;
}

.course-catalog-instructor__text strong{
  color:#1c293b;

  font-size:14.5px;
  font-weight:750;
}

.course-catalog-instructor__text small{
  margin-top:3px;

  color:#667588;

  font-size:11.5px;

  line-height:1.4;
}


/* =========================================================
   THREE KEY FACTS
   ========================================================= */

.course-catalog-facts{
  display:grid;

  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:8px;

  margin-top:auto;
}

.course-catalog-fact{
  min-width:0;

  padding:11px;

  border:1px solid var(--line);
  border-radius:12px;

  background:#fafbfd;
}

.course-catalog-fact__label{
  display:block;

  margin-bottom:4px;

  color:#718094;

  font-size:10px;
  font-weight:700;

  letter-spacing:.035em;
  text-transform:uppercase;
}

.course-catalog-fact strong{
  display:block;

  color:#26364a;

  font-size:12px;
  font-weight:700;

  line-height:1.4;
}

.course-catalog-fact--fee{
  background:
    linear-gradient(
      135deg,
      rgba(21,147,178,.06),
      rgba(115,87,199,.05)
    );
}


/* =========================================================
   CTA
   ========================================================= */

.course-catalog-card__footer{
  padding-top:20px;
}

.course-catalog-card__cta{
  display:flex;
  align-items:center;
  justify-content:space-between;

  width:100%;

  padding:13px 16px;

  border:1px solid rgba(21,147,178,.18);
  border-radius:12px;

  background:rgba(21,147,178,.065);

  color:var(--accent-dark) !important;

  font-size:14px;
  font-weight:800;

  text-decoration:none !important;

  transition:
    background .18s ease,
    transform .18s ease;
}

.course-catalog-card__cta:hover{
  background:rgba(21,147,178,.11);
}

.course-catalog-card__cta span{
  font-size:18px;

  transition:transform .18s ease;
}

.course-catalog-card__cta:hover span{
  transform:translateX(4px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.course-pagination{
  margin-top:48px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:850px){

  .course-catalog-facts{
    grid-template-columns:1fr;
  }

}


@media (max-width:700px){

  .course-archive-hero{
    padding:56px 0 44px;
  }

  .course-archive-title{
    font-size:48px;
  }

  .course-archive-subtitle{
    font-size:18px;
  }

  .course-catalogue{
    padding:48px 0 68px;
  }

  .course-catalogue-grid{
    grid-template-columns:1fr;

    gap:24px;
  }

  .course-catalog-card__body{
    padding:22px;
  }

  .course-catalog-card__title{
    font-size:23px;
  }

  .course-catalog-facts{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

}


@media (max-width:520px){

  .course-catalog-facts{
    grid-template-columns:1fr;
  }

}