@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@700;800&display=swap");

/* =========================================================
   ONIGELE ACADEMY
   GLOBAL DESIGN SYSTEM + NAVBAR
========================================================= */

:root {
  /* -----------------------------------------
     FONT FAMILIES
  ----------------------------------------- */

  --oa-font-heading: "Manrope", Arial, sans-serif;
  --oa-font-body: "Inter", Arial, sans-serif;

  /* -----------------------------------------
     PRIMARY — DEEP PLUM
  ----------------------------------------- */

  --oa-primary-50: #f7ecf3;
  --oa-primary-100: #f0d9e8;
  --oa-primary-200: #e1b4d0;
  --oa-primary-300: #ce85b3;
  --oa-primary-400: #b74c90;
  --oa-primary-500: #a0146d;
  --oa-primary-600: #8d1260;
  --oa-primary-700: #7a0f53;
  --oa-primary-800: #630c44;
  --oa-primary-900: #4d0a34;

  /* -----------------------------------------
     ACCENT — LUXURY GOLD
  ----------------------------------------- */

  --oa-gold-50: #fef9ed;
  --oa-gold-100: #fdf2db;
  --oa-gold-200: #fbe6b7;
  --oa-gold-300: #f8d68a;
  --oa-gold-400: #f5c354;
  --oa-gold-500: #f2b01e;
  --oa-gold-600: #d59b1a;
  --oa-gold-700: #b88617;
  --oa-gold-800: #966d13;
  --oa-gold-900: #74540e;

  /* -----------------------------------------
     SECONDARY ACCENT — ORANGE
  ----------------------------------------- */

  --oa-orange-50: #fdf3ed;
  --oa-orange-100: #fbe7db;
  --oa-orange-200: #f8cfb6;
  --oa-orange-300: #f3b289;
  --oa-orange-400: #ee8e52;
  --oa-orange-500: #e86a1c;
  --oa-orange-600: #cc5d19;
  --oa-orange-700: #b05115;
  --oa-orange-800: #904211;
  --oa-orange-900: #6f330d;

  /* -----------------------------------------
     NEUTRALS
  ----------------------------------------- */

  --oa-white: #ffffff;
  --oa-neutral-50: #fafafa;
  --oa-warm-cream: #fff9f5;
  --oa-warm-peach: #fff3e6;
  --oa-border: #ece7e2;
  --oa-neutral-400: #a9a4a0;
  --oa-text-secondary: #555555;
  --oa-neutral-700: #3a3735;
  --oa-neutral-800: #242220;
  --oa-dark: #161616;
  --oa-black: #000000;

  /* -----------------------------------------
     SPACING
  ----------------------------------------- */

  --oa-space-1: 4px;
  --oa-space-2: 8px;
  --oa-space-3: 12px;
  --oa-space-4: 16px;
  --oa-space-5: 24px;
  --oa-space-6: 32px;
  --oa-space-7: 48px;
  --oa-space-8: 64px;
  --oa-space-9: 80px;
  --oa-space-10: 96px;
  --oa-space-11: 120px;

  /* -----------------------------------------
     LAYOUT
  ----------------------------------------- */

  --oa-container-max: 1280px;
  --oa-content-narrow: 760px;
  --oa-page-padding-desktop: 32px;
  --oa-page-padding-tablet: 24px;
  --oa-page-padding-mobile: 20px;

  /* -----------------------------------------
     BORDER RADII
  ----------------------------------------- */

  --oa-radius-small: 12px;
  --oa-radius-medium: 18px;
  --oa-radius-navbar: 20px;
  --oa-radius-card: 24px;
  --oa-radius-image: 28px;
  --oa-radius-large: 36px;
  --oa-radius-pill: 999px;

  /* -----------------------------------------
     SHADOWS
  ----------------------------------------- */

  --oa-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
  --oa-shadow-floating: 0 16px 40px rgba(22, 22, 22, 0.1);
  --oa-shadow-button: 0 12px 30px rgba(160, 20, 109, 0.22);
  --oa-shadow-navbar: 0 18px 55px rgba(77, 10, 52, 0.12);
  --oa-shadow-navbar-scroll: 0 12px 36px rgba(22, 22, 22, 0.1);
  --oa-shadow-drawer: -24px 0 60px rgba(22, 22, 22, 0.16);

  /* -----------------------------------------
     GRADIENTS
  ----------------------------------------- */

  --oa-gradient-hero: linear-gradient(
    135deg,
    #fff9f5 0%,
    #fff3e6 40%,
    #ffffff 100%
  );

  --oa-gradient-primary: linear-gradient(135deg, #a0146d 0%, #c01a82 100%);

  --oa-gradient-primary-hover: linear-gradient(
    135deg,
    #8d1260 0%,
    #a0146d 100%
  );

  --oa-gradient-gold: linear-gradient(135deg, #f2b01e 0%, #ffcc4a 100%);

  /* -----------------------------------------
     TRANSITIONS
  ----------------------------------------- */

  --oa-transition-fast: 180ms ease;
  --oa-transition-default: 280ms ease;
  --oa-transition-slow: 420ms cubic-bezier(0.22, 1, 0.36, 1);

  /* -----------------------------------------
     Z-INDEX
  ----------------------------------------- */

  --oa-z-base: 1;
  --oa-z-floating: 20;
  --oa-z-header: 999;
  --oa-z-popup: 9999;
}

/* =========================================================
   BASE RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--oa-white);
  color: var(--oa-text-secondary);
  font-family: var(--oa-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
  font-family: var(--oa-font-body);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

::selection {
  background: var(--oa-primary-200);
  color: var(--oa-primary-900);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.oa-screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.oa-btn .elementor-button:focus-visible,
.oa-navbar__menu a:focus-visible,
.oa-navbar__toggle .elementor-button:focus-visible,
.oa-mobile-menu__close .elementor-button:focus-visible {
  outline: 3px solid var(--oa-primary-200);
  outline-offset: 3px;
}

/* =========================================================
   GLOBAL CONTAINER CLASSES
========================================================= */

.oa-container {
  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  );
  margin-inline: auto;
}

.oa-container-narrow {
  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-content-narrow)
  );
  margin-inline: auto;
}

/* =========================================================
   TYPOGRAPHY — DISPLAY
========================================================= */

.oa-display-hero,
.oa-display-hero .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(42px, 7.5vw, 104px) !important;
  font-weight: 800 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase;
}

.oa-display-large,
.oa-display-large .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  font-weight: 800 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.025em !important;
  text-transform: uppercase;
}

/* =========================================================
   TYPOGRAPHY — HEADINGS
========================================================= */

.oa-heading-1,
.oa-heading-1 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

.oa-heading-2,
.oa-heading-2 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
}

.oa-heading-3,
.oa-heading-3 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

.oa-heading-4,
.oa-heading-4 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(24px, 2.5vw, 28px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.oa-heading-5,
.oa-heading-5 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(20px, 2vw, 22px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}

.oa-heading-6,
.oa-heading-6 .elementor-heading-title {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

/* =========================================================
   TYPOGRAPHY — BODY
========================================================= */

.oa-body-large,
.oa-body-large p {
  margin-top: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

.oa-body-regular,
.oa-body-regular p {
  margin-top: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

.oa-body-medium,
.oa-body-medium p {
  margin-top: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

.oa-body-small,
.oa-body-small p {
  margin-top: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

.oa-caption,
.oa-caption p {
  margin-top: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* =========================================================
   TYPOGRAPHY — INTERFACE
========================================================= */

.oa-eyebrow,
.oa-eyebrow .elementor-heading-title,
.oa-eyebrow p {
  margin: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.oa-navigation,
.oa-navigation a {
  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.oa-button-label,
.oa-button-label .elementor-button,
.oa-button-label .elementor-button-text {
  font-family: var(--oa-font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.oa-pill,
.oa-pill span,
.oa-pill p {
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.oa-stat-number,
.oa-stat-number .elementor-heading-title,
.oa-stat-number p {
  margin: 0;
  font-family: var(--oa-font-heading) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
}

.oa-stat-label,
.oa-stat-label p {
  margin: 0;
  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

/* =========================================================
   GRADIENT CLASSES
========================================================= */

.oa-gradient-hero {
  background: var(--oa-gradient-hero);
}

.oa-gradient-primary {
  background: var(--oa-gradient-primary);
}

.oa-gradient-gold {
  background: var(--oa-gradient-gold);
}

/* =========================================================
   GLASS EFFECT
========================================================= */

.oa-glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--oa-shadow-floating);
}

/* =========================================================
   SHADOW UTILITIES
========================================================= */

.oa-shadow-card {
  box-shadow: var(--oa-shadow-card);
}

.oa-shadow-floating {
  box-shadow: var(--oa-shadow-floating);
}

.oa-shadow-button {
  box-shadow: var(--oa-shadow-button);
}

/* =========================================================
   RADIUS UTILITIES
========================================================= */

.oa-radius-small {
  border-radius: var(--oa-radius-small);
}

.oa-radius-card {
  border-radius: var(--oa-radius-card);
}

.oa-radius-image {
  overflow: hidden;
  border-radius: var(--oa-radius-image);
}

.oa-radius-pill {
  border-radius: var(--oa-radius-pill);
}

/* =========================================================
   GAP UTILITIES
========================================================= */

.oa-gap-1 {
  gap: var(--oa-space-1);
}

.oa-gap-2 {
  gap: var(--oa-space-2);
}

.oa-gap-3 {
  gap: var(--oa-space-3);
}

.oa-gap-4 {
  gap: var(--oa-space-4);
}

.oa-gap-5 {
  gap: var(--oa-space-5);
}

.oa-gap-6 {
  gap: var(--oa-space-6);
}

.oa-gap-7 {
  gap: var(--oa-space-7);
}

.oa-gap-8 {
  gap: var(--oa-space-8);
}

.oa-gap-9 {
  gap: var(--oa-space-9);
}

.oa-gap-10 {
  gap: var(--oa-space-10);
}

.oa-gap-11 {
  gap: var(--oa-space-11);
}

/* =========================================================
   PADDING UTILITIES
========================================================= */

.oa-padding-1 {
  padding: var(--oa-space-1);
}

.oa-padding-2 {
  padding: var(--oa-space-2);
}

.oa-padding-3 {
  padding: var(--oa-space-3);
}

.oa-padding-4 {
  padding: var(--oa-space-4);
}

.oa-padding-5 {
  padding: var(--oa-space-5);
}

.oa-padding-6 {
  padding: var(--oa-space-6);
}

.oa-padding-7 {
  padding: var(--oa-space-7);
}

.oa-padding-8 {
  padding: var(--oa-space-8);
}

.oa-padding-9 {
  padding: var(--oa-space-9);
}

.oa-padding-10 {
  padding: var(--oa-space-10);
}

.oa-padding-11 {
  padding: var(--oa-space-11);
}

/* =========================================================
   SECTION SPACING
========================================================= */

.oa-section-small {
  padding-block: var(--oa-space-8);
}

.oa-section-default {
  padding-block: var(--oa-space-9);
}

.oa-section-large {
  padding-block: var(--oa-space-11);
}

/* =========================================================
   GLOBAL BUTTON SYSTEM
========================================================= */

.oa-btn .elementor-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--oa-radius-pill);
  font-family: var(--oa-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--oa-transition-default),
    color var(--oa-transition-default),
    background var(--oa-transition-default),
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

.oa-btn .elementor-button:hover {
  transform: translateY(-2px);
}

.oa-btn .elementor-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oa-btn--primary .elementor-button,
.wc-block-checkout__actions
  .wc-block-checkout__actions_row
  .wc-block-components-checkout-place-order-button--full-width {
  border-color: transparent;
  background: var(--oa-gradient-primary);
  color: var(--oa-white);
  box-shadow: var(--oa-shadow-button);
}

.wc-block-checkout__actions
  .wc-block-checkout__actions_row
  .wc-block-components-checkout-place-order-button--full-width {
  border-radius: 50px !important;
}

.oa-btn--primary .elementor-button:hover {
  background: var(--oa-gradient-primary-hover);
  color: var(--oa-white);
  box-shadow: 0 15px 36px rgba(160, 20, 109, 0.28);
}

.oa-btn--secondary .elementor-button {
  border-color: rgba(22, 22, 22, 0.18);
  background: rgba(255, 255, 255, 0.64);
  color: var(--oa-dark);
  box-shadow: none;
}

.oa-btn--secondary .elementor-button:hover {
  border-color: var(--oa-primary-300);
  background: var(--oa-white);
  color: var(--oa-primary-500);
}

/* =========================================================
   ONIGELE ACADEMY — GLOBAL STICKY HEADER
========================================================= */

/* ---------------------------------------------------------
   STICKY HEADER WRAPPER

   Elementor's generated header wrapper owns the sticky
   behaviour. Elementor Sticky/Motion Effects must be disabled
   in the Header template.
--------------------------------------------------------- */

.elementor-location-header {
  position: sticky !important;
  top: 0;
  right: auto;
  bottom: auto;
  left: auto;

  z-index: var(--oa-z-header);

  width: 100%;

  margin: 0;
  padding: 0;

  overflow: visible !important;

  background: var(--oa-white);
}

/* Keep Elementor's direct header child available to sticky
   positioning and prevent wrapper clipping. */

.elementor-location-header > .elementor-element {
  overflow: visible !important;
}

/* =========================================================
   GLOBAL HEADER WRAPPER
========================================================= */

.oa-site-header,
.oa-site-header.e-con {
  position: relative !important;

  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  z-index: var(--oa-z-header);

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;

  background: var(--oa-white) !important;
  background-color: var(--oa-white) !important;
  background-image: none !important;

  box-shadow: var(--oa-shadow-navbar);

  pointer-events: auto;
}

/* Remove any Elementor background overlay from the full
   header wrapper. */

.oa-site-header::before,
.oa-site-header::after {
  display: none !important;

  background: transparent !important;

  opacity: 0 !important;

  pointer-events: none;
}

/* Elementor sticky classes must not create a second visual
   state or restore fixed positioning. */

.oa-site-header.elementor-sticky--active,
.oa-site-header.elementor-sticky--effects,
.oa-site-header.elementor-sticky--active.e-con,
.oa-site-header.elementor-sticky--effects.e-con {
  position: relative !important;

  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  background: var(--oa-white) !important;
  background-color: var(--oa-white) !important;
  background-image: none !important;

  box-shadow: var(--oa-shadow-navbar);
}

/* =========================================================
   NAVBAR SHELL
========================================================= */

.oa-navbar,
.oa-navbar.e-con,
.oa-site-header.elementor-sticky--active .oa-navbar,
.oa-site-header.elementor-sticky--active .oa-navbar.e-con,
.oa-site-header.elementor-sticky--effects .oa-navbar,
.oa-site-header.elementor-sticky--effects .oa-navbar.e-con {
  position: relative;

  width: calc(100% - (var(--oa-page-padding-desktop) * 2)) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 76px;

  margin: 0 auto !important;

  padding: 10px 16px !important;

  overflow: visible;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;

  box-shadow: none !important;

  pointer-events: auto;
}

/* =========================================================
   NAVBAR BRAND
========================================================= */

.oa-navbar__brand,
.oa-navbar__brand.e-con {
  display: flex !important;

  flex: 0 0 190px;

  align-items: center !important;
  justify-content: flex-start !important;
}

.oa-navbar__logo {
  width: auto;
  max-width: none;

  margin: 0;
}

.oa-navbar__logo .elementor-widget-container {
  width: auto;
}

.oa-navbar__logo img,
.oa-site-header.elementor-sticky--active .oa-navbar__logo img,
.oa-site-header.elementor-sticky--effects .oa-navbar__logo img {
  display: block;

  width: 120px;
  max-width: 120px;
  height: auto;

  margin: 0;
}

/* =========================================================
   DESKTOP MENU SHELL
========================================================= */

.oa-navbar__menu-shell,
.oa-navbar__menu-shell.e-con {
  display: flex !important;

  flex: 0 1 auto;

  align-items: center !important;
  justify-content: center !important;

  padding: 6px !important;

  overflow: hidden;

  border: 1px solid rgba(236, 231, 226, 0.94);

  border-radius: var(--oa-radius-pill);

  background: rgba(255, 255, 255, 0.52);

  box-shadow: 0 6px 20px rgba(22, 22, 22, 0.04);
}

.oa-navbar__menu-shell .elementor-widget,
.oa-navbar__menu-shell .elementor-widget-container,
.oa-navbar__menu-shell .elementor-nav-menu--main,
.oa-navbar__menu-shell .elementor-nav-menu {
  border-radius: inherit;
}

.oa-navbar__menu {
  width: auto;
}

.oa-navbar__menu .elementor-nav-menu--main {
  display: block !important;
}

.oa-navbar__menu .elementor-nav-menu--main > .elementor-nav-menu {
  display: flex;

  flex-wrap: nowrap;

  align-items: center;

  gap: 2px;
}

.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > li
  > .elementor-item {
  position: relative;

  min-height: 40px;

  padding: 12px 18px;

  border-radius: var(--oa-radius-pill);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast);
}

.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > li
  > .elementor-item:hover {
  background: rgba(247, 236, 243, 0.7);

  color: var(--oa-primary-500);
}

.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > .current-menu-item
  > .elementor-item,
.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > li
  > .elementor-item-active {
  background: var(--oa-primary-50);

  color: var(--oa-primary-500);
}

.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > .current-menu-item
  > .elementor-item::after,
.oa-navbar__menu
  .elementor-nav-menu--main
  .elementor-nav-menu
  > li
  > .elementor-item-active::after {
  content: "";

  position: absolute;

  bottom: 5px;
  left: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--oa-primary-500);

  transform: translateX(-50%);
}

/* Remove Elementor pointer effects. */

.oa-navbar__menu .elementor-item::before {
  display: none !important;
}

/* =========================================================
   DESKTOP ACTIONS
========================================================= */

.oa-navbar__actions,
.oa-navbar__actions.e-con {
  display: flex !important;

  flex: 0 0 auto;

  align-items: center !important;
  justify-content: flex-end !important;

  gap: 12px !important;
}

.oa-navbar__login .elementor-button {
  min-width: 124px;
}

.oa-navbar__join .elementor-button {
  min-width: 198px;
}

.oa-navbar__join .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-navbar__join .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* =========================================================
   TABLET AND MOBILE TOGGLE
========================================================= */

.oa-navbar__toggle-wrap,
.oa-navbar__toggle-wrap.e-con {
  display: none !important;

  flex: 0 0 auto;

  margin-left: auto;
}

.oa-navbar__toggle .elementor-button {
  display: inline-flex;

  width: 46px;
  min-width: 46px;

  height: 46px;
  min-height: 46px;

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

  padding: 0;

  border: 1px solid rgba(22, 22, 22, 0.12);

  border-radius: 15px;

  background: var(--oa-white);

  color: var(--oa-dark);

  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.08);

  transition:
    color var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-navbar__toggle .elementor-button:hover {
  border-color: var(--oa-primary-200);

  background: var(--oa-primary-50);

  color: var(--oa-primary-500);

  transform: translateY(-1px);
}

.oa-navbar__toggle .elementor-button-text {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;
}

.oa-navbar__toggle .elementor-button-icon {
  margin: 0 !important;

  font-size: 21px;
}

/* =========================================================
   HEADER — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-navbar,
  .oa-navbar.e-con,
  .oa-site-header.elementor-sticky--active .oa-navbar,
  .oa-site-header.elementor-sticky--active .oa-navbar.e-con,
  .oa-site-header.elementor-sticky--effects .oa-navbar,
  .oa-site-header.elementor-sticky--effects .oa-navbar.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    min-height: 72px;

    margin: 0 auto !important;

    padding: 8px 12px !important;
  }

  .oa-navbar__brand,
  .oa-navbar__brand.e-con {
    flex-basis: auto;
  }

  .oa-navbar__logo img,
  .oa-site-header.elementor-sticky--active .oa-navbar__logo img,
  .oa-site-header.elementor-sticky--effects .oa-navbar__logo img {
    width: 120px;
    max-width: 120px;
  }

  .oa-navbar__menu-shell,
  .oa-navbar__menu-shell.e-con,
  .oa-navbar__actions,
  .oa-navbar__actions.e-con {
    display: none !important;
  }

  .oa-navbar__toggle-wrap,
  .oa-navbar__toggle-wrap.e-con {
    display: flex !important;
  }
}

/* =========================================================
   HEADER — MOBILE
========================================================= */

@media (max-width: 767px) {
  .elementor-location-header,
  .elementor-location-header > .elementor-element,
  .oa-site-header,
  .oa-site-header.e-con,
  .oa-site-header.elementor-sticky--active,
  .oa-site-header.elementor-sticky--effects {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .oa-navbar,
  .oa-navbar.e-con,
  .oa-site-header.elementor-sticky--active .oa-navbar,
  .oa-site-header.elementor-sticky--active .oa-navbar.e-con,
  .oa-site-header.elementor-sticky--effects .oa-navbar,
  .oa-site-header.elementor-sticky--effects .oa-navbar.e-con {
    width: 100% !important;
    max-width: none !important;

    min-height: 64px;

    margin: 0 !important;

    padding: 8px 12px 8px 16px !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;

    box-shadow: none !important;
  }

  .oa-navbar__logo img,
  .oa-site-header.elementor-sticky--active .oa-navbar__logo img,
  .oa-site-header.elementor-sticky--effects .oa-navbar__logo img {
    width: 120px;
    max-width: 120px;
  }

  .oa-navbar__toggle .elementor-button {
    width: 44px;
    min-width: 44px;

    height: 44px;
    min-height: 44px;

    border-radius: 14px;
  }
}

/* =========================================================
   WORDPRESS ADMIN BAR OFFSET
========================================================= */

@media (min-width: 783px) {
  body.admin-bar .elementor-location-header {
    top: 32px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .elementor-location-header {
    top: 46px;
  }
}

/* =========================================================
   MOBILE POPUP SHELL

   IMPORTANT:
   Replace every instance of 7929 below with the actual
   Elementor popup template ID after creating the popup.
========================================================= */

#elementor-popup-modal-7929 {
  z-index: var(--oa-z-popup);
  align-items: stretch !important;
  justify-content: flex-end !important;
  background: rgba(22, 22, 22, 0.48);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

#elementor-popup-modal-7929 .dialog-widget-content {
  width: min(88vw, 420px) !important;
  max-width: 420px !important;
  height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
  background: var(--oa-warm-cream);
  box-shadow: var(--oa-shadow-drawer);
}

#elementor-popup-modal-7929 .dialog-message {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
}

#elementor-popup-modal-7929 .dialog-close-button,
#elementor-popup-modal-7929 .dialog-lightbox-close-button {
  display: none !important;
}

/* =========================================================
   MOBILE MENU ROOT
========================================================= */

.oa-mobile-menu {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 110% 8%,
      rgba(242, 176, 30, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at -10% 48%,
      rgba(160, 20, 109, 0.12),
      transparent 28%
    ),
    var(--oa-warm-cream);
}

.oa-mobile-menu::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30%;
  right: -54px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(206, 133, 179, 0.22);
}

.oa-mobile-menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 11%;
  left: -12px;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(242, 176, 30, 0.5);
  transform: rotate(18deg);
}

/* =========================================================
   MOBILE MENU HEADER
========================================================= */

.oa-mobile-menu__header {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.oa-mobile-menu__logo img {
  width: 136px;
  max-width: 136px;
}

.oa-mobile-menu__close .elementor-button {
  display: inline-flex;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--oa-dark);
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.06);
}

.oa-mobile-menu__close .elementor-button:hover {
  border-color: var(--oa-primary-200);
  background: var(--oa-primary-50);
  color: var(--oa-primary-500);
}

.oa-mobile-menu__close .elementor-button-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.oa-mobile-menu__close .elementor-button-icon {
  margin: 0 !important;
  font-size: 22px;
}

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

.oa-mobile-menu__nav {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 48px;
}

.oa-mobile-menu__nav .elementor-nav-menu--main {
  display: block !important;
}

.oa-mobile-menu__nav .elementor-nav-menu {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  gap: 4px;
}

.oa-mobile-menu__nav .elementor-nav-menu > li {
  width: 100%;
  border-bottom: 1px solid rgba(22, 22, 22, 0.09);
}

/* =========================================================
   MENU ITEM
========================================================= */

.oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item {
  position: relative !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;

  width: 100%;
  min-height: 58px;

  gap: 14px;

  padding: 16px 38px 16px 8px !important;

  border-radius: 12px;

  color: var(--oa-dark);
  font-family: var(--oa-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast);
}

/* Hover */

.oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item:hover {
  background: rgba(247, 236, 243, 0.74);
  color: var(--oa-primary-500);
}

/* Active */

.oa-mobile-menu__nav .elementor-nav-menu > .current-menu-item > .elementor-item,
.oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item-active {
  background: var(--oa-primary-50);
  color: var(--oa-primary-500);
}

/* =========================================================
   MENU ICON
   Always visible.
   Force it to behave as an inline flex item.
========================================================= */

.oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item::before {
  content: "" !important;

  position: static !important;

  display: block !important;

  flex: 0 0 22px !important;

  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;

  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;

  margin: 0 !important;
  padding: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;

  background-color: currentColor !important;

  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;

  -webkit-mask-position: center !important;
  mask-position: center !important;

  -webkit-mask-size: contain !important;
  mask-size: contain !important;

  transform: none !important;
}

/* =========================================================
   RIGHT CHEVRON
========================================================= */

.oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item::after {
  content: "" !important;

  position: absolute !important;
  top: 50% !important;
  right: 12px !important;

  display: block !important;

  width: 8px !important;
  height: 8px !important;

  margin: 0 !important;
  padding: 0 !important;

  border-top: 1.7px solid currentColor !important;
  border-right: 1.7px solid currentColor !important;
  border-bottom: 0 !important;
  border-left: 0 !important;

  background: transparent !important;

  transform: translateY(-50%) rotate(45deg) !important;

  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================================================
   HOME ICON
========================================================= */

.oa-mobile-menu__nav .oa-menu-home > .elementor-item::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m3%2011%209-8%209%208'/%3E%3Cpath%20d='M5%2010v10h14V10'/%3E%3Cpath%20d='M9%2020v-6h6v6'/%3E%3C/svg%3E") !important;

  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m3%2011%209-8%209%208'/%3E%3Cpath%20d='M5%2010v10h14V10'/%3E%3Cpath%20d='M9%2020v-6h6v6'/%3E%3C/svg%3E") !important;
}

/* =========================================================
   COURSES ICON
========================================================= */

.oa-mobile-menu__nav .oa-menu-courses > .elementor-item::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M2%206a2%202%200%200%201%202-2h5a3%203%200%200%201%203%203v13a3%203%200%200%200-3-3H4a2%202%200%200%200-2%202Z'/%3E%3Cpath%20d='M22%206a2%202%200%200%200-2-2h-5a3%203%200%200%200-3%203v13a3%203%200%200%201%203-3h5a2%202%200%200%201%202%202Z'/%3E%3C/svg%3E") !important;

  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M2%206a2%202%200%200%201%202-2h5a3%203%200%200%201%203%203v13a3%203%200%200%200-3-3H4a2%202%200%200%200-2%202Z'/%3E%3Cpath%20d='M22%206a2%202%200%200%200-2-2h-5a3%203%200%200%200-3%203v13a3%203%200%200%201%203-3h5a2%202%200%200%201%202%202Z'/%3E%3C/svg%3E") !important;
}

/* =========================================================
   ABOUT ICON
========================================================= */

.oa-mobile-menu__nav .oa-menu-about > .elementor-item::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='10'/%3E%3Cpath%20d='M12%2016v-4'/%3E%3Cpath%20d='M12%208h.01'/%3E%3C/svg%3E") !important;

  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='10'/%3E%3Cpath%20d='M12%2016v-4'/%3E%3Cpath%20d='M12%208h.01'/%3E%3C/svg%3E") !important;
}

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

.oa-mobile-menu__nav .oa-menu-instructors > .elementor-item::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m22%2010-10-5L2%2010l10%205%2010-5Z'/%3E%3Cpath%20d='M6%2012v5c3%203%209%203%2012%200v-5'/%3E%3C/svg%3E") !important;

  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m22%2010-10-5L2%2010l10%205%2010-5Z'/%3E%3Cpath%20d='M6%2012v5c3%203%209%203%2012%200v-5'/%3E%3C/svg%3E") !important;
}
/* =========================================================
   MOBILE MENU ACTIONS
========================================================= */

.oa-mobile-menu__actions {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 12px;
  margin-top: auto;
  padding-top: 44px;
}

.oa-mobile-menu__actions .elementor-widget-button {
  flex: 1 1 0;
}

.oa-mobile-menu__actions .elementor-button {
  width: 100%;
  white-space: nowrap;
}

.oa-mobile-menu__login .elementor-button {
  padding-inline: 16px;
}

.oa-mobile-menu__join .elementor-button {
  padding-inline: 18px;
}

.oa-mobile-menu__join .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-mobile-menu__join .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}


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

@media (max-width: 1024px) {
  .oa-container,
  .oa-container-narrow {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2));
  }

  .oa-section-small {
    padding-block: var(--oa-space-7);
  }

  .oa-section-default,
  .oa-section-large {
    padding-block: var(--oa-space-8);
  }
}


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

@media (max-width: 767px) {
  .oa-container,
  .oa-container-narrow {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2));
  }

  .oa-mobile-menu {
    padding: 20px;
  }

  .oa-mobile-menu__logo img {
    width: 128px;
    max-width: 128px;
  }

  .oa-mobile-menu__close .elementor-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .oa-mobile-menu__nav {
    margin-top: 38px;
  }

  .oa-mobile-menu__nav .elementor-nav-menu > li > .elementor-item {
    min-height: 56px;
    font-size: 15px;
  }

  .oa-section-small,
  .oa-section-default,
  .oa-section-large {
    padding-block: var(--oa-space-7);
  }


  /* =========================================
     MOBILE MENU ACTIONS
  ========================================= */

  .oa-mobile-menu__actions {
    flex-direction: column !important;
    width: 100%;
    gap: 12px;
  }

  .oa-mobile-menu__actions .elementor-widget-button {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100%;
  }

  .oa-mobile-menu__actions .elementor-button {
    display: flex;
    width: 100% !important;
    min-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}


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

@media (max-width: 390px) {
  #elementor-popup-modal-7929 .dialog-widget-content {
    width: 94vw !important;
  }

  .oa-mobile-menu {
    padding-inline: 18px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   ONIGELE ACADEMY — GLOBAL FOOTER
========================================================= */

/* ---------------------------------------------------------
   FOOTER ROOT
--------------------------------------------------------- */

.oa-site-footer {
  position: relative;
  width: 100%;
  margin-top: 70px;
  overflow: visible;
  background: var(--oa-dark);
  color: var(--oa-white);
}

/* Prevent Elementor from introducing its own backgrounds */

.oa-site-footer,
.oa-site-footer.e-con,
.oa-site-footer > .e-con {
  background-image: none;
}

/* ---------------------------------------------------------
   CTA WRAPPER
--------------------------------------------------------- */

.oa-footer__cta-wrap {
  position: relative;
  z-index: 3;
  width: calc(100% - (var(--oa-page-padding-desktop) * 2));
  max-width: var(--oa-container-max);
  margin-inline: auto;
  margin-bottom: -70px;
  transform: translateY(-70px);
}

/* ---------------------------------------------------------
   CTA PANEL
--------------------------------------------------------- */

.oa-footer__cta,
.oa-footer__cta.e-con {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 48px 64px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--oa-radius-image);

  background:
    radial-gradient(
      circle at 88% 90%,
      rgba(232, 106, 28, 0.13),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 4%,
      rgba(160, 20, 109, 0.08),
      transparent 28%
    ),
    var(--oa-gradient-hero);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 80px rgba(22, 22, 22, 0.16);
}

/* Plum blurred shape */

.oa-footer__cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -72px;
  left: -58px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(160, 20, 109, 0.2);
  filter: blur(28px);
  pointer-events: none;
}

/* Gold decorative dot grid */

.oa-footer__cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  right: 34px;
  width: 74px;
  height: 54px;
  opacity: 0.66;
  background-image: radial-gradient(
    circle,
    var(--oa-gold-500) 1.8px,
    transparent 2px
  );
  background-size: 14px 14px;
  pointer-events: none;
}

/* ---------------------------------------------------------
   CTA COPY
--------------------------------------------------------- */

.oa-footer__cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.oa-footer__cta-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 12px;
  color: var(--oa-primary-500) !important;
}

.oa-footer__cta-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 2px;
  border-radius: var(--oa-radius-pill);
  background: var(--oa-primary-500);
}

.oa-footer__cta-title,
.oa-footer__cta-title .elementor-heading-title {
  max-width: 790px;
  margin: 0;
  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(38px, 4.2vw, 62px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.oa-footer__cta-body,
.oa-footer__cta-body p {
  max-width: 720px;
  margin: 0;
  color: var(--oa-neutral-700) !important;
}

/* ---------------------------------------------------------
   CTA ACTIONS
--------------------------------------------------------- */

.oa-footer__cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}

/* Orange outlined square */

.oa-footer__cta-actions::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--oa-orange-500);
  border-radius: 4px;
  opacity: 0.86;
  transform: rotate(24deg);
  pointer-events: none;
}

/* Gold outlined circle */

.oa-footer__cta-actions::after {
  content: "";
  position: absolute;
  right: -126px;
  bottom: -90px;
  width: 176px;
  height: 176px;
  border: 1.5px solid rgba(242, 176, 30, 0.76);
  border-radius: 50%;
  pointer-events: none;
}

.oa-footer__cta-actions .elementor-widget-button {
  width: 100%;
}

.oa-footer__cta-actions .elementor-button {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding-inline: 28px;
}

.oa-footer__cta-primary .elementor-button {
  box-shadow: 0 16px 36px rgba(160, 20, 109, 0.24);
}

.oa-footer__cta-secondary .elementor-button {
  border: 1.5px solid var(--oa-primary-500);
  background: rgba(255, 255, 255, 0.3);
  color: var(--oa-primary-500);
}

.oa-footer__cta-secondary .elementor-button:hover {
  border-color: var(--oa-primary-600);
  background: var(--oa-primary-50);
  color: var(--oa-primary-600);
}

.oa-footer__cta-primary .elementor-button-icon,
.oa-footer__cta-secondary .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-footer__cta-primary .elementor-button:hover .elementor-button-icon,
.oa-footer__cta-secondary .elementor-button:hover .elementor-button-icon {
  transform: translateX(5px);
}

/* ---------------------------------------------------------
   MAIN FOOTER
--------------------------------------------------------- */

.oa-footer__main,
.oa-footer__main.e-con {
  width: calc(100% - (var(--oa-page-padding-desktop) * 2));
  max-width: var(--oa-container-max);
  margin-inline: auto;
  padding-top: 72px;
  padding-bottom: 32px;
  background: transparent;
}

/* ---------------------------------------------------------
   FOOTER GRID
--------------------------------------------------------- */

.oa-footer__grid,
.oa-footer__grid.e-con {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.5fr)
    minmax(150px, 0.72fr)
    minmax(190px, 0.92fr)
    minmax(220px, 1fr);
  align-items: start;
  gap: 64px;
  width: 100%;
}

/* ---------------------------------------------------------
   FOOTER COLUMNS
--------------------------------------------------------- */

.oa-footer__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.oa-footer__brand {
  gap: 24px;
}

.oa-footer__logo img {
  width: 180px;
  max-width: 180px;
}

.oa-footer__brand-copy,
.oa-footer__brand-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ---------------------------------------------------------
   FOOTER COLUMN TITLES
--------------------------------------------------------- */

.oa-footer__column-title,
.oa-footer__column-title .elementor-heading-title {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
  color: var(--oa-white) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.oa-footer__column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 2px;
  border-radius: var(--oa-radius-pill);
  background: var(--oa-gold-500);
}

/* ---------------------------------------------------------
   FOOTER MENUS
--------------------------------------------------------- */

.oa-footer__menu {
  width: 100%;
}

.oa-footer__menu .elementor-nav-menu--main {
  display: block !important;
  width: 100%;
}

.oa-footer__menu .elementor-nav-menu {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0;
}

.oa-footer__menu .elementor-nav-menu > li {
  width: 100%;
}

.oa-footer__menu .elementor-nav-menu > li > .elementor-item {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  padding: 14px 30px 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--oa-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    color var(--oa-transition-fast),
    padding-left var(--oa-transition-fast);
}

.oa-footer__menu .elementor-nav-menu > li > .elementor-item::before {
  display: none !important;
}

.oa-footer__menu .elementor-nav-menu > li > .elementor-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  display: block !important;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 1 !important;
  transform: translateY(-50%) rotate(45deg);
  transition: right var(--oa-transition-fast);
}

.oa-footer__menu .elementor-nav-menu > li > .elementor-item:hover,
.oa-footer__menu .elementor-nav-menu > .current-menu-item > .elementor-item {
  padding-left: 4px;
  color: var(--oa-gold-500);
}

.oa-footer__menu .elementor-nav-menu > li > .elementor-item:hover::after {
  right: 0;
}

/* ---------------------------------------------------------
   SOCIAL ICONS
--------------------------------------------------------- */

.oa-footer__socials .elementor-social-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oa-footer__socials .elementor-icon.elementor-social-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
  color: var(--oa-white);
  font-size: 16px;
  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-footer__socials .elementor-icon.elementor-social-icon:hover {
  border-color: var(--oa-gold-500);
  background: var(--oa-gold-500);
  color: var(--oa-dark);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   CONTACT COLUMN
--------------------------------------------------------- */

.oa-footer__contact {
  gap: 22px;
}

.oa-footer__contact-item,
.oa-footer__contact-item.e-con {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.oa-footer__contact-icon {
  flex: 0 0 auto;
}

.oa-footer__contact-icon .elementor-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 176, 30, 0.7);
  border-radius: 50%;
  background: transparent;
  color: var(--oa-gold-500);
  font-size: 18px;
}

.oa-footer__contact-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.oa-footer__contact-label,
.oa-footer__contact-label .elementor-heading-title {
  margin: 0;
  color: var(--oa-gold-500) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.oa-footer__contact-value,
.oa-footer__contact-value p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  overflow-wrap: anywhere;
}

.oa-footer__contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color var(--oa-transition-fast);
}

.oa-footer__contact-value a:hover {
  color: var(--oa-gold-500);
}

/* ---------------------------------------------------------
   FOOTER BOTTOM
--------------------------------------------------------- */

.oa-footer__bottom,
.oa-footer__bottom.e-con {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.oa-footer__copyright,
.oa-footer__copyright .elementor-heading-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* ---------------------------------------------------------
   LEGAL MENU
--------------------------------------------------------- */

.oa-footer__legal-menu {
  width: auto;
}

.oa-footer__legal-menu .elementor-nav-menu--main {
  display: block !important;
}

.oa-footer__legal-menu .elementor-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.oa-footer__legal-menu .elementor-nav-menu > li {
  position: relative;
}

.oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item {
  padding: 4px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.oa-footer__legal-menu .elementor-nav-menu > li:first-child > .elementor-item {
  padding-left: 0;
}

.oa-footer__legal-menu .elementor-nav-menu > li:last-child > .elementor-item {
  padding-right: 0;
}

.oa-footer__legal-menu .elementor-nav-menu > li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(242, 176, 30, 0.7);
  transform: translateY(-50%);
}

.oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item::before,
.oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item::after {
  display: none !important;
}

.oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item:hover,
.oa-footer__legal-menu
  .elementor-nav-menu
  > .current-menu-item
  > .elementor-item {
  color: var(--oa-gold-500);
}

/* =========================================================
   FOOTER — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-site-footer {
    margin-top: 60px;
  }

  .oa-footer__cta-wrap {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2));
    margin-bottom: -60px;
    transform: translateY(-60px);
  }

  .oa-footer__cta,
  .oa-footer__cta.e-con {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 40px;
    border-radius: 26px;
  }

  .oa-footer__cta-copy,
  .oa-footer__cta-actions {
    width: 100%;
  }

  .oa-footer__cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oa-footer__cta-actions::before {
    top: -16px;
    right: 8px;
  }

  .oa-footer__cta-actions::after {
    right: -110px;
    bottom: -120px;
  }

  .oa-footer__main,
  .oa-footer__main.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2));
    padding-top: 68px;
  }

  .oa-footer__grid,
  .oa-footer__grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 48px;
  }

  .oa-footer__brand {
    grid-column: 1 / -1;
  }

  .oa-footer__brand-copy,
  .oa-footer__brand-copy p {
    max-width: 540px;
  }
}

/* =========================================================
   FOOTER — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-site-footer {
    margin-top: 48px;
  }

  .oa-footer__cta-wrap {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2));
    margin-bottom: -48px;
    transform: translateY(-48px);
  }

  .oa-footer__cta,
  .oa-footer__cta.e-con {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 28px;
    border-radius: 24px;
  }

  .oa-footer__cta::before {
    top: -86px;
    left: -80px;
  }

  .oa-footer__cta::after {
    top: 20px;
    right: 16px;
    width: 58px;
    height: 44px;
    background-size: 12px 12px;
  }

  .oa-footer__cta-title,
  .oa-footer__cta-title .elementor-heading-title {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.06 !important;
  }

  .oa-footer__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .oa-footer__cta-actions .elementor-button {
    min-height: 54px;
  }

  .oa-footer__cta-actions::before {
    display: none;
  }

  .oa-footer__cta-actions::after {
    right: -120px;
    bottom: -132px;
  }

  .oa-footer__main,
  .oa-footer__main.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2));
    padding-top: 64px;
    padding-bottom: 24px;
  }

  .oa-footer__grid,
  .oa-footer__grid.e-con {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .oa-footer__brand {
    grid-column: auto;
  }

  .oa-footer__logo img {
    width: 160px;
    max-width: 160px;
  }

  .oa-footer__socials .elementor-icon.elementor-social-icon {
    width: 40px;
    height: 40px;
  }

  .oa-footer__bottom,
  .oa-footer__bottom.e-con {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 48px;
    padding-top: 24px;
  }

  .oa-footer__legal-menu {
    width: 100%;
  }

  .oa-footer__legal-menu .elementor-nav-menu {
    flex-wrap: wrap;
  }

  .oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item {
    padding: 4px 14px;
  }

  .oa-footer__legal-menu
    .elementor-nav-menu
    > li:first-child
    > .elementor-item {
    padding-left: 0;
  }
}

/* =========================================================
   FOOTER — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .oa-footer__cta,
  .oa-footer__cta.e-con {
    padding: 24px 20px;
  }

  .oa-footer__contact-item,
  .oa-footer__contact-item.e-con {
    align-items: flex-start;
  }

  .oa-footer__contact-icon .elementor-icon {
    width: 42px;
    height: 42px;
  }

  .oa-footer__legal-menu .elementor-nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .oa-footer__legal-menu .elementor-nav-menu > li > .elementor-item {
    padding: 4px 0;
  }

  .oa-footer__legal-menu .elementor-nav-menu > li + li::before {
    display: none;
  }
}

/* =========================================================
   ONIGELE FOOTER CTA — FINAL LAYOUT CORRECTION
   This must remain the final footer CSS block.
========================================================= */

/* ---------------------------------------------------------
   FOOTER ROOT
   Remove Elementor container gaps
--------------------------------------------------------- */

body .oa-site-footer,
body .oa-site-footer.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  margin-top: 70px !important;
  padding: 0 !important;
  /* overflow: visible !important; */
  background: var(--oa-dark) !important;
}

/* ---------------------------------------------------------
   CTA WRAPPER
   Centre the CTA within the viewport
--------------------------------------------------------- */

body .oa-site-footer .oa-footer__cta-wrap,
body .oa-site-footer .oa-footer__cta-wrap.e-con {
  display: block !important;
  align-self: center !important;
  flex: 0 0 auto !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  margin: -70px auto 0 !important;

  padding: 0 !important;
  transform: none !important;
}

/* ---------------------------------------------------------
   CTA PANEL
--------------------------------------------------------- */

body .oa-footer__cta,
body .oa-footer__cta.e-con {
  position: relative;
  isolation: isolate;

  display: grid !important;
  grid-template-columns:
    minmax(0, 2fr)
    minmax(330px, 1fr) !important;

  align-items: stretch !important;
  justify-content: stretch !important;
  gap: 0 !important;

  width: 100% !important;
  max-width: none !important;
  min-height: 370px;

  margin: 0 !important;
  padding: 48px 64px !important;

  /*
   Must remain visible so the decorative elements can
   extend outside the CTA panel.
  */
  overflow: visible !important;

  border: 1px solid rgba(255, 255, 255, 0.88) !important;
  border-radius: var(--oa-radius-image) !important;

  background:
    radial-gradient(
      circle at 91% 92%,
      rgba(232, 106, 28, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at 18% 2%,
      rgba(160, 20, 109, 0.09),
      transparent 28%
    ),
    var(--oa-gradient-hero) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 80px rgba(22, 22, 22, 0.16) !important;
}

/* ---------------------------------------------------------
   PLUM BLURRED CIRCLE
--------------------------------------------------------- */

body .oa-footer__cta::before {
  content: "";
  position: absolute;
  z-index: -1;

  top: 24px;
  left: -112px;

  width: 190px;
  height: 190px;

  border-radius: 50%;
  background: rgba(160, 20, 109, 0.25);
  filter: blur(30px);

  pointer-events: none;
}

/* ---------------------------------------------------------
   GOLD DOT GRID
--------------------------------------------------------- */

body .oa-footer__cta::after {
  content: "";
  position: absolute;
  z-index: 1;

  top: 28px;
  right: 36px;

  width: 74px;
  height: 54px;

  opacity: 0.72;

  background-image: radial-gradient(
    circle,
    var(--oa-gold-500) 1.7px,
    transparent 2px
  );

  background-size: 14px 14px;
  pointer-events: none;
}

/* ---------------------------------------------------------
   CTA COPY COLUMN
--------------------------------------------------------- */

body .oa-footer__cta-copy,
body .oa-footer__cta-copy.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 20px !important;

  margin: 0 !important;
  padding: 0 56px 0 0 !important;
}

/* Ensure Elementor widgets stay above decorations */

.oa-footer__cta-copy > .elementor-element,
.oa-footer__cta-actions > .elementor-element {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   LEFT GOLD CURVE
--------------------------------------------------------- */

body .oa-footer__cta-copy::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: 120px;
  left: -180px;

  width: 158px;
  height: 94px;

  border: 1.5px solid rgba(242, 176, 30, 0.88);
  border-radius: 50%;

  transform: rotate(14deg);
  pointer-events: none;
}

/* ---------------------------------------------------------
   GOLD TEXTURED CIRCLE
--------------------------------------------------------- */

body .oa-footer__cta-copy::after {
  content: "";
  position: absolute;
  z-index: 1;

  top: 16px;
  right: 24px;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 35%,
      rgba(255, 255, 255, 0.72) 0 2px,
      transparent 3px
    ),
    linear-gradient(135deg, var(--oa-gold-300), var(--oa-gold-500));

  background-size:
    8px 8px,
    100% 100%;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 10px 24px rgba(242, 176, 30, 0.16);

  pointer-events: none;
}

/* ---------------------------------------------------------
   CTA EYEBROW
--------------------------------------------------------- */

body .oa-footer__cta-eyebrow {
  position: relative;
  z-index: 3;

  width: auto !important;
  margin: 0 !important;
  color: var(--oa-primary-500) !important;
}

/* ---------------------------------------------------------
   CTA TITLE
   Three lines on desktop
--------------------------------------------------------- */

body .oa-footer__cta-title,
body .oa-footer__cta-title .elementor-heading-title {
  width: 100% !important;
  max-width: 760px !important;

  margin: 0 !important;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;

  font-size: clamp(42px, 3.4vw, 58px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;

  /*
   Manual <br> elements still create the three approved
   lines, but individual lines cannot wrap again.
  */
  white-space: nowrap !important;
}

/* ---------------------------------------------------------
   CTA BODY COPY
--------------------------------------------------------- */

body .oa-footer__cta-body {
  width: 100% !important;
  max-width: 680px !important;
}

body .oa-footer__cta-body p {
  width: 100%;
  max-width: 680px;

  margin: 0 !important;

  color: var(--oa-neutral-700) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* ---------------------------------------------------------
   CTA ACTIONS COLUMN
   Includes the approved vertical divider
--------------------------------------------------------- */

body .oa-footer__cta-actions,
body .oa-footer__cta-actions.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;

  gap: 18px !important;

  margin: 0 !important;
  padding: 28px 0 28px 56px !important;

  border-left: 1px solid rgba(160, 20, 109, 0.12);
}

/* ---------------------------------------------------------
   ORANGE ROTATED SQUARE
--------------------------------------------------------- */

body .oa-footer__cta-actions::before {
  content: "";
  position: absolute;
  z-index: 1;

  top: 38px;
  right: -42px;

  width: 40px;
  height: 40px;

  border: 1.5px solid var(--oa-orange-500);
  border-radius: 5px;

  transform: rotate(24deg);
  pointer-events: none;
}

/* ---------------------------------------------------------
   RIGHT GOLD CURVE
--------------------------------------------------------- */

body .oa-footer__cta-actions::after {
  content: "";
  position: absolute;
  z-index: 0;

  top: 88px;
  right: -180px;

  width: 250px;
  height: 172px;

  border: 1.5px solid rgba(242, 176, 30, 0.82);
  border-radius: 50%;

  transform: rotate(-12deg);
  pointer-events: none;
}

/* ---------------------------------------------------------
   BUTTON WIDGET WIDTHS
--------------------------------------------------------- */

body .oa-footer__cta-actions .elementor-widget-button,
body
  .oa-footer__cta-actions
  .elementor-widget-button
  .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
}

/* ---------------------------------------------------------
   BUTTON SIZE
--------------------------------------------------------- */

body .oa-footer__cta-actions .elementor-button {
  display: flex !important;

  width: 100% !important;
  min-width: 100% !important;
  min-height: 68px !important;

  align-items: center !important;
  justify-content: center !important;

  padding: 0 28px !important;

  border-radius: var(--oa-radius-pill) !important;
}

/* Make the internal Elementor content fill the button */

body .oa-footer__cta-actions .elementor-button-content-wrapper {
  display: flex !important;

  width: 100% !important;

  align-items: center !important;
  justify-content: space-between !important;

  gap: 18px !important;
}

/* Centre the text while keeping the arrow at the right */

body .oa-footer__cta-actions .elementor-button-text {
  flex: 1 1 auto !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body .oa-footer__cta-actions .elementor-button-icon {
  display: inline-flex !important;
  flex: 0 0 auto !important;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
}

/* ---------------------------------------------------------
   MAIN FOOTER POSITION
   Reduce the gap below the CTA
--------------------------------------------------------- */

body .oa-footer__main,
body .oa-footer__main.e-con {
  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  margin: 0 auto !important;
  padding: 36px 0 32px !important;

  background: transparent !important;
}

/* Remove unintended Elementor spacing */

body .oa-footer__grid,
body .oa-footer__grid.e-con {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   CTA CORRECTION — TABLET
========================================================= */

@media (max-width: 1024px) {
  body .oa-site-footer,
  body .oa-site-footer.e-con {
    margin-top: 60px !important;
  }

  body .oa-site-footer .oa-footer__cta-wrap,
  body .oa-site-footer .oa-footer__cta-wrap.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    margin: -60px auto 0 !important;
  }

  body .oa-footer__cta,
  body .oa-footer__cta.e-con {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;

    min-height: auto;

    padding: 40px !important;
    border-radius: 26px !important;
  }

  body .oa-footer__cta-copy,
  body .oa-footer__cta-copy.e-con {
    padding-right: 0 !important;
  }

  body .oa-footer__cta-title,
  body .oa-footer__cta-title .elementor-heading-title {
    max-width: 760px !important;
    white-space: normal !important;
  }

  body .oa-footer__cta-actions,
  body .oa-footer__cta-actions.e-con {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 16px !important;

    padding: 30px 0 0 !important;

    border-top: 1px solid rgba(160, 20, 109, 0.12);
    border-left: 0;
  }

  body .oa-footer__cta-actions::before {
    top: 6px;
    right: 14px;
  }

  body .oa-footer__cta-actions::after {
    top: 48px;
    right: -164px;
  }

  body .oa-footer__cta-copy::after {
    right: 30px;
  }

  body .oa-footer__main,
  body .oa-footer__main.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    padding-top: 32px !important;
  }
}

/* =========================================================
   CTA CORRECTION — MOBILE
========================================================= */

@media (max-width: 767px) {
  body .oa-site-footer,
  body .oa-site-footer.e-con {
    margin-top: 48px !important;
  }

  body .oa-site-footer .oa-footer__cta-wrap,
  body .oa-site-footer .oa-footer__cta-wrap.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    margin: -48px auto 0 !important;
  }

  body .oa-footer__cta,
  body .oa-footer__cta.e-con {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;

    padding: 28px !important;
    border-radius: 24px !important;
  }

  body .oa-footer__cta-title,
  body .oa-footer__cta-title .elementor-heading-title {
    max-width: 100% !important;

    font-size: clamp(34px, 10vw, 46px) !important;

    line-height: 1.06 !important;
    white-space: normal !important;
  }

  body .oa-footer__cta-body,
  body .oa-footer__cta-body p {
    max-width: 100% !important;
  }

  body .oa-footer__cta-actions,
  body .oa-footer__cta-actions.e-con {
    display: flex !important;
    flex-direction: column !important;

    gap: 14px !important;

    padding-top: 28px !important;
  }

  body .oa-footer__cta-actions .elementor-button {
    min-height: 56px !important;
  }

  /* Reduce decorative elements on mobile */

  body .oa-footer__cta-copy::before,
  body .oa-footer__cta-actions::before {
    display: none;
  }

  body .oa-footer__cta-copy::after {
    top: 0;
    right: 0;

    width: 38px;
    height: 38px;
  }

  body .oa-footer__cta-actions::after {
    top: auto;
    right: -150px;
    bottom: -112px;
  }

  body .oa-footer__main,
  body .oa-footer__main.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    padding: 28px 0 24px !important;
  }
}

/* =========================================================
   ONIGELE HOMEPAGE — HERO SECTION
========================================================= */

/* ---------------------------------------------------------
   HOMEPAGE ROOT
--------------------------------------------------------- */

.oa-home {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--oa-white);
}

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

   Starts at the top of the page so the glass navbar sits
   visually over the hero background.
--------------------------------------------------------- */

.oa-home-hero,
.oa-home-hero.e-con {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at -6% 58%,
      rgba(160, 20, 109, 0.18) 0%,
      rgba(160, 20, 109, 0.08) 15%,
      transparent 28%
    ),
    radial-gradient(
      circle at 74% -4%,
      rgba(242, 176, 30, 0.12) 0%,
      transparent 27%
    ),
    linear-gradient(135deg, #fff9f5 0%, #fff4ea 44%, #ffffff 100%);
}

/* Fine decorative curve at the right */

.oa-home-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 112px;
  right: -126px;
  width: 320px;
  height: 230px;
  border: 1.5px solid rgba(242, 176, 30, 0.72);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Small gold decorative diamond */

.oa-home-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 255px;
  right: 42px;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background: var(--oa-gold-400);
  transform: rotate(45deg);
  opacity: 0.72;
  pointer-events: none;
}

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

.oa-home-hero__main,
.oa-home-hero__main.e-con {
  position: relative;
  z-index: 2;

  display: grid !important;
  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(430px, 1.04fr);

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 690px;

  margin: 0 auto !important;

  /*
   The header overlays this area. This padding creates the
   approved space between navbar and hero content.
  */
  padding: 100px 0 0 !important;

  align-items: end !important;
  gap: 56px !important;
}

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

.oa-home-hero__content,
.oa-home-hero__content.e-con {
  position: relative;
  z-index: 3;

  display: flex !important;
  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 20px !important;

  margin: 0 !important;
  padding: 0 0 72px !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-hero__eyebrow,
.oa-home-hero__eyebrow .elementor-heading-title {
  width: auto;
  margin: 0;

  color: var(--oa-primary-500) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-hero__title,
.oa-home-hero__title .elementor-heading-title {
  width: 100%;
  max-width: 680px;

  margin: 0;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(52px, 5vw, 80px) !important;
  font-weight: 800 !important;
  line-height: 0.97 !important;
  letter-spacing: -0.047em !important;
  text-transform: uppercase;
}

/* Prevent Elementor-generated inner wrappers from narrowing it */

.oa-home-hero__title .elementor-widget-container {
  width: 100%;
}

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

.oa-home-hero__copy {
  width: 100%;
  max-width: 550px;
  margin: 0;
}

.oa-home-hero__copy p {
  max-width: 550px;
  margin: 0;

  color: var(--oa-neutral-700) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

/* ---------------------------------------------------------
   CTA ROW
--------------------------------------------------------- */

.oa-home-hero__actions,
.oa-home-hero__actions.e-con {
  display: flex !important;
  width: auto !important;

  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px !important;

  margin: 5px 0 0 !important;
  padding: 0 !important;
}

.oa-home-hero__actions .elementor-widget-button {
  width: auto;
}

.oa-home-hero__actions .elementor-button {
  min-height: 48px;
  padding: 15px 22px !important;
}

.oa-home-hero__primary .elementor-button {
  min-width: 170px;
}

.oa-home-hero__secondary .elementor-button {
  min-width: 154px;
}

.oa-home-hero__primary .elementor-button-icon,
.oa-home-hero__secondary .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-home-hero__primary .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

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

.oa-home-hero__visual,
.oa-home-hero__visual.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 100% !important;
  min-width: 0;
  min-height: 620px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;

  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* Soft circular shape behind the portrait */

.oa-home-hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 3%;
  bottom: -12%;
  width: 91%;
  aspect-ratio: 1;
  border-radius: 50%;

  background: radial-gradient(
    circle at 50% 45%,
    rgba(247, 236, 243, 0.34),
    rgba(240, 217, 232, 0.58)
  );

  pointer-events: none;
}

/* Subtle dotted detail behind the model */

.oa-home-hero__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 94px;
  right: 5%;
  width: 78px;
  height: 64px;

  background-image: radial-gradient(
    circle,
    rgba(242, 176, 30, 0.62) 1.4px,
    transparent 1.7px
  );

  background-size: 13px 13px;
  opacity: 0.58;
  pointer-events: none;
}

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

.oa-home-hero__image {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: end;
}

.oa-home-hero__image .elementor-widget-container {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
}

.oa-home-hero__image img {
  display: block;
  width: 100%;
  max-width: 630px;
  max-height: 620px;
  margin: 0 auto;

  object-fit: contain;
  object-position: bottom center;
}

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

/* =========================================================
   HERO METRICS — FULL-WIDTH STRIP
========================================================= */

.oa-home-hero__metrics-wrap,
.oa-home-hero__metrics-wrap.e-con {
  position: relative;
  z-index: 5;

  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 auto !important;

  align-self: stretch !important;
  align-items: stretch !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border-top: 1px solid rgba(236, 231, 226, 0.72);
  background: rgba(255, 249, 245, 0.86);
}

/*
  Metrics content aligns with the same outer edges as
  the hero text and hero image together.
*/

.oa-home-hero__metrics,
.oa-home-hero__metrics.e-con {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  flex: 0 0 auto !important;

  align-items: center !important;
  gap: 0 !important;

  margin: 0 auto !important;
  padding: 26px 0 !important;
}

/* ---------------------------------------------------------
   INDIVIDUAL METRIC
--------------------------------------------------------- */

.oa-home-hero__metric,
.oa-home-hero__metric.e-con {
  position: relative;

  display: flex !important;
  width: 100% !important;
  min-width: 0;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 13px !important;

  margin: 0 !important;
  padding: 2px 27px !important;

  border-right: 1px solid var(--oa-border);
}

.oa-home-hero__metric:first-child {
  justify-content: flex-start !important;
  padding-left: 0 !important;
}

.oa-home-hero__metric:last-child {
  justify-content: flex-end !important;
  padding-right: 0 !important;
  border-right: 0;
}

/* ---------------------------------------------------------
   METRIC ICON
--------------------------------------------------------- */

.oa-home-hero__metric-icon {
  flex: 0 0 auto;
  margin: 0;
}

.oa-home-hero__metric-icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--oa-orange-500);
  font-size: 25px;
}

/* ---------------------------------------------------------
   METRIC COPY
--------------------------------------------------------- */

.oa-home-hero__metric-copy,
.oa-home-hero__metric-copy.e-con {
  display: flex !important;
  width: auto !important;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 3px !important;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-home-hero__metric-number,
.oa-home-hero__metric-number .elementor-heading-title,
.oa-home-hero__metric-number .elementor-shortcode {
  margin: 0;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
}

.oa-home-hero__metric-label,
.oa-home-hero__metric-label .elementor-heading-title {
  margin: 0;

  color: var(--oa-text-secondary) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

/* =========================================================
   HERO — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-hero__main,
  .oa-home-hero__main.e-con {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;
    min-height: auto;
    padding-top: 150px !important;
    gap: 40px !important;
  }

  .oa-home-hero__content,
  .oa-home-hero__content.e-con {
    max-width: 720px;
    padding-bottom: 0 !important;
  }

  .oa-home-hero__title,
  .oa-home-hero__title .elementor-heading-title {
    max-width: 700px;
    font-size: clamp(52px, 8vw, 76px) !important;
  }

  .oa-home-hero__visual,
  .oa-home-hero__visual.e-con {
    width: min(100%, 650px) !important;
    min-height: 550px;
    margin-inline: auto !important;
  }

  .oa-home-hero__image img {
    max-width: 600px;
    max-height: 550px;
  }

  .oa-home-hero__metrics,
  .oa-home-hero__metrics.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;
    padding-block: 20px !important;
  }

  .oa-home-hero__metric,
  .oa-home-hero__metric.e-con {
    justify-content: flex-start !important;
    padding: 18px 24px !important;
  }

  .oa-home-hero__metric:nth-child(2) {
    border-right: 0;
  }

  .oa-home-hero__metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--oa-border);
  }

  .oa-home-hero__metric:first-child {
    padding-left: 24px !important;
  }

  .oa-home-hero__metric:last-child {
    justify-content: flex-start !important;
    padding-right: 24px !important;
  }
}

/* =========================================================
   HERO — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-hero::before {
    top: 90px;
    right: -180px;
  }

  .oa-home-hero::after {
    display: none;
  }

  .oa-home-hero__main,
  .oa-home-hero__main.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    padding-top: 128px !important;
    gap: 34px !important;
  }

  .oa-home-hero__content,
  .oa-home-hero__content.e-con {
    gap: 18px !important;
  }

  .oa-home-hero__title,
  .oa-home-hero__title .elementor-heading-title {
    max-width: 100%;
    font-size: clamp(42px, 12.6vw, 58px) !important;
    line-height: 0.98 !important;
  }

  .oa-home-hero__copy p {
    font-size: 15px !important;
  }

  .oa-home-hero__actions,
  .oa-home-hero__actions.e-con {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .oa-home-hero__actions .elementor-widget-button,
  .oa-home-hero__actions .elementor-button {
    width: 100%;
  }

  .oa-home-hero__visual,
  .oa-home-hero__visual.e-con {
    min-height: 410px;
  }

  .oa-home-hero__visual::before {
    right: -3%;
    width: 106%;
  }

  .oa-home-hero__visual::after {
    display: none;
  }

  .oa-home-hero__image {
    width: 112%;
    margin-right: -6%;
  }

  .oa-home-hero__image img {
    max-height: 430px;
  }

  .oa-home-hero__metrics,
  .oa-home-hero__metrics.e-con {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;
    padding-block: 12px !important;
  }

  .oa-home-hero__metric,
  .oa-home-hero__metric.e-con,
  .oa-home-hero__metric:first-child,
  .oa-home-hero__metric:last-child {
    justify-content: flex-start !important;
    padding: 16px 0 !important;
    border-right: 0;
    border-bottom: 1px solid var(--oa-border);
  }

  .oa-home-hero__metric:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   ONIGELE HOMEPAGE — FEATURED LEARNING
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-courses,
.oa-home-courses.e-con {
  position: relative;
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 104px 0 110px;

  overflow: hidden;
  background: var(--oa-white);
}

/* Subtle warm glow matching the approved composition */

.oa-home-courses::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -100px;
  right: -130px;

  width: 310px;
  height: 310px;

  border-radius: 50%;
  background: rgba(242, 176, 30, 0.045);
  filter: blur(10px);
  pointer-events: none;
}

/* ---------------------------------------------------------
   SECTION INNER
--------------------------------------------------------- */

.oa-home-courses__inner,
.oa-home-courses__inner.e-con {
  position: relative;
  z-index: 1;

  display: flex !important;
  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 46px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   SECTION HEADER
--------------------------------------------------------- */

.oa-home-courses__head,
.oa-home-courses__head.e-con {
  display: grid !important;
  grid-template-columns:
    minmax(0, 650px)
    auto;

  width: 100% !important;

  align-items: end !important;
  justify-content: space-between !important;

  gap: 48px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   HEADER INTRO
--------------------------------------------------------- */

.oa-home-courses__intro,
.oa-home-courses__intro.e-con {
  display: flex !important;
  width: 100% !important;
  max-width: 650px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 12px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-courses__eyebrow,
.oa-home-courses__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-courses__title,
.oa-home-courses__title .elementor-heading-title {
  width: 100%;
  max-width: 620px;

  margin: 0;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.5vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

/* ---------------------------------------------------------
   SECTION COPY
--------------------------------------------------------- */

.oa-home-courses__copy {
  width: 100%;
  max-width: 560px;
}

.oa-home-courses__copy p {
  max-width: 560px;
  margin: 0;

  color: var(--oa-text-secondary) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

/* ---------------------------------------------------------
   HEADER CTA
--------------------------------------------------------- */

.oa-home-courses__cta {
  width: auto;
  align-self: end;
}

.oa-home-courses__cta .elementor-button {
  min-width: 182px;
  min-height: 48px;
  padding: 15px 22px !important;
}

.oa-home-courses__cta .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-home-courses__cta .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

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

.oa-home-courses__grid {
  width: 100%;
  margin: 0;
}

.oa-home-courses__grid .elementor-loop-container,
.oa-home-courses__grid .elementor-grid {
  align-items: stretch;
}

.oa-home-courses__grid .e-loop-item {
  display: flex;
  min-width: 0;
  height: 100%;
}

/* Ensure the loop template fills the grid item */

.oa-home-courses__grid .e-loop-item > .elementor,
.oa-home-courses__grid .e-loop-item > .elementor > .elementor-element {
  width: 100%;
  height: 100%;
}

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

.oa-course-card,
.oa-course-card.e-con {
  position: relative;

  display: flex !important;
  width: 100% !important;
  min-width: 0;
  min-height: 100%;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 10px 28px rgba(22, 22, 22, 0.055);

  transition:
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default),
    transform var(--oa-transition-default);
}

.oa-course-card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 18px 42px rgba(22, 22, 22, 0.09);

  transform: translateY(-5px);
}

/* ---------------------------------------------------------
   COURSE MEDIA
--------------------------------------------------------- */

.oa-course-card__media,
.oa-course-card__media.e-con {
  position: relative;

  display: block !important;
  width: 100% !important;
  min-height: 220px;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;
  background: var(--oa-warm-cream);
}

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

.oa-course-card__image {
  display: block;
  width: 100%;
  height: 220px;
  margin: 0;
}

.oa-course-card__image .elementor-widget-container,
.oa-course-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.oa-course-card__image img {
  display: block;
  width: 100%;
  height: 220px;

  object-fit: cover;
  object-position: center;

  transition: transform var(--oa-transition-slow);
}

.oa-course-card:hover .oa-course-card__image img {
  transform: scale(1.04);
}

/* ---------------------------------------------------------
   FEATURED BADGE

   Hidden by default and shown only on the first homepage
   course card.
--------------------------------------------------------- */

.oa-course-card__badge {
  display: none;

  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;

  width: auto;

  margin: 0;
  padding: 7px 10px;

  border-radius: 6px;

  background: var(--oa-gradient-gold);

  color: var(--oa-dark) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.oa-home-courses__grid .e-loop-item:first-child .oa-course-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------
   COURSE CONTENT
--------------------------------------------------------- */

.oa-course-card__content,
.oa-course-card__content.e-con {
  display: flex !important;
  width: 100% !important;
  min-width: 0;
  flex: 1 1 auto;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 12px !important;

  margin: 0 !important;
  padding: 18px 17px 17px !important;

  background: var(--oa-white);
}

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

.oa-course-card__title,
.oa-course-card__title .elementor-heading-title {
  width: 100%;
  min-height: 44px;

  margin: 0;

  color: var(--oa-dark) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.018em !important;
}

.oa-course-card__title a {
  color: inherit !important;
  text-decoration: none;
  transition: color var(--oa-transition-fast);
}

.oa-course-card__title a:hover {
  color: var(--oa-primary-500) !important;
}

/* ---------------------------------------------------------
   META ROW
--------------------------------------------------------- */

.oa-course-card__meta,
.oa-course-card__meta.e-con {
  display: flex !important;
  width: 100% !important;

  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 7px 13px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   META ITEM
--------------------------------------------------------- */

.oa-course-card__meta-item,
.oa-course-card__meta-item.e-con {
  display: inline-flex !important;
  width: auto !important;

  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 5px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: var(--oa-text-secondary);
  white-space: nowrap;
}

/* Add a small separator between the two metadata items */

.oa-course-card__meta-item + .oa-course-card__meta-item::before {
  content: "";

  width: 3px;
  height: 3px;
  margin-right: 7px;

  border-radius: 50%;
  background: var(--oa-primary-300);
}

/* ---------------------------------------------------------
   META ICON
--------------------------------------------------------- */

.oa-course-card__meta-icon {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
}

.oa-course-card__meta-icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--oa-primary-400);
  font-size: 11px;
}

/* ---------------------------------------------------------
   META VALUE
--------------------------------------------------------- */

.oa-course-card__meta-value {
  width: auto;
  margin: 0;
}

.oa-course-card__meta-value .elementor-shortcode,
.oa-course-card__meta-value .oa-lp-course-value {
  color: var(--oa-text-secondary);
  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

/* ---------------------------------------------------------
   COURSE PRICE
--------------------------------------------------------- */

.oa-course-card__price {
  width: 100%;
  min-height: 22px;
  margin: 1px 0 0;
}

.oa-course-card__price .elementor-shortcode,
.oa-course-card__price .oa-lp-course-price {
  color: var(--oa-primary-500);
  font-family: var(--oa-font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.oa-course-card__price del {
  margin-right: 6px;

  color: var(--oa-neutral-400);
  font-size: 12px;
  font-weight: 500;
}

.oa-course-card__price ins {
  color: inherit;
  text-decoration: none;
}

/* Remove paragraph margins if LearnPress inserts them */

.oa-course-card__price p {
  margin: 0;
}

/* ---------------------------------------------------------
   ACTION ROW
--------------------------------------------------------- */

.oa-course-card__actions,
.oa-course-card__actions.e-con {
  display: grid !important;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(74px, 0.7fr);

  width: 100% !important;

  align-items: stretch !important;
  gap: 9px !important;

  margin: auto 0 0 !important;

  padding: 3px 0 0 !important;
}

.oa-course-card__actions .elementor-widget-button,
.oa-course-card__actions .elementor-widget-button .elementor-widget-container {
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------
   CARD BUTTON BASE
--------------------------------------------------------- */

.oa-course-card__enrol .elementor-button,
.oa-course-card__view .elementor-button {
  display: inline-flex;
  width: 100%;
  min-height: 39px;

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

  padding: 10px 12px !important;

  border-radius: 8px;

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  box-shadow: none;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-card__enrol .elementor-button:hover,
.oa-course-card__view .elementor-button:hover {
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   ENROL BUTTON
--------------------------------------------------------- */

.oa-course-card__enrol .elementor-button {
  border: 1px solid transparent;

  background: var(--oa-gradient-primary);
  color: var(--oa-white);
}

.oa-course-card__enrol .elementor-button:hover {
  background: var(--oa-gradient-primary-hover);
  color: var(--oa-white);
}

/* ---------------------------------------------------------
   VIEW BUTTON
--------------------------------------------------------- */

.oa-course-card__view .elementor-button {
  border: 1px solid var(--oa-primary-300);

  background: var(--oa-white);
  color: var(--oa-primary-500);
}

.oa-course-card__view .elementor-button:hover {
  border-color: var(--oa-primary-500);

  background: var(--oa-primary-50);
  color: var(--oa-primary-600);
}

/* =========================================================
   FEATURED LEARNING — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-courses,
  .oa-home-courses.e-con {
    padding: 88px 0 92px;
  }

  .oa-home-courses__inner,
  .oa-home-courses__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 40px !important;
  }

  .oa-home-courses__head,
  .oa-home-courses__head.e-con {
    grid-template-columns:
      minmax(0, 1fr)
      auto;

    gap: 32px !important;
  }

  .oa-home-courses__title,
  .oa-home-courses__title .elementor-heading-title {
    font-size: clamp(36px, 5vw, 48px) !important;
  }

  .oa-course-card__media,
  .oa-course-card__image,
  .oa-course-card__image img {
    height: 230px;
    min-height: 230px;
  }
}

/* =========================================================
   FEATURED LEARNING — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-courses,
  .oa-home-courses.e-con {
    padding: 72px 0 76px;
  }

  .oa-home-courses__inner,
  .oa-home-courses__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 34px !important;
  }

  .oa-home-courses__head,
  .oa-home-courses__head.e-con {
    grid-template-columns: minmax(0, 1fr);

    align-items: start !important;
    gap: 24px !important;
  }

  .oa-home-courses__title,
  .oa-home-courses__title .elementor-heading-title {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-courses__copy,
  .oa-home-courses__copy p {
    max-width: 100%;
  }

  .oa-home-courses__cta,
  .oa-home-courses__cta .elementor-widget-container,
  .oa-home-courses__cta .elementor-button {
    width: 100%;
  }

  .oa-course-card__media,
  .oa-course-card__image,
  .oa-course-card__image img {
    height: 240px;
    min-height: 240px;
  }

  .oa-course-card__content,
  .oa-course-card__content.e-con {
    padding: 19px 18px 18px !important;
  }

  .oa-course-card__title,
  .oa-course-card__title .elementor-heading-title {
    min-height: auto;
    font-size: 18px !important;
  }
}

/* Stack the card actions only on very narrow screens */

@media (max-width: 380px) {
  .oa-course-card__actions,
  .oa-course-card__actions.e-con {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   ONIGELE HOMEPAGE — WHY ONIGELE
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-why,
.oa-home-why.e-con {
  position: relative;
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 104px 0;

  overflow: visible;
  background: var(--oa-white);
}

/* ---------------------------------------------------------
   INNER PANEL
--------------------------------------------------------- */

.oa-home-why__inner,
.oa-home-why__inner.e-con {
  position: relative;
  isolation: isolate;

  display: grid !important;
  grid-template-columns:
    minmax(0, 0.4fr)
    minmax(0, 0.6fr);

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 430px;

  align-items: center !important;
  gap: 48px !important;

  margin: 0 auto !important;
  padding: 58px 54px !important;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;

  background:
    radial-gradient(
      circle at 93% 14%,
      rgba(183, 76, 144, 0.2) 0%,
      transparent 27%
    ),
    radial-gradient(
      circle at 14% 112%,
      rgba(160, 20, 109, 0.34) 0%,
      transparent 34%
    ),
    linear-gradient(135deg, var(--oa-primary-900) 0%, #5c0b3e 54%, #3f082b 100%);

  box-shadow: 0 22px 58px rgba(77, 10, 52, 0.16);
}

/* Very subtle pattern inspired by folded fabric */

.oa-home-why__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;

  opacity: 0.08;

  background-image: linear-gradient(
    135deg,
    transparent 46%,
    rgba(255, 255, 255, 0.24) 48%,
    transparent 50%
  );

  background-size: 58px 58px;
  pointer-events: none;
}

/* Soft decorative plum shape */

.oa-home-why__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -86px;
  right: -78px;

  width: 230px;
  height: 230px;

  border-radius: 50%;
  background: rgba(183, 76, 144, 0.13);
  filter: blur(8px);
  pointer-events: none;
}

/* ---------------------------------------------------------
   CONTENT COLUMN
--------------------------------------------------------- */

.oa-home-why__content,
.oa-home-why__content.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 17px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-why__eyebrow,
.oa-home-why__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-gold-500) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-why__title,
.oa-home-why__title .elementor-heading-title {
  width: 100%;
  max-width: 440px;

  margin: 0;

  color: var(--oa-white) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(38px, 3.4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.oa-home-why__copy {
  width: 100%;
  max-width: 430px;
}

.oa-home-why__copy p {
  max-width: 430px;
  margin: 0;

  color: rgba(255, 255, 255, 0.72) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.68 !important;
}

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

.oa-home-why__grid,
.oa-home-why__grid.e-con {
  position: relative;
  z-index: 2;

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

  width: 100% !important;
  min-width: 0;

  align-items: stretch !important;
  gap: 14px !important;

  margin: 0 !important;
  padding: 0 !important;
}

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

.oa-home-why__card,
.oa-home-why__card.e-con {
  position: relative;

  display: flex !important;
  width: 100% !important;
  min-width: 0;
  min-height: 148px;

  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 15px !important;

  margin: 0 !important;
  padding: 23px 21px !important;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 249, 245, 0.97) 100%
  );

  box-shadow: 0 10px 26px rgba(22, 22, 22, 0.08);

  transition:
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default),
    transform var(--oa-transition-default);
}

.oa-home-why__card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 16px 34px rgba(22, 22, 22, 0.12);

  transform: translateY(-3px);
}

/* Subtle glow inside each card */

.oa-home-why__card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;

  width: 100px;
  height: 100px;

  border-radius: 50%;
  background: rgba(160, 20, 109, 0.035);
  pointer-events: none;
}

/* ---------------------------------------------------------
   ICON WRAPPER
--------------------------------------------------------- */

.oa-home-why__icon-wrap,
.oa-home-why__icon-wrap.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 43px !important;
  min-width: 43px;
  height: 43px;

  flex: 0 0 43px !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 50%;
  background: var(--oa-primary-50);
}

/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.oa-home-why__icon {
  width: auto;
  margin: 0;
}

.oa-home-why__icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--oa-primary-500);
  font-size: 18px;
}

/* Card-specific restrained accents */

.oa-home-why__card--one .oa-home-why__icon-wrap {
  background: var(--oa-primary-50);
}

.oa-home-why__card--one .oa-home-why__icon .elementor-icon {
  color: var(--oa-primary-500);
}

.oa-home-why__card--two .oa-home-why__icon-wrap {
  background: #f9edf5;
}

.oa-home-why__card--two .oa-home-why__icon .elementor-icon {
  color: var(--oa-primary-400);
}

.oa-home-why__card--three .oa-home-why__icon-wrap {
  background: var(--oa-primary-50);
}

.oa-home-why__card--three .oa-home-why__icon .elementor-icon {
  color: var(--oa-primary-500);
}

.oa-home-why__card--four .oa-home-why__icon-wrap {
  background: var(--oa-gold-50);
}

.oa-home-why__card--four .oa-home-why__icon .elementor-icon {
  color: var(--oa-orange-500);
}

/* ---------------------------------------------------------
   CARD CONTENT
--------------------------------------------------------- */

.oa-home-why__card-content,
.oa-home-why__card-content.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;
  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 7px !important;

  margin: 0 !important;
  padding: 0 !important;
}

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

.oa-home-why__card-title,
.oa-home-why__card-title .elementor-heading-title {
  width: 100%;
  margin: 0;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.012em !important;
}

/* ---------------------------------------------------------
   CARD COPY
--------------------------------------------------------- */

.oa-home-why__card-copy {
  width: 100%;
}

.oa-home-why__card-copy p {
  margin: 0;

  color: var(--oa-text-secondary) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

/* =========================================================
   WHY ONIGELE — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-why,
  .oa-home-why.e-con {
    padding: 88px 0;
  }

  .oa-home-why__inner,
  .oa-home-why__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    min-height: auto;

    gap: 40px !important;

    padding: 48px 42px !important;
  }

  .oa-home-why__content,
  .oa-home-why__content.e-con {
    max-width: 650px;
  }

  .oa-home-why__title,
  .oa-home-why__title .elementor-heading-title {
    max-width: 590px;
  }

  .oa-home-why__copy,
  .oa-home-why__copy p {
    max-width: 580px;
  }

  .oa-home-why__card,
  .oa-home-why__card.e-con {
    min-height: 145px;
  }
}

/* =========================================================
   WHY ONIGELE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-why,
  .oa-home-why.e-con {
    padding: 72px 0;
  }

  .oa-home-why__inner,
  .oa-home-why__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 32px !important;

    padding: 34px 24px !important;

    border-radius: 20px;
  }

  .oa-home-why__title,
  .oa-home-why__title .elementor-heading-title {
    max-width: 100%;

    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-why__copy,
  .oa-home-why__copy p {
    max-width: 100%;
  }

  .oa-home-why__grid,
  .oa-home-why__grid.e-con {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-why__card,
  .oa-home-why__card.e-con {
    min-height: 0;

    padding: 22px 19px !important;
  }
}

/* Compact card layout on very small screens */

@media (max-width: 390px) {
  .oa-home-why__card,
  .oa-home-why__card.e-con {
    gap: 12px !important;
  }

  .oa-home-why__icon-wrap,
  .oa-home-why__icon-wrap.e-con {
    width: 40px !important;
    min-width: 40px;
    height: 40px;
    flex-basis: 40px !important;
  }
}
/* =========================================================
   ONIGELE HOMEPAGE — THE ONIGELE STORY
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-story,
.oa-home-story.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 108px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 93% 18%,
      rgba(242, 176, 30, 0.08) 0%,
      transparent 23%
    ),
    linear-gradient(135deg, var(--oa-warm-cream) 0%, #fff7ef 52%, #fffaf5 100%);
}

/* ---------------------------------------------------------
   LARGE GOLD CURVE AT THE RIGHT

   Reproduces the restrained line detail in the approved
   design without introducing an additional Elementor widget.
--------------------------------------------------------- */

.oa-home-story::before {
  content: "";
  position: absolute;
  z-index: 0;

  right: -130px;
  bottom: -46px;

  width: 350px;
  height: 260px;

  border: 1.5px solid rgba(242, 176, 30, 0.7);
  border-radius: 50%;

  transform: rotate(-17deg);
  pointer-events: none;
}

/* Small gold triangular/diamond detail */

.oa-home-story::after {
  content: "";
  position: absolute;
  z-index: 1;

  right: 36px;
  top: 55%;

  width: 9px;
  height: 9px;

  border-radius: 1px;
  background: var(--oa-gold-400);

  opacity: 0.66;
  transform: rotate(45deg);
  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER LAYOUT
--------------------------------------------------------- */

.oa-home-story__inner,
.oa-home-story__inner.e-con {
  position: relative;
  z-index: 2;

  display: grid !important;
  grid-template-columns:
    minmax(0, 0.48fr)
    minmax(0, 0.52fr);

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 460px;

  align-items: center !important;
  gap: 64px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

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

.oa-home-story__visual,
.oa-home-story__visual.e-con {
  position: relative;

  display: block !important;
  width: 100% !important;
  min-width: 0;
  min-height: 430px;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* Soft plum glow behind the composition */

.oa-home-story__visual::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: 18%;
  left: 30%;

  width: 58%;
  height: 62%;

  border-radius: 50%;
  background: rgba(160, 20, 109, 0.07);
  filter: blur(34px);

  pointer-events: none;
}

/* Gold dotted accent */

.oa-home-story__visual::after {
  content: "";
  position: absolute;
  z-index: 0;

  left: -22px;
  bottom: 24px;

  width: 70px;
  height: 56px;

  opacity: 0.54;

  background-image: radial-gradient(
    circle,
    rgba(242, 176, 30, 0.78) 1.4px,
    transparent 1.8px
  );

  background-size: 13px 13px;
  pointer-events: none;
}

/* ---------------------------------------------------------
   SHARED IMAGE WIDGET RULES
--------------------------------------------------------- */

.oa-home-story__image-main,
.oa-home-story__image-detail,
.oa-home-story__image-circle {
  position: absolute;
  margin: 0;
}

.oa-home-story__image-main .elementor-widget-container,
.oa-home-story__image-detail .elementor-widget-container,
.oa-home-story__image-circle .elementor-widget-container {
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------
   MAIN GOLD-GELE PORTRAIT
--------------------------------------------------------- */

.oa-home-story__image-main {
  z-index: 2;

  top: 0;
  left: 0;

  width: calc(50% - 9px);
  height: 385px;
}

.oa-home-story__image-main img {
  display: block;
  width: 100%;
  height: 100%;

  border-radius: 18px;

  object-fit: cover;
  object-position: center top;

  box-shadow: 0 14px 34px rgba(22, 22, 22, 0.08);
}

/* ---------------------------------------------------------
   GELE-TYING DETAIL IMAGE
--------------------------------------------------------- */

.oa-home-story__image-detail {
  z-index: 1;

  top: 0;
  right: 0;

  width: calc(50% - 9px);
  height: 385px;
}

.oa-home-story__image-detail img {
  display: block;
  width: 100%;
  height: 100%;

  border-radius: 18px;

  object-fit: cover;
  object-position: center;

  box-shadow: 0 14px 34px rgba(22, 22, 22, 0.08);
}

/* ---------------------------------------------------------
   CIRCULAR OVERLAPPING PORTRAIT
--------------------------------------------------------- */

.oa-home-story__image-circle {
  z-index: 4;

  right: 3%;
  bottom: -1px;

  width: 142px;
  height: 142px;

  overflow: hidden;

  border: 7px solid var(--oa-warm-cream);
  border-radius: 50%;

  box-shadow: 0 15px 36px rgba(22, 22, 22, 0.14);
}

.oa-home-story__image-circle img {
  display: block;
  width: 100%;
  height: 100%;

  border-radius: 50%;

  object-fit: cover;
  object-position: center top;
}

/* =========================================================
   CONTENT COLUMN
========================================================= */

.oa-home-story__content,
.oa-home-story__content.e-con {
  position: relative;
  z-index: 3;

  display: flex !important;
  width: 100% !important;
  min-width: 0;
  max-width: 600px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 18px !important;

  margin: 0 !important;
  padding: 0 50px 0 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-story__eyebrow,
.oa-home-story__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-story__title,
.oa-home-story__title .elementor-heading-title {
  width: 100%;
  max-width: 570px;

  margin: 0;

  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: clamp(38px, 3.5vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.042em !important;
}

/* ---------------------------------------------------------
   STORY COPY
--------------------------------------------------------- */

.oa-home-story__copy {
  width: 100%;
  max-width: 550px;
}

.oa-home-story__copy p {
  max-width: 550px;
  margin: 0;

  color: var(--oa-text-secondary) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.oa-home-story__cta {
  width: auto;
  margin-top: 4px;
}

.oa-home-story__cta .elementor-button {
  min-width: 184px;
  min-height: 48px;

  padding: 15px 22px !important;
}

.oa-home-story__cta .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-home-story__cta .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* =========================================================
   STORY — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-story,
  .oa-home-story.e-con {
    padding: 88px 0;
  }

  .oa-home-story__inner,
  .oa-home-story__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    min-height: auto;

    gap: 52px !important;
  }

  .oa-home-story__visual,
  .oa-home-story__visual.e-con {
    width: min(100%, 680px) !important;
    min-height: 450px;

    margin-inline: auto !important;
  }

  .oa-home-story__image-main,
  .oa-home-story__image-detail {
    height: 400px;
  }

  .oa-home-story__image-circle {
    width: 150px;
    height: 150px;
  }

  .oa-home-story__content,
  .oa-home-story__content.e-con {
    max-width: 680px;
    padding-right: 0 !important;
  }

  .oa-home-story__title,
  .oa-home-story__title .elementor-heading-title {
    max-width: 620px;
  }

  .oa-home-story__copy,
  .oa-home-story__copy p {
    max-width: 620px;
  }
}

/* =========================================================
   STORY — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-story,
  .oa-home-story.e-con {
    padding: 72px 0;
  }

  .oa-home-story::before {
    right: -230px;
    bottom: -110px;
  }

  .oa-home-story::after {
    display: none;
  }

  .oa-home-story__inner,
  .oa-home-story__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 40px !important;
  }

  .oa-home-story__visual,
  .oa-home-story__visual.e-con {
    min-height: 370px;
  }

  .oa-home-story__image-main {
    width: calc(50% - 7px);
    height: 320px;
  }

  .oa-home-story__image-detail {
    width: calc(50% - 7px);
    height: 320px;
  }

  .oa-home-story__image-main img,
  .oa-home-story__image-detail img {
    border-radius: 15px;
  }

  .oa-home-story__image-circle {
    right: 1%;
    bottom: 0;

    width: 108px;
    height: 108px;

    border-width: 5px;
  }

  .oa-home-story__content,
  .oa-home-story__content.e-con {
    max-width: 100%;
  }

  .oa-home-story__title,
  .oa-home-story__title .elementor-heading-title {
    max-width: 100%;

    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-story__copy,
  .oa-home-story__copy p {
    max-width: 100%;
  }

  .oa-home-story__cta,
  .oa-home-story__cta .elementor-widget-container,
  .oa-home-story__cta .elementor-button {
    width: 100%;
  }
}

/* =========================================================
   STORY — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .oa-home-story__visual,
  .oa-home-story__visual.e-con {
    min-height: 340px;
  }

  .oa-home-story__image-main,
  .oa-home-story__image-detail {
    height: 290px;
  }

  .oa-home-story__image-circle {
    width: 96px;
    height: 96px;
  }
}

/* =========================================================
   ONIGELE STORY — IMAGE LAYOUT AND OVERFLOW CORRECTION
   This is the authoritative Story layout block.
========================================================= */

/* ---------------------------------------------------------
   STORY GRID
--------------------------------------------------------- */

body .oa-home-story__inner,
body .oa-home-story__inner.e-con {
  display: grid !important;
  grid-template-columns:
    minmax(0, 0.48fr)
    minmax(0, 0.52fr) !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  align-items: center !important;
  gap: 64px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* Both grid children must be allowed to shrink properly. */

body .oa-home-story__inner > .elementor-element,
body .oa-home-story__visual,
body .oa-home-story__content {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* ---------------------------------------------------------
   STORY VISUAL

   The two rectangular images now use normal CSS Grid.
   Only the circular image uses absolute positioning.
--------------------------------------------------------- */

body .oa-home-story__visual,
body .oa-home-story__visual.e-con {
  position: relative !important;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: 385px 45px !important;

  width: 100% !important;
  max-width: 100% !important;
  min-height: 430px !important;

  align-items: stretch !important;
  justify-items: stretch !important;

  gap: 0 18px !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* ---------------------------------------------------------
   RESET THE PREVIOUS ABSOLUTE IMAGE RULES
--------------------------------------------------------- */

body .oa-home-story__image-main,
body .oa-home-story__image-detail {
  position: relative !important;

  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  inset: auto !important;

  display: block !important;

  width: 100% !important;
  max-width: 100% !important;
  height: 385px !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: none !important;
}

/* Place the two images beside each other. */

body .oa-home-story__image-main {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
}

body .oa-home-story__image-detail {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
}

/* ---------------------------------------------------------
   RECTANGULAR IMAGE WRAPPERS
--------------------------------------------------------- */

body .oa-home-story__image-main .elementor-widget-container,
body .oa-home-story__image-detail .elementor-widget-container {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  border-radius: 18px;
}

/* ---------------------------------------------------------
   RECTANGULAR IMAGES
--------------------------------------------------------- */

body .oa-home-story__image-main img,
body .oa-home-story__image-detail img {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  margin: 0 !important;

  border-radius: 18px;

  object-fit: cover !important;

  box-shadow: 0 14px 34px rgba(22, 22, 22, 0.08);
}

body .oa-home-story__image-main img {
  object-position: center top !important;
}

body .oa-home-story__image-detail img {
  object-position: center !important;
}

/* ---------------------------------------------------------
   CIRCULAR OVERLAPPING IMAGE
--------------------------------------------------------- */

body .oa-home-story__image-circle {
  position: absolute !important;
  z-index: 5 !important;

  top: auto !important;
  right: 2% !important;
  bottom: 0 !important;
  left: auto !important;

  width: 142px !important;
  max-width: 142px !important;
  height: 142px !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  border: 7px solid var(--oa-warm-cream);
  border-radius: 50%;

  box-shadow: 0 15px 36px rgba(22, 22, 22, 0.14);

  transform: none !important;
}

body .oa-home-story__image-circle .elementor-widget-container {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;
  border-radius: 50%;
}

body .oa-home-story__image-circle img {
  display: block !important;

  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  border-radius: 50%;

  object-fit: cover !important;
  object-position: center top !important;
}

/* ---------------------------------------------------------
   STORY CONTENT OVERFLOW CORRECTION
--------------------------------------------------------- */

body .oa-home-story__content,
body .oa-home-story__content.e-con {
  position: relative;
  z-index: 3;

  display: flex !important;

  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 18px !important;

  margin: 0 !important;
  padding: 0 32px 0 0 !important;

  overflow: visible !important;
  box-sizing: border-box;
}

/* Prevent Elementor widgets from exceeding the content column. */

body .oa-home-story__content > .elementor-element,
body .oa-home-story__content .elementor-widget-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* ---------------------------------------------------------
   TITLE WIDTH CORRECTION
--------------------------------------------------------- */

body .oa-home-story__title,
body .oa-home-story__title .elementor-heading-title {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  white-space: normal !important;
  overflow-wrap: normal;
  word-break: normal;
}

/* ---------------------------------------------------------
   COPY WIDTH CORRECTION
--------------------------------------------------------- */

body .oa-home-story__copy,
body .oa-home-story__copy p {
  width: 100% !important;
  max-width: 550px !important;

  margin: 0 !important;

  overflow-wrap: anywhere;
}

/* ---------------------------------------------------------
   CTA CONTAINMENT
--------------------------------------------------------- */

body .oa-home-story__cta {
  width: auto !important;
  max-width: 100% !important;
}

/* =========================================================
   STORY CORRECTION — TABLET
========================================================= */

@media (max-width: 1024px) {
  body .oa-home-story__inner,
  body .oa-home-story__inner.e-con {
    grid-template-columns: minmax(0, 1fr) !important;

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 52px !important;
  }

  body .oa-home-story__visual,
  body .oa-home-story__visual.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 400px 50px !important;

    width: min(100%, 680px) !important;
    min-height: 450px !important;

    margin: 0 auto !important;
  }

  body .oa-home-story__image-main,
  body .oa-home-story__image-detail {
    height: 400px !important;
  }

  body .oa-home-story__image-circle {
    width: 150px !important;
    max-width: 150px !important;
    height: 150px !important;
  }

  body .oa-home-story__content,
  body .oa-home-story__content.e-con {
    max-width: 680px !important;
    padding-right: 0 !important;
  }
}

/* =========================================================
   STORY CORRECTION — MOBILE
========================================================= */

@media (max-width: 767px) {
  body .oa-home-story__inner,
  body .oa-home-story__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 40px !important;
  }

  body .oa-home-story__visual,
  body .oa-home-story__visual.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 310px 55px !important;

    min-height: 365px !important;

    gap: 0 14px !important;
  }

  body .oa-home-story__image-main,
  body .oa-home-story__image-detail {
    width: 100% !important;
    height: 310px !important;
  }

  body .oa-home-story__image-main .elementor-widget-container,
  body .oa-home-story__image-detail .elementor-widget-container,
  body .oa-home-story__image-main img,
  body .oa-home-story__image-detail img {
    border-radius: 15px;
  }

  body .oa-home-story__image-circle {
    right: 1% !important;

    width: 108px !important;
    max-width: 108px !important;
    height: 108px !important;

    border-width: 5px;
  }

  body .oa-home-story__content,
  body .oa-home-story__content.e-con {
    width: 100% !important;
    max-width: 100% !important;

    padding-right: 0 !important;
  }

  body .oa-home-story__cta,
  body .oa-home-story__cta .elementor-widget-container,
  body .oa-home-story__cta .elementor-button {
    width: 100% !important;
  }
}

/* =========================================================
   STORY CORRECTION — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  body .oa-home-story__visual,
  body .oa-home-story__visual.e-con {
    grid-template-rows: 280px 55px !important;

    min-height: 335px !important;

    gap: 0 12px !important;
  }

  body .oa-home-story__image-main,
  body .oa-home-story__image-detail {
    height: 280px !important;
  }

  body .oa-home-story__image-circle {
    width: 96px !important;
    max-width: 96px !important;
    height: 96px !important;
  }
}
/* =========================================================
   ONIGELE HOMEPAGE — HOW IT WORKS
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-process,
.oa-home-process.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 96px 0 108px;

  overflow: hidden;
  background: var(--oa-white);
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-home-process__inner,
.oa-home-process__inner.e-con {
  position: relative;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 32px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   CENTRED HEADER
--------------------------------------------------------- */

.oa-home-process__header,
.oa-home-process__header.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: center;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-process__eyebrow,
.oa-home-process__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-process__grid,
.oa-home-process__grid.e-con {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  width: 100% !important;
  min-width: 0;

  align-items: stretch !important;
  gap: 18px !important;

  margin: 0 !important;
  padding: 0 !important;
}

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

.oa-home-process__card,
.oa-home-process__card.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 224px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 27px 25px 28px !important;

  overflow: hidden;

  border: 1px solid var(--oa-gold-200);
  border-radius: 13px;

  background: var(--oa-white);

  box-shadow: none;
}

/* ---------------------------------------------------------
   PROCESS ICON
--------------------------------------------------------- */

.oa-home-process__icon {
  position: relative;
  z-index: 2;

  width: auto;

  margin: 0 0 28px;

  padding: 0;
}

.oa-home-process__icon .elementor-icon {
  display: inline-flex;

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

  color: var(--oa-orange-500);
  font-size: 27px;
}

/* Remove Elementor icon spacing */

.oa-home-process__icon .elementor-icon-wrapper {
  display: flex;
  line-height: 1;
}

/* ---------------------------------------------------------
   FADED NUMBER
--------------------------------------------------------- */

.oa-home-process__number {
  position: absolute !important;
  z-index: 0;

  top: 18px;
  right: 20px;

  width: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  pointer-events: none;
}

.oa-home-process__number,
.oa-home-process__number .elementor-heading-title {
  color: rgba(160, 20, 109, 0.08) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: 54px !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  letter-spacing: -0.04em !important;
}

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

.oa-home-process__title {
  position: relative;
  z-index: 2;

  width: 100%;

  margin: 0 0 10px;

  padding: 0;
}

.oa-home-process__title,
.oa-home-process__title .elementor-heading-title {
  color: var(--oa-dark) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.32 !important;

  letter-spacing: -0.015em !important;
}

/* ---------------------------------------------------------
   CARD COPY
--------------------------------------------------------- */

.oa-home-process__copy {
  position: relative;
  z-index: 2;

  width: 100%;

  margin: 0;
  padding: 0;
}

.oa-home-process__copy p {
  max-width: 205px;

  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

/* =========================================================
   PROCESS — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-process,
  .oa-home-process.e-con {
    padding: 84px 0 92px;
  }

  .oa-home-process__inner,
  .oa-home-process__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 30px !important;
  }

  .oa-home-process__grid,
  .oa-home-process__grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px !important;
  }

  .oa-home-process__card,
  .oa-home-process__card.e-con {
    min-height: 218px;

    padding: 27px 26px 28px !important;
  }

  .oa-home-process__copy p {
    max-width: 280px;
  }
}

/* =========================================================
   PROCESS — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-process,
  .oa-home-process.e-con {
    padding: 70px 0 76px;
  }

  .oa-home-process__inner,
  .oa-home-process__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 27px !important;
  }

  .oa-home-process__grid,
  .oa-home-process__grid.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 15px !important;
  }

  .oa-home-process__card,
  .oa-home-process__card.e-con {
    min-height: 198px;

    padding: 25px 23px 26px !important;
  }

  .oa-home-process__icon {
    margin-bottom: 25px;
  }

  .oa-home-process__number,
  .oa-home-process__number .elementor-heading-title {
    font-size: 50px !important;
  }

  .oa-home-process__title,
  .oa-home-process__title .elementor-heading-title {
    font-size: 16px !important;
  }

  .oa-home-process__copy p {
    max-width: 300px;

    font-size: 12px !important;
  }
}

/* =========================================================
   PROCESS — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .oa-home-process__card,
  .oa-home-process__card.e-con {
    min-height: 190px;

    padding: 23px 20px 24px !important;
  }

  .oa-home-process__number {
    top: 16px;
    right: 17px;
  }

  .oa-home-process__number,
  .oa-home-process__number .elementor-heading-title {
    font-size: 46px !important;
  }
}
/* =========================================================
   ONIGELE HOMEPAGE — MEET YOUR INSTRUCTORS
   SAME SECTION COMPOSITION AS FEATURED LEARNING
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-instructors,
.oa-home-instructors.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 104px 0 110px;

  overflow: hidden;

  background: var(--oa-white);
}

/* ---------------------------------------------------------
   SECTION INNER
--------------------------------------------------------- */

.oa-home-instructors__inner,
.oa-home-instructors__inner.e-con {
  position: relative;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 46px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   SECTION HEADER
--------------------------------------------------------- */

.oa-home-instructors__head,
.oa-home-instructors__head.e-con {
  display: grid !important;

  grid-template-columns:
    minmax(0, 650px)
    auto;

  width: 100% !important;

  align-items: end !important;
  justify-content: space-between !important;

  gap: 48px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   HEADER INTRO
--------------------------------------------------------- */

.oa-home-instructors__intro,
.oa-home-instructors__intro.e-con {
  display: flex !important;

  width: 100% !important;
  max-width: 650px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 12px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-instructors__eyebrow,
.oa-home-instructors__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-instructors__title,
.oa-home-instructors__title .elementor-heading-title {
  width: 100%;
  max-width: 620px;

  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.5vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;

  letter-spacing: -0.04em !important;
}

/* ---------------------------------------------------------
   SUPPORTING COPY
--------------------------------------------------------- */

.oa-home-instructors__copy {
  width: 100%;
  max-width: 560px;
}

.oa-home-instructors__copy p {
  max-width: 560px;
  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

/* ---------------------------------------------------------
   HEADER CTA
--------------------------------------------------------- */

.oa-home-instructors__cta {
  width: auto;
  align-self: end;
}

.oa-home-instructors__cta .elementor-button {
  min-width: 192px;
  min-height: 48px;

  padding: 15px 22px !important;
}

.oa-home-instructors__cta .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-home-instructors__cta .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* =========================================================
   INSTRUCTOR LOOP GRID
========================================================= */

.oa-home-instructors__grid {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.oa-home-instructors__grid .elementor-loop-container,
.oa-home-instructors__grid .elementor-grid {
  align-items: stretch;
}

.oa-home-instructors__grid .e-loop-item {
  display: flex;

  min-width: 0;
  height: 100%;
}

.oa-home-instructors__grid .e-loop-item > .elementor,
.oa-home-instructors__grid .e-loop-item > .elementor > .elementor-element {
  width: 100%;
  height: 100%;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-instructors,
  .oa-home-instructors.e-con {
    padding: 88px 0 92px;
  }

  .oa-home-instructors__inner,
  .oa-home-instructors__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 40px !important;
  }

  .oa-home-instructors__head,
  .oa-home-instructors__head.e-con {
    grid-template-columns:
      minmax(0, 1fr)
      auto;

    gap: 32px !important;
  }

  .oa-home-instructors__title,
  .oa-home-instructors__title .elementor-heading-title {
    font-size: clamp(36px, 5vw, 48px) !important;
  }
}

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

@media (max-width: 767px) {
  .oa-home-instructors,
  .oa-home-instructors.e-con {
    padding: 72px 0 76px;
  }

  .oa-home-instructors__inner,
  .oa-home-instructors__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 34px !important;
  }

  .oa-home-instructors__head,
  .oa-home-instructors__head.e-con {
    grid-template-columns: minmax(0, 1fr);

    align-items: start !important;

    gap: 24px !important;
  }

  .oa-home-instructors__title,
  .oa-home-instructors__title .elementor-heading-title {
    max-width: 100%;

    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-instructors__copy,
  .oa-home-instructors__copy p {
    max-width: 100%;
  }

  .oa-home-instructors__cta,
  .oa-home-instructors__cta .elementor-widget-container,
  .oa-home-instructors__cta .elementor-button {
    width: 100%;
  }
}
/* =========================================================
   INSTRUCTOR CARD
========================================================= */

.oa-instructor-card,
.oa-instructor-card.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 100%;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

  border: 1px solid var(--oa-border);
  border-radius: 14px;

  background: var(--oa-white);

  box-shadow: 0 8px 23px rgba(22, 22, 22, 0.05);

  transition:
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default),
    transform var(--oa-transition-default);
}

.oa-instructor-card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 15px 34px rgba(22, 22, 22, 0.09);

  transform: translateY(-4px);
}

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

.oa-instructor-card__media,
.oa-instructor-card__media.e-con {
  position: relative;

  display: block !important;

  width: 100% !important;
  height: 205px;
  min-height: 205px;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;
  background: var(--oa-warm-cream);
}

.oa-instructor-card__image,
.oa-instructor-card__image .elementor-widget-container,
.oa-instructor-card__image .elementor-shortcode,
.oa-instructor-card__image-link {
  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
}

.oa-instructor-card__avatar-image {
  display: block;

  width: 100% !important;
  max-width: none !important;
  height: 205px !important;

  margin: 0;

  object-fit: cover;
  object-position: center top;

  transition: transform var(--oa-transition-slow);
}

.oa-instructor-card:hover .oa-instructor-card__avatar-image {
  transform: scale(1.04);
}

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

.oa-instructor-card__content,
.oa-instructor-card__content.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;
  flex: 1 1 auto;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 10px !important;

  margin: 0 !important;
  padding: 15px 14px 14px !important;

  background: var(--oa-white);
}

/* ---------------------------------------------------------
   INSTRUCTOR NAME
--------------------------------------------------------- */

.oa-instructor-card__title {
  width: 100%;
  min-height: 20px;

  margin: 0;
  padding: 0;
}

.oa-instructor-card__title .elementor-shortcode {
  margin: 0;
}

.oa-instructor-card__name-link {
  display: block;

  width: 100%;

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

  font-family: var(--oa-font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;

  letter-spacing: -0.015em;
  text-decoration: none !important;

  transition: color var(--oa-transition-fast);
}

.oa-instructor-card__name-link:hover {
  color: var(--oa-primary-500) !important;
}

/* =========================================================
   META ROW
========================================================= */

.oa-instructor-card__meta,
.oa-instructor-card__meta.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 6px 10px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   META ITEM
--------------------------------------------------------- */

.oa-instructor-card__meta-item,
.oa-instructor-card__meta-item.e-con {
  display: inline-flex !important;

  width: auto !important;

  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 4px !important;

  margin: 0 !important;
  padding: 0 !important;

  white-space: nowrap;
}

.oa-instructor-card__meta-item + .oa-instructor-card__meta-item::before {
  content: "";

  width: 3px;
  height: 3px;
  margin-right: 5px;

  border-radius: 50%;
  background: var(--oa-primary-300);
}

/* ---------------------------------------------------------
   META ICON
--------------------------------------------------------- */

.oa-instructor-card__meta-icon {
  width: auto;
  flex: 0 0 auto;
}

.oa-instructor-card__meta-icon .elementor-icon {
  display: inline-flex;

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

  color: var(--oa-primary-400);
  font-size: 10px;
}

/* ---------------------------------------------------------
   META VALUE
--------------------------------------------------------- */

.oa-instructor-card__meta-value {
  width: auto;
  margin: 0;
}

.oa-instructor-card__meta-value .elementor-shortcode,
.oa-instructor-card__meta-text {
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
}

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

.oa-instructor-card__cta {
  width: 100%;

  margin: auto 0 0;

  padding-top: 2px;
}

.oa-instructor-card__cta .elementor-shortcode {
  width: 100%;
}

.oa-instructor-card__link {
  display: inline-flex;

  width: 100%;
  min-height: 36px;

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

  padding: 9px 11px;

  border: 1px solid var(--oa-primary-300);
  border-radius: 7px;

  background: var(--oa-white);
  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;

  text-align: center;
  text-decoration: none !important;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-instructor-card__link:hover {
  border-color: var(--oa-primary-500);

  background: var(--oa-primary-50);
  color: var(--oa-primary-600) !important;

  transform: translateY(-1px);
}

/* =========================================================
   INSTRUCTORS — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-instructors__view-all,
  .oa-home-instructors__view-all .elementor-widget-container,
  .oa-home-instructors__view-all .elementor-button {
    width: 100%;
  }

  .oa-instructor-card__media,
  .oa-instructor-card__avatar-image {
    height: 300px !important;
    min-height: 300px;
  }

  .oa-instructor-card__content,
  .oa-instructor-card__content.e-con {
    padding: 17px 16px 16px !important;
  }

  .oa-instructor-card__name-link {
    font-size: 17px;
  }

  .oa-instructor-card__meta-value .elementor-shortcode,
  .oa-instructor-card__meta-text {
    font-size: 10px;
  }

  .oa-instructor-card__link {
    min-height: 40px;
    font-size: 11px;
  }
}

/* =========================================================
   INSTRUCTORS — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .oa-instructor-card__media,
  .oa-instructor-card__avatar-image {
    height: 265px !important;
    min-height: 265px;
  }

  .oa-instructor-card__meta,
  .oa-instructor-card__meta.e-con {
    gap: 6px 8px !important;
  }
}
/* =========================================================
   ONIGELE HOMEPAGE — THE ART IN PRACTICE
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-gallery,
.oa-home-gallery.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 104px 0 110px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(242, 176, 30, 0.08) 0%,
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--oa-gold-50) 0%,
      var(--oa-warm-cream) 52%,
      #fffaf5 100%
    );
}

/* Restrained soft plum glow */

.oa-home-gallery::before {
  content: "";
  position: absolute;
  z-index: 0;

  right: -120px;
  bottom: -140px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(160, 20, 109, 0.045);
  filter: blur(18px);

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-home-gallery__inner,
.oa-home-gallery__inner.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 42px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.oa-home-gallery__header,
.oa-home-gallery__header.e-con {
  display: flex !important;

  width: 100% !important;
  max-width: 760px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 11px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-gallery__eyebrow,
.oa-home-gallery__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-gallery__title,
.oa-home-gallery__title .elementor-heading-title {
  width: 100%;
  max-width: 720px;

  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.6vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;

  letter-spacing: -0.04em !important;
  text-align: center;
}

/* ---------------------------------------------------------
   SUPPORTING COPY
--------------------------------------------------------- */

.oa-home-gallery__copy {
  width: 100%;
  max-width: 580px;

  margin: 0 auto;
}

.oa-home-gallery__copy p {
  max-width: 580px;
  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;

  text-align: center;
}

/* =========================================================
   CAROUSEL
========================================================= */

.oa-home-gallery__carousel {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

/*
  Elementor has changed some carousel wrappers between
  releases. These selectors keep the slides at equal height.
*/

.oa-home-gallery__carousel .swiper-wrapper {
  align-items: stretch;
}

.oa-home-gallery__carousel .swiper-slide {
  display: flex;

  height: auto;
  min-width: 0;
}

.oa-home-gallery__carousel .swiper-slide > .e-con,
.oa-home-gallery__carousel .swiper-slide > .elementor-element,
.oa-home-gallery__carousel .swiper-slide > div {
  width: 100%;
  height: 100%;
}

/* Remove any slide background inherited from Elementor */

.oa-home-gallery__carousel .swiper-slide {
  background: transparent;
}

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

.oa-gallery-card,
.oa-gallery-card.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  height: 340px;
  min-height: 340px;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-end !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

  border: 1px solid rgba(236, 231, 226, 0.8);
  border-radius: 17px;

  background: var(--oa-dark);

  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.09);

  transition:
    box-shadow var(--oa-transition-default),
    transform var(--oa-transition-default);
}

.oa-gallery-card:hover {
  box-shadow: 0 20px 42px rgba(22, 22, 22, 0.14);

  transform: translateY(-4px);
}

/* Soft dark gradient beneath the caption */

.oa-gallery-card::after {
  content: "";
  position: absolute;
  z-index: 1;

  right: 0;
  bottom: 0;
  left: 0;

  height: 44%;

  background: linear-gradient(
    to top,
    rgba(22, 22, 22, 0.42) 0%,
    rgba(22, 22, 22, 0.08) 58%,
    transparent 100%
  );

  pointer-events: none;
}

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

.oa-gallery-card__image {
  position: absolute;
  z-index: 0;

  inset: 0;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;
}

.oa-gallery-card__image .elementor-widget-container {
  width: 100%;
  height: 100%;
}

.oa-gallery-card__image img {
  display: block;

  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  object-fit: cover;
  object-position: center top;

  transition:
    transform var(--oa-transition-slow),
    filter var(--oa-transition-slow);
}

.oa-gallery-card:hover .oa-gallery-card__image img {
  transform: scale(1.045);
}

/* =========================================================
   FLOATING CAPTION
========================================================= */

.oa-gallery-card__caption,
.oa-gallery-card__caption.e-con {
  position: absolute;
  z-index: 3;

  right: 16px;
  bottom: 16px;
  left: 16px;

  display: flex !important;

  width: auto !important;
  min-height: 52px;

  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 12px !important;

  margin: 0 !important;

  padding: 8px 9px 8px 16px !important;

  overflow: visible;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;

  background: rgba(22, 22, 22, 0.76);

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

  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.18);
}

/* =========================================================
   CAPTION TITLE
========================================================= */

.oa-gallery-card__title {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;

  margin: 0;
  padding: 0;
}

.oa-gallery-card__title,
.oa-gallery-card__title .elementor-heading-title {
  color: var(--oa-white) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;

  letter-spacing: -0.005em !important;
}

/* =========================================================
   LIGHTBOX EYE BUTTON
========================================================= */

.oa-gallery-card__view {
  width: 36px !important;
  min-width: 36px;
  height: 36px;

  flex: 0 0 36px;

  margin: 0;
  padding: 0;
}

.oa-gallery-card__view .elementor-widget-container,
.oa-gallery-card__view .elementor-icon-wrapper {
  display: flex;

  width: 100%;
  height: 100%;

  align-items: center;
  justify-content: center;
}

.oa-gallery-card__view .elementor-icon {
  display: inline-flex;

  width: 36px;
  height: 36px;

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

  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: var(--oa-white);

  font-size: 13px;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-gallery-card__view .elementor-icon:hover {
  border-color: var(--oa-gold-400);

  background: var(--oa-gold-500);
  color: var(--oa-dark);

  transform: scale(1.05);
}

/* Remove focus ambiguity while preserving keyboard focus */

.oa-gallery-card__view a:focus-visible .elementor-icon {
  outline: 2px solid var(--oa-gold-400);
  outline-offset: 3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-gallery,
  .oa-home-gallery.e-con {
    padding: 88px 0 92px;
  }

  .oa-home-gallery__inner,
  .oa-home-gallery__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 38px !important;
  }

  .oa-home-gallery__title,
  .oa-home-gallery__title .elementor-heading-title {
    font-size: clamp(36px, 5vw, 48px) !important;
  }

  .oa-gallery-card,
  .oa-gallery-card.e-con {
    height: 370px;
    min-height: 370px;
  }
}

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

@media (max-width: 767px) {
  .oa-home-gallery,
  .oa-home-gallery.e-con {
    padding: 72px 0 76px;
  }

  .oa-home-gallery__inner,
  .oa-home-gallery__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 34px !important;
  }

  .oa-home-gallery__header,
  .oa-home-gallery__header.e-con {
    max-width: 100%;
  }

  .oa-home-gallery__title,
  .oa-home-gallery__title .elementor-heading-title {
    max-width: 100%;

    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-gallery__copy,
  .oa-home-gallery__copy p {
    max-width: 100%;
  }

  .oa-gallery-card,
  .oa-gallery-card.e-con {
    height: 430px;
    min-height: 430px;
  }

  .oa-gallery-card__caption,
  .oa-gallery-card__caption.e-con {
    right: 14px;
    bottom: 14px;
    left: 14px;

    min-height: 54px;

    padding: 8px 9px 8px 16px !important;
  }

  .oa-gallery-card__title,
  .oa-gallery-card__title .elementor-heading-title {
    font-size: 13px !important;
  }
}

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

@media (max-width: 390px) {
  .oa-gallery-card,
  .oa-gallery-card.e-con {
    height: 390px;
    min-height: 390px;
  }

  .oa-gallery-card__caption,
  .oa-gallery-card__caption.e-con {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}
/* =========================================================
   ONIGELE HOMEPAGE — FREQUENTLY ASKED QUESTIONS
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-home-faq,
.oa-home-faq.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 104px 0 132px;

  overflow: hidden;

  background: var(--oa-white);
}

/* ---------------------------------------------------------
   SECTION INNER
--------------------------------------------------------- */

.oa-home-faq__inner,
.oa-home-faq__inner.e-con {
  position: relative;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 42px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

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

.oa-home-faq__header,
.oa-home-faq__header.e-con {
  display: flex !important;

  width: 100% !important;
  max-width: 720px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 11px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-home-faq__eyebrow,
.oa-home-faq__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

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

.oa-home-faq__title,
.oa-home-faq__title .elementor-heading-title {
  width: 100%;
  max-width: 700px;

  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.6vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;

  letter-spacing: -0.04em !important;
  text-align: center;
}

/* ---------------------------------------------------------
   SUPPORTING COPY
--------------------------------------------------------- */

.oa-home-faq__copy {
  width: 100%;
  max-width: 560px;

  margin: 0 auto;
}

.oa-home-faq__copy p {
  max-width: 560px;
  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;

  text-align: center;
}

/* =========================================================
   FAQ CONTENT GRID
========================================================= */

.oa-home-faq__grid,
.oa-home-faq__grid.e-con {
  display: grid !important;

  grid-template-columns:
    320px
    minmax(0, 1fr);

  width: 100% !important;
  min-width: 0;

  align-items: start !important;
  gap: 30px !important;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-home-faq__contacts,
.oa-home-faq__accordion-wrap {
  min-width: 0 !important;
  max-width: 100% !important;
}

/* =========================================================
   CONTACT CARD COLUMN
========================================================= */

.oa-home-faq__contacts,
.oa-home-faq__contacts.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 11px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   CONTACT CARD
--------------------------------------------------------- */

.oa-home-faq__contact,
.oa-home-faq__contact.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 72px;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 13px !important;

  margin: 0 !important;

  padding: 13px 15px !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 7px 20px rgba(22, 22, 22, 0.045);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-home-faq__contact:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 12px 27px rgba(22, 22, 22, 0.075);

  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   CONTACT ICON WRAPPER
--------------------------------------------------------- */

.oa-home-faq__contact-icon-wrap,
.oa-home-faq__contact-icon-wrap.e-con {
  display: flex !important;

  width: 42px !important;
  min-width: 42px;
  height: 42px;

  flex: 0 0 42px !important;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 50%;

  background: var(--oa-primary-50);
}

/* ---------------------------------------------------------
   CONTACT ICON
--------------------------------------------------------- */

.oa-home-faq__contact-icon {
  width: auto;
  margin: 0;
}

.oa-home-faq__contact-icon .elementor-icon {
  display: inline-flex;

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

  color: var(--oa-primary-500);
  font-size: 17px;
}

/* ---------------------------------------------------------
   CONTACT CONTENT
--------------------------------------------------------- */

.oa-home-faq__contact-content,
.oa-home-faq__contact-content.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 3px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   CONTACT LABEL
--------------------------------------------------------- */

.oa-home-faq__contact-label,
.oa-home-faq__contact-label .elementor-heading-title {
  width: 100%;
  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

/* ---------------------------------------------------------
   CONTACT VALUE
--------------------------------------------------------- */

.oa-home-faq__contact-value,
.oa-home-faq__contact-value .elementor-heading-title {
  width: 100%;
  min-width: 0;

  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;

  overflow-wrap: anywhere;
}

.oa-home-faq__contact-value a {
  color: inherit !important;
  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-home-faq__contact-value a:hover {
  color: var(--oa-primary-500) !important;
}

/* =========================================================
   ACCORDION WRAPPER
========================================================= */

.oa-home-faq__accordion-wrap,
.oa-home-faq__accordion-wrap.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   NESTED ACCORDION ROOT
========================================================= */

.oa-home-faq__accordion {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border: 1px solid var(--oa-border);
  border-radius: 14px;

  background: var(--oa-white);

  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.05);
}

/* Remove external space between Elementor accordion items */

.oa-home-faq__accordion .e-n-accordion {
  gap: 0 !important;
}

/* =========================================================
   INDIVIDUAL ACCORDION ITEMS
========================================================= */

.oa-home-faq__accordion .e-n-accordion-item {
  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-bottom: 1px solid var(--oa-border) !important;

  border-radius: 0 !important;
  background: var(--oa-white);
}

.oa-home-faq__accordion .e-n-accordion-item:last-child {
  border-bottom: 0 !important;
}

/* =========================================================
   ACCORDION TITLE / SUMMARY
========================================================= */

.oa-home-faq__accordion .e-n-accordion-item-title {
  display: flex !important;

  width: 100%;
  min-height: 61px;

  align-items: center !important;
  justify-content: space-between !important;

  gap: 20px;

  margin: 0 !important;

  padding: 18px 21px !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: var(--oa-white) !important;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast);
}

/* Remove the browser's default disclosure marker */

.oa-home-faq__accordion .e-n-accordion-item-title::-webkit-details-marker {
  display: none;
}

.oa-home-faq__accordion .e-n-accordion-item-title::marker {
  display: none;
  content: "";
}

/* Hover state */

.oa-home-faq__accordion .e-n-accordion-item-title:hover {
  background: var(--oa-neutral-50) !important;
}

/* Open state */

.oa-home-faq__accordion .e-n-accordion-item[open] > .e-n-accordion-item-title {
  background: var(--oa-white) !important;
}

/* =========================================================
   ACCORDION TITLE TEXT
========================================================= */

.oa-home-faq__accordion .e-n-accordion-item-title-text {
  min-width: 0;

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

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;

  text-align: left;
}

.oa-home-faq__accordion
  .e-n-accordion-item[open]
  .e-n-accordion-item-title-text {
  color: var(--oa-primary-700) !important;
}

/* =========================================================
   ACCORDION PLUS ICON
========================================================= */

.oa-home-faq__accordion .e-n-accordion-item-title-icon {
  display: inline-flex !important;

  width: 20px;
  min-width: 20px;
  height: 20px;

  flex: 0 0 20px;

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

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

  font-size: 13px;

  transform: rotate(0deg);

  transition:
    color var(--oa-transition-fast),
    transform 280ms ease;
}

.oa-home-faq__accordion
  .e-n-accordion-item[open]
  > .e-n-accordion-item-title
  .e-n-accordion-item-title-icon {
  color: var(--oa-primary-500) !important;

  transform: rotate(45deg);
}

/*
  Elementor may output separate open and closed icon spans.
  Both remain visually controlled by the parent rotation.
*/

.oa-home-faq__accordion .e-opened,
.oa-home-faq__accordion .e-closed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   ACCORDION CONTENT
========================================================= */

.oa-home-faq__accordion .e-n-accordion-item > .e-con {
  width: 100% !important;

  margin: 0 !important;

  padding: 0 54px 20px 21px !important;

  border: 0 !important;
  background: var(--oa-white) !important;
}

/* ---------------------------------------------------------
   ANSWER TEXT
--------------------------------------------------------- */

.oa-home-faq__answer {
  width: 100%;

  margin: 0;
  padding: 0;
}

.oa-home-faq__answer p {
  max-width: 720px;
  margin: 0;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* =========================================================
   LEGACY ACCORDION FALLBACK

   These rules only apply if Elementor renders the legacy
   Accordion rather than the nested version.
========================================================= */

.oa-home-faq__accordion .elementor-accordion-item {
  border: 0 !important;
  border-bottom: 1px solid var(--oa-border) !important;
}

.oa-home-faq__accordion .elementor-accordion-item:last-child {
  border-bottom: 0 !important;
}

.oa-home-faq__accordion .elementor-tab-title {
  min-height: 61px;

  padding: 18px 21px !important;

  border: 0 !important;

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

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.oa-home-faq__accordion .elementor-tab-content {
  padding: 0 54px 20px 21px !important;

  border: 0 !important;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.oa-home-faq__accordion .elementor-accordion-icon {
  transition: transform 280ms ease;
}

.oa-home-faq__accordion
  .elementor-tab-title.elementor-active
  .elementor-accordion-icon {
  transform: rotate(45deg);
}

/* =========================================================
   FAQ — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-faq,
  .oa-home-faq.e-con {
    padding: 88px 0 100px;
  }

  .oa-home-faq__inner,
  .oa-home-faq__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 38px !important;
  }

  .oa-home-faq__title,
  .oa-home-faq__title .elementor-heading-title {
    font-size: clamp(36px, 5vw, 48px) !important;
  }

  .oa-home-faq__grid,
  .oa-home-faq__grid.e-con {
    grid-template-columns:
      270px
      minmax(0, 1fr);

    gap: 24px !important;
  }
}

/* =========================================================
   FAQ — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-faq,
  .oa-home-faq.e-con {
    padding: 72px 0 82px;
  }

  .oa-home-faq__inner,
  .oa-home-faq__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 34px !important;
  }

  .oa-home-faq__header,
  .oa-home-faq__header.e-con {
    max-width: 100%;
  }

  .oa-home-faq__title,
  .oa-home-faq__title .elementor-heading-title {
    max-width: 100%;

    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-home-faq__copy,
  .oa-home-faq__copy p {
    max-width: 100%;
  }

  .oa-home-faq__grid,
  .oa-home-faq__grid.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 28px !important;
  }

  .oa-home-faq__contacts,
  .oa-home-faq__contacts.e-con {
    display: grid !important;

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

    gap: 11px !important;
  }

  .oa-home-faq__contact,
  .oa-home-faq__contact.e-con {
    min-height: 76px;
  }

  .oa-home-faq__accordion .e-n-accordion-item-title {
    min-height: 60px;

    padding: 17px 17px !important;
  }

  .oa-home-faq__accordion .e-n-accordion-item > .e-con {
    padding: 0 44px 19px 17px !important;
  }

  .oa-home-faq__accordion .e-n-accordion-item-title-text {
    font-size: 12px !important;
  }

  .oa-home-faq__answer p {
    font-size: 12px !important;
  }
}

/* =========================================================
   FAQ — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .oa-home-faq__contacts,
  .oa-home-faq__contacts.e-con {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 390px) {
  .oa-home-faq__accordion .e-n-accordion-item-title {
    gap: 14px;

    padding: 16px 15px !important;
  }

  .oa-home-faq__accordion .e-n-accordion-item > .e-con {
    padding: 0 39px 18px 15px !important;
  }
}
/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-home-section {
    padding-block: 88px;
  }

  .oa-home-hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .oa-home-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px !important;
  }

  .oa-home-hero__content {
    max-width: 720px;
  }

  .oa-home-hero__visual {
    width: min(100%, 650px);
    min-height: 560px;
    margin-inline: auto;
  }

  .oa-home-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oa-home-proof__item:nth-child(2) {
    border-right: 0;
  }

  .oa-home-proof__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--oa-border);
  }

  .oa-home-why__inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 48px !important;
  }

  .oa-home-story__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-story__visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .oa-home-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oa-home-faq__grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .oa-home-section {
    padding-block: 72px;
  }

  .oa-home-section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 26px !important;
    margin-bottom: 36px;
  }

  .oa-home-section-head__cta,
  .oa-home-section-head__cta .elementor-button {
    width: 100%;
  }

  .oa-home-hero {
    padding-top: 130px;
    padding-bottom: 76px;
  }

  .oa-home-hero__title,
  .oa-home-hero__title .elementor-heading-title {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .oa-home-hero__actions {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .oa-home-hero__actions .elementor-widget-button,
  .oa-home-hero__actions .elementor-button {
    width: 100%;
  }

  .oa-home-hero__benefits {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px !important;
  }

  .oa-home-hero__visual {
    min-height: 430px;
  }

  .oa-home-hero__visual::before {
    top: 20px;
    left: 6%;
    width: 88%;
    height: auto;
    aspect-ratio: 1;
  }

  .oa-home-hero__image-main {
    left: 3%;
    width: 82%;
  }

  .oa-home-hero__image-side {
    width: 118px;
    border-width: 4px;
    border-radius: 20px;
  }

  .oa-home-hero__image-side--one {
    top: 14px;
    right: 0;
  }

  .oa-home-hero__image-side--two {
    right: 0;
    bottom: 8px;
  }

  .oa-home-proof {
    margin-top: -30px;
  }

  .oa-home-proof__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-proof__item {
    border-right: 0;
    border-bottom: 1px solid var(--oa-border);
  }

  .oa-home-proof__item:last-child {
    border-bottom: 0;
  }

  .oa-home-courses {
    padding-top: 96px;
  }

  .oa-course-card__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-why__inner {
    padding: 32px 24px !important;
  }

  .oa-home-why__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-story__visual {
    min-height: 400px;
  }

  .oa-home-story__image-main img,
  .oa-home-story__image-detail img {
    height: 340px;
  }

  .oa-home-story__image-circle {
    width: 110px;
  }

  .oa-home-process__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-process__card {
    min-height: 220px;
  }

  .oa-home-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-home-faq__contacts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .oa-home-faq__contacts {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   ONIGELE ACADEMY — COURSES PAGE
========================================================= */

.oa-courses-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--oa-white);
}

/* =========================================================
   SECTION 01 — COURSES HERO
========================================================= */

.oa-courses-hero,
.oa-courses-hero.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at -6% 63%,
      rgba(160, 20, 109, 0.15) 0%,
      transparent 26%
    ),
    radial-gradient(
      circle at 72% 5%,
      rgba(242, 176, 30, 0.11) 0%,
      transparent 23%
    ),
    linear-gradient(135deg, var(--oa-warm-cream) 0%, #fff5ec 52%, #fffaf5 100%);
}

/* Decorative gold curve */

.oa-courses-hero::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: 96px;
  right: -126px;

  width: 310px;
  height: 235px;

  border: 1.5px solid rgba(242, 176, 30, 0.72);
  border-radius: 50%;

  transform: rotate(-19deg);
  pointer-events: none;
}

.oa-courses-hero::after {
  content: "";
  position: absolute;
  z-index: 1;

  top: 228px;
  right: 39px;

  width: 9px;
  height: 9px;

  border-radius: 1px;

  background: var(--oa-gold-400);

  opacity: 0.7;
  transform: rotate(45deg);

  pointer-events: none;
}

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

.oa-courses-hero__inner,
.oa-courses-hero__inner.e-con {
  position: relative;
  z-index: 2;

  display: grid !important;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(430px, 1.05fr);

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 650px;

  align-items: end !important;
  gap: 64px !important;

  margin: 0 auto !important;

  padding: 100px 0 42px !important;
}

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

.oa-courses-hero__content,
.oa-courses-hero__content.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 20px !important;

  margin: 0 !important;
  padding: 0 0 80px !important;
}

/* Eyebrow */

.oa-courses-hero__eyebrow,
.oa-courses-hero__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

/* Hero title */

.oa-courses-hero__title,
.oa-courses-hero__title .elementor-heading-title {
  width: 100%;
  max-width: 680px;

  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(52px, 5vw, 78px) !important;
  font-weight: 800 !important;
  line-height: 0.99 !important;

  letter-spacing: -0.047em !important;
}

/* Hero copy */

.oa-courses-hero__copy {
  width: 100%;
  max-width: 555px;
}

.oa-courses-hero__copy p {
  max-width: 555px;
  margin: 0;

  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.67 !important;
}

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

.oa-courses-hero__visual,
.oa-courses-hero__visual.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-height: 560px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

.oa-courses-hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;

  right: 7%;
  bottom: -9%;

  width: 86%;
  aspect-ratio: 1;

  border-radius: 50%;

  background: radial-gradient(
    circle at 50% 45%,
    rgba(247, 236, 243, 0.4),
    rgba(240, 217, 232, 0.72)
  );

  pointer-events: none;
}

.oa-courses-hero__image {
  position: relative;
  z-index: 2;

  width: 100%;

  margin: 0;
  padding: 0;
}

.oa-courses-hero__image .elementor-widget-container {
  display: flex;

  width: 100%;

  align-items: flex-end;
  justify-content: center;
}

.oa-courses-hero__image img {
  display: block;

  width: 100%;
  max-width: 660px;
  max-height: 575px;

  margin: 0 auto;

  object-fit: contain;
  object-position: bottom center;
}

/* =========================================================
   SECTION 02 — SEARCH AND FILTER
========================================================= */

.oa-course-filter,
.oa-course-filter.e-con {
  position: relative;
  z-index: 8;

  width: 100%;
  max-width: none;

  margin: -52px 0 0;

  padding: 0;

  overflow: visible;
  background: transparent;
}

.oa-course-filter__inner,
.oa-course-filter__inner.e-con {
  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;

  margin: 0 auto !important;

  padding: 24px !important;

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

  background: rgba(255, 255, 255, 0.97);

  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.1);

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

.oa-course-filter__shortcode,
.oa-course-filter__shortcode .elementor-widget-container,
.oa-course-filter__shortcode .elementor-shortcode {
  width: 100%;
}

/* ---------------------------------------------------------
   FILTER FORM
--------------------------------------------------------- */

.oa-course-filter__form {
  display: grid;

  grid-template-columns:
    minmax(240px, 1.5fr)
    minmax(150px, 0.85fr)
    minmax(135px, 0.72fr)
    minmax(130px, 0.72fr)
    132px;

  width: 100%;

  align-items: stretch;
  gap: 14px;

  margin: 0;
  padding: 0;
}

/* ---------------------------------------------------------
   FIELDS
--------------------------------------------------------- */

.oa-course-filter__field {
  position: relative;

  display: flex;

  width: 100%;
  min-width: 0;
  min-height: 52px;

  align-items: center;

  margin: 0;
  padding: 0;

  border: 1px solid var(--oa-border);
  border-radius: 9px;

  background: var(--oa-white);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-course-filter__field:focus-within {
  border-color: var(--oa-primary-400);

  box-shadow: 0 0 0 3px rgba(160, 20, 109, 0.08);
}

/* Search icon */

.oa-course-filter__search-icon {
  position: absolute;
  z-index: 2;

  top: 50%;
  left: 16px;

  display: inline-flex;

  width: 19px;
  height: 19px;

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

  color: var(--oa-neutral-700);

  transform: translateY(-50%);

  pointer-events: none;
}

.oa-course-filter__search-icon svg {
  display: block;

  width: 100%;
  height: 100%;
}

/* Input */

.oa-course-filter__input {
  width: 100%;
  height: 50px;

  margin: 0;

  padding: 0 15px 0 47px;

  border: 0;
  outline: 0;

  background: transparent;
  color: var(--oa-dark);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.oa-course-filter__input::placeholder {
  color: var(--oa-neutral-400);
  opacity: 1;
}

/* Select */

.oa-course-filter__select {
  width: 100%;
  height: 50px;

  margin: 0;

  padding: 0 42px 0 15px;

  border: 0;
  outline: 0;

  background-color: transparent;
  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;

  cursor: pointer;
}

/* Search button */

.oa-course-filter__submit {
  display: inline-flex;

  width: 100%;
  min-height: 52px;

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

  margin: 0;

  padding: 14px 20px;

  border: 1px solid transparent;
  border-radius: 9px;

  background: var(--oa-gradient-primary);
  color: var(--oa-white);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-filter__submit:hover {
  background: var(--oa-gradient-primary-hover);

  box-shadow: 0 9px 22px rgba(160, 20, 109, 0.18);

  transform: translateY(-1px);
}

/* =========================================================
   SECTION 03 — COURSE LISTING
========================================================= */

.oa-courses-listing,
.oa-courses-listing.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 68px 0 82px;

  overflow: hidden;

  background: var(--oa-white);
}

.oa-courses-listing__inner,
.oa-courses-listing__inner.e-con {
  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 34px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   LISTING HEADER
--------------------------------------------------------- */

.oa-courses-listing__header,
.oa-courses-listing__header.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: space-between !important;

  gap: 30px !important;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-courses-listing__title,
.oa-courses-listing__title .elementor-heading-title {
  margin: 0;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.4vw, 50px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;

  letter-spacing: -0.04em !important;
}

.oa-courses-listing__count {
  width: auto;

  margin: 0;
  padding: 0 0 5px;
}

.oa-courses-listing__count .elementor-shortcode,
.oa-courses-listing__result-text {
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;

  white-space: nowrap;
}

/* ---------------------------------------------------------
   LOOP GRID
--------------------------------------------------------- */

.oa-courses-listing__grid {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

.oa-courses-listing__grid .elementor-loop-container,
.oa-courses-listing__grid .elementor-grid {
  align-items: stretch;
}

.oa-courses-listing__grid .e-loop-item {
  display: flex;

  min-width: 0;
  height: 100%;
}

.oa-courses-listing__grid .e-loop-item > .elementor,
.oa-courses-listing__grid .e-loop-item > .elementor > .elementor-element {
  width: 100%;
  height: 100%;
}

/*
  Page-scoped course-card adjustments. The Loop Item itself
  remains unchanged.
*/

.oa-courses-listing__grid .oa-course-card__media,
.oa-courses-listing__grid .oa-course-card__image,
.oa-courses-listing__grid .oa-course-card__image img {
  height: 245px;
  min-height: 245px;
}

.oa-courses-listing__grid .oa-course-card__content,
.oa-courses-listing__grid .oa-course-card__content.e-con {
  padding: 20px 19px 19px !important;
}

.oa-courses-listing__grid .oa-course-card__title,
.oa-courses-listing__grid .oa-course-card__title .elementor-heading-title {
  min-height: 46px;

  font-size: 18px !important;
}

/* Hide homepage-only Featured badge treatment */

.oa-courses-listing__grid .oa-course-card__badge {
  display: none !important;
}

/* ---------------------------------------------------------
   PAGINATION
--------------------------------------------------------- */

.oa-courses-listing__grid .elementor-pagination {
  display: flex;

  width: 100%;

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

  gap: 10px;

  margin: 44px 0 0;

  padding: 0;
}

.oa-courses-listing__grid .elementor-pagination .page-numbers {
  display: inline-flex;

  min-width: 42px;
  height: 42px;

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

  padding: 0 13px;

  border: 1px solid var(--oa-border);
  border-radius: 8px;

  background: var(--oa-white);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast);
}

.oa-courses-listing__grid .elementor-pagination .page-numbers.prev,
.oa-courses-listing__grid .elementor-pagination .page-numbers.next {
  min-width: 104px;
}

.oa-courses-listing__grid .elementor-pagination .page-numbers.current {
  border-color: var(--oa-primary-500);

  background: var(--oa-primary-700);
  color: var(--oa-white);
}

.oa-courses-listing__grid .elementor-pagination a.page-numbers:hover {
  border-color: var(--oa-primary-400);

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);
}

/* Nothing found */

.oa-courses-listing__grid .e-loop-nothing-found-message {
  width: 100%;

  padding: 40px 24px;

  border: 1px solid var(--oa-border);
  border-radius: 14px;

  background: var(--oa-warm-cream);
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 14px;
  line-height: 1.6;

  text-align: center;
}

/* =========================================================
   SECTION 04 — GUIDANCE CTA
========================================================= */

.oa-courses-guidance,
.oa-courses-guidance.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 0 0 108px;

  overflow: visible;

  background: var(--oa-white);
}

.oa-courses-guidance__inner,
.oa-courses-guidance__inner.e-con {
  position: relative;
  isolation: isolate;

  display: grid !important;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 245px;

  align-items: center !important;
  gap: 48px !important;

  margin: 0 auto !important;

  padding: 48px 54px !important;

  overflow: hidden;

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(183, 76, 144, 0.23) 0%,
      transparent 25%
    ),
    linear-gradient(135deg, var(--oa-primary-900) 0%, #600a40 58%, #3f082b 100%);

  box-shadow: 0 18px 46px rgba(77, 10, 52, 0.16);
}

/* Gold decorative curve */

.oa-courses-guidance__inner::before {
  content: "";
  position: absolute;
  z-index: -1;

  right: -82px;
  bottom: -55px;

  width: 215px;
  height: 175px;

  border: 1.5px dashed rgba(242, 176, 30, 0.72);
  border-radius: 50%;

  transform: rotate(-18deg);

  pointer-events: none;
}

/* ---------------------------------------------------------
   CTA CONTENT
--------------------------------------------------------- */

.oa-courses-guidance__content,
.oa-courses-guidance__content.e-con {
  display: flex !important;

  width: 100% !important;
  max-width: 620px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 12px !important;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-courses-guidance__eyebrow,
.oa-courses-guidance__eyebrow .elementor-heading-title {
  margin: 0;

  color: var(--oa-gold-500) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.09em !important;
  text-transform: uppercase;
}

.oa-courses-guidance__title,
.oa-courses-guidance__title .elementor-heading-title {
  margin: 0;

  color: var(--oa-white) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(36px, 3.3vw, 50px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;

  letter-spacing: -0.04em !important;
}

.oa-courses-guidance__copy {
  width: 100%;
  max-width: 520px;
}

.oa-courses-guidance__copy p {
  max-width: 520px;
  margin: 0;

  color: rgba(255, 255, 255, 0.75) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

/* ---------------------------------------------------------
   CTA BUTTON
--------------------------------------------------------- */

.oa-courses-guidance__cta {
  position: relative;
  z-index: 3;

  width: auto;
}

.oa-courses-guidance__cta .elementor-button {
  display: inline-flex;

  min-width: 222px;
  min-height: 58px;

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

  padding: 17px 24px !important;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 9px;

  background: var(--oa-warm-cream);
  color: var(--oa-primary-900);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 10px 26px rgba(22, 22, 22, 0.14);

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-courses-guidance__cta .elementor-button-icon {
  color: var(--oa-orange-500);
}

.oa-courses-guidance__cta .elementor-button:hover {
  background: var(--oa-gold-50);
  color: var(--oa-primary-700);

  transform: translateY(-2px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-courses-hero__inner,
  .oa-courses-hero__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    min-height: auto;

    gap: 40px !important;

    padding: 150px 0 55px !important;
  }

  .oa-courses-hero__content,
  .oa-courses-hero__content.e-con {
    max-width: 720px;
    padding-bottom: 0 !important;
  }

  .oa-courses-hero__visual,
  .oa-courses-hero__visual.e-con {
    width: min(100%, 670px) !important;
    min-height: 520px;

    margin-inline: auto !important;
  }

  .oa-courses-hero__image img {
    max-height: 530px;
  }

  .oa-course-filter {
    margin-top: -34px;
  }

  .oa-course-filter__inner,
  .oa-course-filter__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    padding: 21px !important;
  }

  .oa-course-filter__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oa-course-filter__field--search {
    grid-column: 1 / -1;
  }

  .oa-course-filter__submit {
    width: 100%;
  }

  .oa-courses-listing__inner,
  .oa-courses-listing__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;
  }

  .oa-courses-listing__grid .oa-course-card__media,
  .oa-courses-listing__grid .oa-course-card__image,
  .oa-courses-listing__grid .oa-course-card__image img {
    height: 235px;
    min-height: 235px;
  }

  .oa-courses-guidance,
  .oa-courses-guidance.e-con {
    padding-bottom: 92px;
  }

  .oa-courses-guidance__inner,
  .oa-courses-guidance__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    gap: 32px !important;

    padding: 44px 42px !important;
  }

  .oa-courses-guidance__cta {
    justify-self: start;
  }
}

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

@media (max-width: 767px) {
  .oa-courses-hero::after {
    display: none;
  }

  .oa-courses-hero__inner,
  .oa-courses-hero__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 32px !important;

    padding: 128px 0 48px !important;
  }

  .oa-courses-hero__content,
  .oa-courses-hero__content.e-con {
    gap: 18px !important;
  }

  .oa-courses-hero__title,
  .oa-courses-hero__title .elementor-heading-title {
    font-size: clamp(42px, 12vw, 57px) !important;
  }

  .oa-courses-hero__copy p {
    font-size: 15px !important;
  }

  .oa-courses-hero__visual,
  .oa-courses-hero__visual.e-con {
    min-height: 405px;
  }

  .oa-courses-hero__image {
    width: 110%;
    margin-right: -5%;
  }

  .oa-courses-hero__image img {
    max-height: 420px;
  }

  .oa-course-filter,
  .oa-course-filter.e-con {
    margin-top: -25px;
  }

  .oa-course-filter__inner,
  .oa-course-filter__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    padding: 17px !important;

    border-radius: 15px;
  }

  .oa-course-filter__form {
    grid-template-columns: minmax(0, 1fr);

    gap: 11px;
  }

  .oa-course-filter__field--search {
    grid-column: auto;
  }

  .oa-course-filter__field,
  .oa-course-filter__submit {
    min-height: 50px;
  }

  .oa-courses-listing,
  .oa-courses-listing.e-con {
    padding: 58px 0 70px;
  }

  .oa-courses-listing__inner,
  .oa-courses-listing__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 30px !important;
  }

  .oa-courses-listing__header,
  .oa-courses-listing__header.e-con {
    align-items: flex-start !important;

    gap: 15px !important;
  }

  .oa-courses-listing__title,
  .oa-courses-listing__title .elementor-heading-title {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-courses-listing__count {
    padding-bottom: 3px;
  }

  .oa-courses-listing__count .elementor-shortcode,
  .oa-courses-listing__result-text {
    font-size: 11px;
  }

  .oa-courses-listing__grid .oa-course-card__media,
  .oa-courses-listing__grid .oa-course-card__image,
  .oa-courses-listing__grid .oa-course-card__image img {
    height: 250px;
    min-height: 250px;
  }

  .oa-courses-listing__grid .oa-course-card__title,
  .oa-courses-listing__grid .oa-course-card__title .elementor-heading-title {
    min-height: 0;
  }

  .oa-courses-listing__grid .elementor-pagination {
    gap: 7px;

    margin-top: 36px;
  }

  .oa-courses-listing__grid .elementor-pagination .page-numbers {
    min-width: 38px;
    height: 38px;

    padding: 0 10px;
  }

  .oa-courses-listing__grid .elementor-pagination .page-numbers.prev,
  .oa-courses-listing__grid .elementor-pagination .page-numbers.next {
    min-width: 88px;
  }

  .oa-courses-guidance,
  .oa-courses-guidance.e-con {
    padding-bottom: 76px;
  }

  .oa-courses-guidance__inner,
  .oa-courses-guidance__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 29px !important;

    padding: 35px 24px !important;

    border-radius: 16px;
  }

  .oa-courses-guidance__title,
  .oa-courses-guidance__title .elementor-heading-title {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .oa-courses-guidance__cta,
  .oa-courses-guidance__cta .elementor-widget-container,
  .oa-courses-guidance__cta .elementor-button {
    width: 100%;
  }
}

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

@media (max-width: 390px) {
  .oa-courses-listing__header,
  .oa-courses-listing__header.e-con {
    flex-direction: column !important;
  }

  .oa-courses-listing__count {
    padding-bottom: 0;
  }

  .oa-courses-listing__grid .elementor-pagination .page-numbers.prev,
  .oa-courses-listing__grid .elementor-pagination .page-numbers.next {
    min-width: 78px;
  }
}

/* =========================================================
   COURSES PAGE — FORM AND CTA CORRECTIONS
========================================================= */

:root {
  --oa-course-control-radius: var(--oa-radius-md, 8px);
}

/* ---------------------------------------------------------
   CONSISTENT CONTROL RADIUS
--------------------------------------------------------- */

.oa-course-filter__field,
.oa-course-filter__input,
.oa-course-filter__select,
.oa-course-filter__submit,
.oa-courses-guidance__cta .elementor-button {
  border-radius: var(--oa-course-control-radius) !important;
}

/*
  The input and select sit inside a bordered parent field.
  Inherit the same radius so their backgrounds cannot create
  square corners inside the wrapper.
*/

.oa-course-filter__input,
.oa-course-filter__select {
  border-radius: inherit !important;
}

/* ---------------------------------------------------------
   FILTER FIELD BACKGROUND AND TEXT CONTRAST
--------------------------------------------------------- */

.oa-course-filter__field {
  border-color: var(--oa-border) !important;
  background: var(--oa-white) !important;
  color-scheme: light;
}

.oa-course-filter__input,
.oa-course-filter__select {
  border: 0 !important;
  outline: 0 !important;

  background-color: var(--oa-white) !important;
  color: var(--oa-dark) !important;

  -webkit-text-fill-color: var(--oa-dark) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.oa-course-filter__input::placeholder {
  color: var(--oa-neutral-400) !important;
  -webkit-text-fill-color: var(--oa-neutral-400) !important;
  opacity: 1 !important;
}

/* Remove browser autofill pink/yellow styling */

.oa-course-filter__input:-webkit-autofill,
.oa-course-filter__input:-webkit-autofill:hover,
.oa-course-filter__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--oa-dark) !important;

  box-shadow: 0 0 0 1000px var(--oa-white) inset !important;

  transition: background-color 9999s ease-in-out 0s;
}

/* ---------------------------------------------------------
   CUSTOM SELECT APPEARANCE
--------------------------------------------------------- */

.oa-course-filter__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0 46px 0 15px !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A0F53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 15px !important;

  cursor: pointer;
}

/* ---------------------------------------------------------
   SELECT OPTIONS
--------------------------------------------------------- */

.oa-course-filter__select option {
  padding: 10px;

  background: var(--oa-white);
  color: var(--oa-dark);

  font-family: var(--oa-font-body);
  font-size: 13px;
}

.oa-course-filter__select option:checked {
  background: var(--oa-primary-500);
  color: var(--oa-white);
}

.oa-course-filter__select option[value=""] {
  color: var(--oa-neutral-400);
}

/* ---------------------------------------------------------
   FOCUS STATE
--------------------------------------------------------- */

.oa-course-filter__field:focus-within {
  border-color: var(--oa-primary-500) !important;

  box-shadow: 0 0 0 3px rgba(160, 20, 109, 0.1) !important;
}

.oa-course-filter__input:focus,
.oa-course-filter__select:focus {
  background-color: var(--oa-white) !important;
  color: var(--oa-dark) !important;
}

/* ---------------------------------------------------------
   SEARCH BUTTON
--------------------------------------------------------- */

.oa-course-filter__submit {
  border: 1px solid var(--oa-primary-500) !important;

  background: var(--oa-gradient-primary) !important;
  color: var(--oa-white) !important;

  -webkit-text-fill-color: var(--oa-white) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.oa-course-filter__submit:hover,
.oa-course-filter__submit:focus-visible {
  border-color: var(--oa-primary-600) !important;

  background: var(--oa-gradient-primary-hover) !important;
  color: var(--oa-white) !important;

  -webkit-text-fill-color: var(--oa-white) !important;
}

/* ---------------------------------------------------------
   GUIDANCE CTA BUTTON
--------------------------------------------------------- */

.oa-courses-guidance__cta .elementor-button {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.76) !important;

  background: var(--oa-warm-cream) !important;
  color: var(--oa-primary-900) !important;
}

.oa-courses-guidance__cta .elementor-button:hover,
.oa-courses-guidance__cta .elementor-button:focus-visible {
  border-color: var(--oa-gold-300) !important;

  background: var(--oa-gold-50) !important;
  color: var(--oa-primary-700) !important;
}

/* =========================================================
   ONIGELE ACADEMY — SINGLE COURSE HERO
========================================================= */

.oa-single-course {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--oa-white);
}

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

.oa-course-hero,
.oa-course-hero.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
  padding-top: 80px;

  overflow: hidden;

  background: var(--oa-primary-900);
}

/* ---------------------------------------------------------
   FLOATING DECORATION
--------------------------------------------------------- */

/* Large partial ring */

.oa-course-hero::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: 142px;
  left: -94px;

  width: 205px;
  height: 205px;

  border: 34px solid rgba(206, 133, 179, 0.16);
  border-radius: 50%;

  pointer-events: none;
}

/* Gold dashed curve */

.oa-course-hero::after {
  content: "";
  position: absolute;
  z-index: 0;

  right: -92px;
  bottom: -105px;

  width: 290px;
  height: 290px;

  border: 2px dashed rgba(242, 176, 30, 0.72);
  border-radius: 50%;

  pointer-events: none;
}

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

.oa-course-hero__inner,
.oa-course-hero__inner.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 510px;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;

  gap: 0 !important;

  margin: 0 auto !important;

  /*
   * The navbar is fixed. This top padding places the content
   * beneath it while the solid hero background begins at the
   * top of the page.
   */
  padding: 164px 0 68px !important;
}

/* Small decorative gold dots */

.oa-course-hero__inner::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: 98px;
  right: 8px;

  width: 90px;
  height: 54px;

  opacity: 0.68;

  background-image: radial-gradient(
    circle,
    var(--oa-gold-400) 2px,
    transparent 2.4px
  );

  background-size: 18px 18px;

  pointer-events: none;
}

/* Small floating gold diamond */

.oa-course-hero__inner::after {
  content: "";

  position: absolute;
  z-index: -1;

  top: 62%;
  right: 9%;

  width: 15px;
  height: 15px;

  background: var(--oa-gold-500);

  opacity: 0.82;

  transform: rotate(45deg);

  pointer-events: none;
}

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

.oa-course-hero__content,
.oa-course-hero__content.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   TITLE
========================================================= */

.oa-course-hero__title {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

.oa-course-hero__title,
.oa-course-hero__title .elementor-heading-title {
  color: var(--oa-white) !important;

  font-family: var(--oa-font-heading) !important;
  font-size: clamp(50px, 5vw, 76px) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;

  letter-spacing: -0.045em !important;
}

/* =========================================================
   DIVIDER
========================================================= */

.oa-course-hero__divider {
  width: 100px !important;
  max-width: 100px;

  margin: 24px 0 25px !important;

  padding: 0 !important;
}

.oa-course-hero__divider .elementor-divider {
  padding: 0 !important;
}

.oa-course-hero__divider .elementor-divider-separator {
  width: 100% !important;

  border-block-start: 2px solid var(--oa-gold-500) !important;
}

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

.oa-course-hero__instructor-widget,
.oa-course-hero__instructor-widget .elementor-widget-container,
.oa-course-hero__instructor-widget .elementor-shortcode {
  width: auto;
  max-width: 100%;
}

.oa-course-hero__instructor {
  display: inline-flex;

  width: auto;
  max-width: 100%;

  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  gap: 14px;

  margin: 0;
  padding: 0;

  background: transparent;
  border: 0;
  box-shadow: none;
}

.oa-course-hero__instructor-avatar {
  width: 64px;
  min-width: 64px;
  height: 64px;

  flex: 0 0 64px;

  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.88);

  border-radius: 50%;

  background: var(--oa-primary-700);
}

.oa-course-hero__instructor-avatar img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.oa-course-hero__instructor-copy {
  display: flex;

  min-width: 0;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 3px;
}

.oa-course-hero__instructor-role {
  color: var(--oa-gold-400);

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.oa-course-hero__instructor-name {
  color: var(--oa-white);

  font-family: var(--oa-font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

/* =========================================================
   COURSE META
========================================================= */

.oa-course-hero__meta-widget,
.oa-course-hero__meta-widget .elementor-widget-container,
.oa-course-hero__meta-widget .elementor-shortcode {
  width: 100%;
}

.oa-course-hero__meta-list {
  display: flex;

  width: 100%;

  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;

  gap: 0;

  margin: 34px 0 0;
  padding: 0;
}

.oa-course-hero__meta-item {
  position: relative;

  display: flex;

  min-width: 0;

  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-start;

  gap: 12px;

  margin: 0;

  padding: 0 26px;
}

.oa-course-hero__meta-item:first-child {
  padding-left: 0;
}

.oa-course-hero__meta-item:last-child {
  padding-right: 0;
}

.oa-course-hero__meta-item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 7px;
  right: 0;
  bottom: 7px;

  width: 1px;

  background: rgba(255, 255, 255, 0.22);
}

/* ---------------------------------------------------------
   META ICON
--------------------------------------------------------- */

.oa-course-hero__meta-icon {
  position: relative;

  display: inline-flex;

  width: 27px;
  min-width: 27px;
  height: 27px;

  flex: 0 0 27px;

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

  color: var(--oa-gold-500);
}

/*
 * The icons are created with masked SVG files, so no extra
 * Elementor Icon widgets are needed inside the shortcode.
 */

.oa-course-hero__meta-icon::before {
  content: "";

  display: block;

  width: 23px;
  height: 23px;

  background-color: currentColor;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* Duration — clock */

.oa-course-hero__meta-item--duration .oa-course-hero__meta-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

/* Level — bars */

.oa-course-hero__meta-item--level .oa-course-hero__meta-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M5 19v-5M12 19V9M19 19V4'/%3E%3C/svg%3E");

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M5 19v-5M12 19V9M19 19V4'/%3E%3C/svg%3E");
}

/* Lessons — book */

.oa-course-hero__meta-item--lessons .oa-course-hero__meta-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H11v17H6.5A2.5 2.5 0 0 0 4 22V5.5Z'/%3E%3Cpath d='M20 5.5A2.5 2.5 0 0 0 17.5 3H13v17h4.5A2.5 2.5 0 0 1 20 22V5.5Z'/%3E%3C/svg%3E");

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H11v17H6.5A2.5 2.5 0 0 0 4 22V5.5Z'/%3E%3Cpath d='M20 5.5A2.5 2.5 0 0 0 17.5 3H13v17h4.5A2.5 2.5 0 0 1 20 22V5.5Z'/%3E%3C/svg%3E");
}

/* Quizzes — question */

.oa-course-hero__meta-item--quizzes .oa-course-hero__meta-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.8 9a2.4 2.4 0 1 1 3.5 2.1c-.8.4-1.3.9-1.3 1.9'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.8 9a2.4 2.4 0 1 1 3.5 2.1c-.8.4-1.3.9-1.3 1.9'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}

/* Students — users */

.oa-course-hero__meta-item--students .oa-course-hero__meta-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------
   META COPY
--------------------------------------------------------- */

.oa-course-hero__meta-copy {
  display: flex;

  min-width: 0;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 2px;
}

.oa-course-hero__meta-value {
  color: var(--oa-white);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;

  white-space: nowrap;
}

.oa-course-hero__meta-label {
  color: rgba(255, 255, 255, 0.62);

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-hero__inner,
  .oa-course-hero__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    min-height: 490px;

    padding: 148px 0 64px !important;
  }

  .oa-course-hero__title,
  .oa-course-hero__title .elementor-heading-title {
    font-size: clamp(48px, 7vw, 66px) !important;
  }

  .oa-course-hero__meta-item {
    padding: 0 20px;
  }

  .oa-course-hero__meta-list {
    row-gap: 22px;
  }
}

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

@media (max-width: 767px) {
  .oa-course-hero::before {
    top: 105px;
    left: -108px;

    width: 180px;
    height: 180px;

    border-width: 28px;
  }

  .oa-course-hero::after {
    right: -170px;
    bottom: -80px;
  }

  .oa-course-hero__inner,
  .oa-course-hero__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    min-height: auto;

    padding: 126px 0 54px !important;
  }

  .oa-course-hero__inner::before {
    top: 90px;
    right: 0;

    width: 72px;
    height: 42px;

    background-size: 15px 15px;
  }

  .oa-course-hero__inner::after {
    display: none;
  }

  .oa-course-hero__title,
  .oa-course-hero__title .elementor-heading-title {
    font-size: clamp(40px, 12vw, 54px) !important;
  }

  .oa-course-hero__divider {
    margin: 21px 0 23px !important;
  }

  .oa-course-hero__instructor-avatar {
    width: 58px;
    min-width: 58px;
    height: 58px;

    flex-basis: 58px;
  }

  .oa-course-hero__meta-list {
    display: grid;

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

    gap: 22px 18px;

    margin-top: 32px;
  }

  .oa-course-hero__meta-item {
    width: 100%;

    padding: 0;
  }

  .oa-course-hero__meta-item::after {
    display: none;
  }

  .oa-course-hero__meta-value {
    white-space: normal;
  }
}

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

@media (max-width: 390px) {
  .oa-course-hero__meta-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   ONIGELE — SINGLE COURSE DETAILS
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-course-details,
.oa-course-details.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 72px 0 0;

  overflow: visible;

  background: var(--oa-white);
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-course-details__inner,
.oa-course-details__inner.e-con {
  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 auto !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* =========================================================
   NESTED TABS ROOT
========================================================= */

.oa-course-details__tabs {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;

  overflow: visible;
}

.oa-course-details__tabs > .elementor-widget-container {
  width: 100%;
  overflow: visible;
}

/* =========================================================
   TAB NAVIGATION CARD
========================================================= */

.oa-course-details__tabs > .e-n-tabs-heading {
  position: relative;

  display: grid !important;

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

  width: 100%;

  align-items: stretch !important;
  justify-content: stretch !important;

  gap: 10px !important;

  margin: 0 0 32px;

  padding: 10px !important;

  overflow: visible;

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

  background: var(--oa-white);

  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.055);
}

/* ---------------------------------------------------------
   INDIVIDUAL TAB
--------------------------------------------------------- */

.oa-course-details__tabs .e-n-tab-title {
  position: relative;

  display: inline-flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 54px;

  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 9px !important;

  margin: 0 !important;

  padding: 13px 16px !important;

  border: 1px solid transparent !important;
  border-radius: 10px !important;

  background: transparent !important;
  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;

  text-align: center;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

/* Remove previous underline implementation */

.oa-course-details__tabs .e-n-tab-title::after,
.oa-course-details__tabs .e-n-tab-title::before {
  display: none !important;
  content: none !important;
}

/* ---------------------------------------------------------
   TAB ICONS
--------------------------------------------------------- */

.oa-course-details__tabs .e-n-tab-title .e-n-tab-icon,
.oa-course-details__tabs .e-n-tab-title .elementor-icon {
  display: inline-flex;

  width: 19px;
  min-width: 19px;
  height: 19px;

  flex: 0 0 19px;

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

  color: var(--oa-primary-500);

  font-size: 16px;

  transition:
    color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-details__tabs .e-n-tab-title svg {
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
}

.oa-course-details__tabs .e-n-tab-title i {
  color: inherit;
  font-size: 16px;
}

/* ---------------------------------------------------------
   TAB HOVER
--------------------------------------------------------- */

.oa-course-details__tabs .e-n-tab-title:hover {
  border-color: var(--oa-primary-100) !important;

  background: var(--oa-primary-50) !important;
  color: var(--oa-primary-700) !important;

  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   ACTIVE TAB
--------------------------------------------------------- */

.oa-course-details__tabs .e-n-tab-title[aria-selected="true"],
.oa-course-details__tabs .e-n-tab-title.e-active {
  border-color: var(--oa-primary-500) !important;

  background: var(--oa-gradient-primary) !important;
  color: var(--oa-white) !important;

  box-shadow: 0 8px 20px rgba(160, 20, 109, 0.18);

  transform: none;
}

.oa-course-details__tabs .e-n-tab-title[aria-selected="true"] .e-n-tab-icon,
.oa-course-details__tabs .e-n-tab-title[aria-selected="true"] .elementor-icon,
.oa-course-details__tabs .e-n-tab-title[aria-selected="true"] i,
.oa-course-details__tabs .e-n-tab-title.e-active .e-n-tab-icon,
.oa-course-details__tabs .e-n-tab-title.e-active .elementor-icon,
.oa-course-details__tabs .e-n-tab-title.e-active i {
  color: var(--oa-white) !important;
}

/* ---------------------------------------------------------
   KEYBOARD FOCUS
--------------------------------------------------------- */

.oa-course-details__tabs .e-n-tab-title:focus-visible {
  outline: 2px solid var(--oa-primary-300);

  outline-offset: 2px;
}

/* =========================================================
   TAB CONTENT AREA
========================================================= */

.oa-course-details__tabs > .e-n-tabs-content {
  width: 100%;

  margin: 0;
  padding: 0;

  overflow: visible;
}

.oa-course-tab,
.oa-course-tab.e-con {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;

  border: 0 !important;
  background: transparent !important;
}

/* Remove inherited Elementor content borders */

.oa-course-details__tabs .e-n-tabs-content > .e-con,
.oa-course-details__tabs .e-n-tabs-content > .elementor-element {
  border: 0 !important;
  background: transparent !important;
}

/* =========================================================
   OVERVIEW LAYOUT
========================================================= */

.oa-course-overview,
.oa-course-overview.e-con {
  display: grid !important;

  grid-template-columns:
    340px
    minmax(0, 1fr);

  width: 100% !important;
  min-width: 0;

  align-items: start !important;

  gap: 28px !important;

  margin: 0 0 30px !important;

  padding: 0 !important;

  overflow: visible !important;
}

.oa-course-overview__purchase-column,
.oa-course-overview__content-column {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

/* =========================================================
   STICKY PURCHASE COLUMN
========================================================= */

.oa-course-overview__purchase-column,
.oa-course-overview__purchase-column.e-con {
  position: sticky;

  top: 110px;

  display: flex !important;

  width: 100% !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  margin: 0 !important;
  padding: 0 !important;

  align-self: start;

  overflow: visible !important;
}

.oa-course-overview__purchase-widget,
.oa-course-overview__purchase-widget .elementor-widget-container,
.oa-course-overview__purchase-widget .elementor-shortcode {
  width: 100%;
}

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

.oa-course-purchase {
  width: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.075);
}

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

.oa-course-purchase__media {
  width: 100%;
  height: 275px;

  overflow: hidden;

  background: var(--oa-primary-900);
}

.oa-course-purchase__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* ---------------------------------------------------------
   PURCHASE BODY
--------------------------------------------------------- */

.oa-course-purchase__body {
  width: 100%;

  padding: 22px 20px 21px;
}

/* =========================================================
   PRICE
========================================================= */

.oa-course-purchase__price-row {
  display: flex;

  width: 100%;

  align-items: flex-end;
  justify-content: space-between;

  gap: 18px;

  margin: 0;
}

.oa-course-purchase__status {
  display: inline-flex;

  min-height: 27px;

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

  padding: 5px 11px;

  border-radius: 999px;

  background: var(--oa-gold-50);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.oa-course-purchase__prices {
  display: flex;

  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;

  gap: 7px;
}

.oa-course-purchase__current-price,
.oa-course-purchase__current-price .amount {
  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.oa-course-purchase__regular-price,
.oa-course-purchase__regular-price .amount {
  color: var(--oa-neutral-400) !important;

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   PURCHASE ACTIONS
========================================================= */

.oa-course-purchase__actions {
  display: flex;

  width: 100%;

  flex-direction: column;
  align-items: stretch;

  gap: 11px;

  margin: 22px 0 0;
}

/* ---------------------------------------------------------
   LOGGED-OUT CUSTOM ACTION
--------------------------------------------------------- */

.oa-course-purchase__login-action {
  display: inline-flex;

  width: 100%;
  min-height: 50px;

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

  gap: 9px;

  padding: 14px 20px;

  border: 1px solid var(--oa-primary-500);
  border-radius: 8px;

  background: var(--oa-gradient-primary);
  color: var(--oa-white) !important;

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none !important;

  transition:
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-purchase__login-action:hover {
  background: var(--oa-gradient-primary-hover);

  box-shadow: 0 9px 22px rgba(160, 20, 109, 0.18);

  transform: translateY(-1px);
}

/* =========================================================
   NATIVE LEARNPRESS COURSE ACTION
========================================================= */

.oa-course-purchase__native-action {
  width: 100%;

  margin: 0;
  padding: 0;

  background: transparent;
}

/* Remove visual treatment from LearnPress wrappers */

.oa-course-purchase__native-action .course-buttons,
.oa-course-purchase__native-action form {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  background: transparent !important;

  box-shadow: none !important;
}

/*
 * LearnPress may wrap its actual button in an anchor.
 * The anchor must remain visually transparent.
 */

.oa-course-purchase__native-action a {
  display: block !important;

  width: 100%;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  color: inherit !important;

  text-decoration: none !important;

  box-shadow: none !important;

  transform: none !important;
}

.oa-course-purchase__native-action a:hover {
  background: transparent !important;

  box-shadow: none !important;

  transform: none !important;
}

/* Only the actual LearnPress button receives button styling */

.oa-course-purchase__native-action .lp-button,
.oa-course-purchase__native-action button {
  display: inline-flex !important;

  width: 100% !important;
  min-height: 50px;

  align-items: center !important;
  justify-content: center !important;

  gap: 9px;

  margin: 0 !important;

  padding: 14px 20px !important;

  border: 1px solid var(--oa-primary-500) !important;

  border-radius: 8px !important;

  background: var(--oa-gradient-primary) !important;

  color: var(--oa-white) !important;

  font-family: var(--oa-font-body) !important;

  font-size: 13px !important;

  font-weight: 700 !important;

  line-height: 1 !important;

  text-align: center !important;

  cursor: pointer;

  box-shadow: var(--oa-shadow-button) !important;

  transition:
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-purchase__native-action .lp-button:hover,
.oa-course-purchase__native-action button:hover {
  background: var(--oa-gradient-primary-hover) !important;

  color: var(--oa-white) !important;

  box-shadow: 0 12px 28px rgba(160, 20, 109, 0.24) !important;

  transform: translateY(-1px);
}

.oa-course-purchase__native-action .lp-button:focus-visible,
.oa-course-purchase__native-action button:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;
}
/* =========================================================
   PURCHASE META
========================================================= */

.oa-course-purchase__meta {
  width: 100%;

  margin: 25px 0 0;

  padding: 22px 0 0;

  border-top: 1px solid var(--oa-border);
}

.oa-course-purchase__meta-title {
  margin: 0 0 17px;

  color: var(--oa-dark);

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

/*
 * The hero meta shortcode is reused here and restyled for the
 * white purchase card.
 */

.oa-course-purchase__meta .oa-course-hero__meta-list {
  display: flex;

  flex-direction: column;
  align-items: stretch;

  gap: 13px;

  margin: 0;
}

.oa-course-purchase__meta .oa-course-hero__meta-item {
  width: 100%;

  gap: 11px;

  padding: 0;
}

.oa-course-purchase__meta .oa-course-hero__meta-item::after {
  display: none;
}

.oa-course-purchase__meta .oa-course-hero__meta-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;

  flex-basis: 20px;

  color: var(--oa-orange-500);
}

.oa-course-purchase__meta .oa-course-hero__meta-icon::before {
  width: 18px;
  height: 18px;
}

.oa-course-purchase__meta .oa-course-hero__meta-copy {
  width: 100%;

  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.oa-course-purchase__meta .oa-course-hero__meta-value {
  color: var(--oa-neutral-700);

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

  white-space: normal;
}

.oa-course-purchase__meta .oa-course-hero__meta-label {
  color: var(--oa-neutral-400);

  font-size: 10px;
}

/* =========================================================
   OVERVIEW BODY COLUMN
========================================================= */

.oa-course-overview__content-column,
.oa-course-overview__content-column.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  margin: 0 0 24px !important;

  padding: 0 !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.055);
}

.oa-course-overview__content-widget,
.oa-course-overview__content-widget .elementor-widget-container,
.oa-course-overview__content-widget .elementor-shortcode {
  width: 100%;
}

/* =========================================================
   OVERVIEW BODY CARD
========================================================= */

.oa-course-overview__body {
  width: 100%;

  margin: 0;

  padding: 38px 40px 44px;
}

.oa-course-overview__body-content {
  width: 100%;
  max-width: none;

  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;

  text-align: left;
}

/* Correct old centred course-body content */

.oa-course-overview__body-content .has-text-align-center,
.oa-course-overview__body-content [style*="text-align: center"],
.oa-course-overview__body-content [style*="text-align:center"] {
  text-align: left !important;
}

/* ---------------------------------------------------------
   FIRST AND LAST ELEMENTS
--------------------------------------------------------- */

.oa-course-overview__body-content > *:first-child {
  margin-top: 0 !important;
}

.oa-course-overview__body-content > *:last-child {
  margin-bottom: 0 !important;
}

/* =========================================================
   OVERVIEW HEADINGS
========================================================= */

.oa-course-overview__body-content h1,
.oa-course-overview__body-content h2,
.oa-course-overview__body-content h3,
.oa-course-overview__body-content h4,
.oa-course-overview__body-content h5 {
  max-width: none;

  color: var(--oa-primary-900) !important;

  font-family: var(--oa-font-heading) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;

  letter-spacing: -0.025em !important;
  text-align: left !important;
}

.oa-course-overview__body-content h1 {
  margin: 0 0 18px;

  font-size: clamp(32px, 3.5vw, 46px);
}

.oa-course-overview__body-content h2 {
  margin: 34px 0 16px;

  font-size: clamp(28px, 3vw, 38px);
}

.oa-course-overview__body-content h3 {
  margin: 30px 0 14px;

  font-size: 25px;
}

.oa-course-overview__body-content h4 {
  margin: 27px 0 13px;

  font-size: 19px;
}

.oa-course-overview__body-content h5 {
  margin: 24px 0 12px;

  font-family: var(--oa-font-body) !important;
  font-size: 14px;
  font-weight: 700 !important;

  letter-spacing: 0 !important;
  text-transform: uppercase;
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.oa-course-overview__body-content p {
  max-width: none;

  margin: 0 0 18px;

  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;

  text-align: left !important;
}

.oa-course-overview__body-content strong {
  color: var(--oa-primary-800);
  font-weight: 700;
}

/* =========================================================
   LISTS
========================================================= */

.oa-course-overview__body-content ul,
.oa-course-overview__body-content ol {
  display: grid;

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

  gap: 12px 26px;

  width: 100%;

  margin: 16px 0 28px;

  padding: 0;

  list-style: none;

  text-align: left;
}

.oa-course-overview__body-content li {
  position: relative;

  min-width: 0;

  margin: 0;

  padding: 0 0 0 26px;

  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;

  text-align: left;
}

.oa-course-overview__body-content li::before {
  content: "✓";

  position: absolute;

  top: 2px;
  left: 0;

  display: inline-flex;

  width: 17px;
  height: 17px;

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

  border-radius: 50%;

  background: var(--oa-primary-500);
  color: var(--oa-white);

  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* Nested lists */

.oa-course-overview__body-content li ul,
.oa-course-overview__body-content li ol {
  display: block;

  margin: 9px 0 0;

  padding-left: 4px;
}

.oa-course-overview__body-content li li {
  margin-bottom: 7px;
}

/* =========================================================
   IMAGES AND MEDIA
========================================================= */

.oa-course-overview__body-content img {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 25px auto;

  border-radius: 12px;
}

.oa-course-overview__body-content figure {
  max-width: 100%;

  margin: 28px 0;
}

.oa-course-overview__body-content figure img {
  margin: 0;
}

.oa-course-overview__body-content iframe,
.oa-course-overview__body-content video {
  display: block;

  width: 100%;
  max-width: 100%;

  border: 0;
  border-radius: 12px;
}

/* =========================================================
   LINKS
========================================================= */

.oa-course-overview__body-content a {
  color: var(--oa-primary-600);

  font-weight: 600;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;

  transition: color var(--oa-transition-fast);
}

.oa-course-overview__body-content a:hover {
  color: var(--oa-primary-800);
}

/* =========================================================
   BLOCKQUOTES
========================================================= */

.oa-course-overview__body-content blockquote {
  position: relative;

  margin: 28px 0;

  padding: 22px 24px 22px 28px;

  border: 1px solid var(--oa-primary-100);

  border-left: 4px solid var(--oa-primary-500);

  border-radius: 10px;

  background: var(--oa-primary-50);
  color: var(--oa-primary-900);
}

.oa-course-overview__body-content blockquote p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TABLES
========================================================= */

.oa-course-overview__body-content table {
  width: 100%;

  margin: 25px 0;

  border-collapse: collapse;

  border: 1px solid var(--oa-border);
}

.oa-course-overview__body-content th,
.oa-course-overview__body-content td {
  padding: 12px 14px;

  border: 1px solid var(--oa-border);

  text-align: left;
}

.oa-course-overview__body-content th {
  background: var(--oa-primary-50);
  color: var(--oa-primary-900);

  font-weight: 700;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-details,
  .oa-course-details.e-con {
    padding: 62px 0 0;
  }

  .oa-course-details__inner,
  .oa-course-details__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;
  }

  .oa-course-details__tabs > .e-n-tabs-heading {
    gap: 8px !important;

    margin-bottom: 28px;

    padding: 9px !important;
  }

  .oa-course-details__tabs .e-n-tab-title {
    min-height: 52px;

    gap: 7px !important;

    padding: 12px 10px !important;

    font-size: 12px !important;
  }

  .oa-course-details__tabs .e-n-tab-title .e-n-tab-icon,
  .oa-course-details__tabs .e-n-tab-title .elementor-icon {
    width: 17px;
    min-width: 17px;
    height: 17px;

    flex-basis: 17px;
  }

  .oa-course-overview,
  .oa-course-overview.e-con {
    grid-template-columns:
      300px
      minmax(0, 1fr);

    gap: 22px !important;

    margin-bottom: 25px !important;
  }

  .oa-course-purchase__media {
    height: 245px;
  }

  .oa-course-overview__body {
    padding: 32px 30px 38px;
  }

  .oa-course-overview__body-content ul,
  .oa-course-overview__body-content ol {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

@media (max-width: 767px) {
  .oa-course-details,
  .oa-course-details.e-con {
    padding: 50px 0 0;
  }

  .oa-course-details__inner,
  .oa-course-details__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;
  }

  /* -------------------------------------------------------
     SCROLLABLE TAB CARD
  ------------------------------------------------------- */

  .oa-course-details__tabs > .e-n-tabs-heading {
    display: flex !important;

    width: 100%;

    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    gap: 8px !important;

    margin: 0 0 26px;

    padding: 8px !important;

    overflow-x: auto;
    overflow-y: hidden;

    border-radius: 13px;

    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .oa-course-details__tabs > .e-n-tabs-heading::-webkit-scrollbar {
    display: none;
  }

  .oa-course-details__tabs .e-n-tab-title {
    width: auto !important;
    min-width: 145px;
    min-height: 49px;

    flex: 0 0 auto !important;

    gap: 7px !important;

    padding: 11px 15px !important;

    scroll-snap-align: start;
  }

  .oa-course-details__tabs > .e-n-tabs-content {
    padding: 0;
  }

  /* -------------------------------------------------------
     OVERVIEW STACK
  ------------------------------------------------------- */

  .oa-course-overview,
  .oa-course-overview.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 22px !important;

    margin-bottom: 22px !important;
  }

  .oa-course-overview__purchase-column,
  .oa-course-overview__purchase-column.e-con {
    position: static;

    top: auto;
  }

  .oa-course-purchase__media {
    height: 315px;
  }

  .oa-course-overview__content-column,
  .oa-course-overview__content-column.e-con {
    margin-bottom: 22px !important;
  }

  .oa-course-overview__body {
    padding: 28px 22px 32px;
  }

  .oa-course-overview__body-content {
    font-size: 13px;
  }

  .oa-course-overview__body-content p {
    font-size: 13px !important;
  }

  .oa-course-overview__body-content h1 {
    font-size: 32px;
  }

  .oa-course-overview__body-content h2 {
    font-size: 28px;
  }

  .oa-course-overview__body-content h3 {
    font-size: 23px;
  }

  .oa-course-overview__body-content ul,
  .oa-course-overview__body-content ol {
    grid-template-columns: minmax(0, 1fr);

    gap: 10px;
  }
}

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

@media (max-width: 390px) {
  .oa-course-details,
  .oa-course-details.e-con {
    padding-top: 44px;
  }

  .oa-course-details__tabs .e-n-tab-title {
    min-width: 132px;
  }

  .oa-course-purchase__media {
    height: 270px;
  }

  .oa-course-purchase__price-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .oa-course-purchase__prices {
    justify-content: flex-start;
  }

  .oa-course-overview__body {
    padding: 25px 18px 28px;
  }
}

/* =========================================================
   ONIGELE — SINGLE COURSE CURRICULUM TAB
========================================================= */

/* =========================================================
   CURRICULUM TAB AND PANEL
========================================================= */

.oa-course-tab--curriculum,
.oa-course-tab--curriculum.e-con {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

.oa-course-curriculum,
.oa-course-curriculum.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 0 30px !important;

  padding: 24px !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.055);
}

.oa-course-curriculum__shortcode,
.oa-course-curriculum__shortcode .elementor-widget-container,
.oa-course-curriculum__shortcode .elementor-shortcode {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

/* =========================================================
   LEARNPRESS CURRICULUM ROOT
========================================================= */

.oa-course-curriculum .course-curriculum,
.oa-course-curriculum .learnpress-course-curriculum,
.oa-course-curriculum .lp-course-curriculum {
  width: 100%;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  background: transparent !important;
}

/*
 * Prevent the native curriculum from becoming a separately
 * scrolling area inside the Elementor tab.
 */

.oa-course-curriculum .curriculum-scrollable {
  width: 100%;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* =========================================================
   OPTIONAL NATIVE CURRICULUM INFORMATION ROW
========================================================= */

.oa-course-curriculum .course-curriculum-info {
  display: flex;

  width: 100%;

  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin: 0 0 20px;

  padding: 0 2px;
}

.oa-course-curriculum .course-curriculum-info__left,
.oa-course-curriculum .course-curriculum-info__right {
  display: flex;

  flex-wrap: wrap;
  align-items: center;

  gap: 9px;
}

.oa-course-curriculum .course-curriculum-info ul {
  display: flex;

  flex-wrap: wrap;
  align-items: center;

  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.oa-course-curriculum .course-curriculum-info li {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin: 0;
  padding: 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================================
   CURRICULUM SECTION LIST
========================================================= */

.oa-course-curriculum .curriculum-sections {
  display: flex;

  width: 100%;

  flex-direction: column;

  gap: 12px;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

/* =========================================================
   INDIVIDUAL SECTION
========================================================= */

.oa-course-curriculum .curriculum-sections > .section,
.oa-course-curriculum .curriculum-sections > .course-section {
  width: 100%;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 5px 16px rgba(22, 22, 22, 0.035);
}

/* =========================================================
   CURRICULUM SECTION CARD STATES
========================================================= */

.oa-course-curriculum .curriculum-sections > .section,
.oa-course-curriculum .curriculum-sections > .course-section {
  border-color: var(--oa-border);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

/* Open section card */

.oa-course-curriculum .curriculum-sections > .section.oa-is-open,
.oa-course-curriculum .curriculum-sections > .course-section.oa-is-open {
  border-color: var(--oa-primary-600);

  box-shadow: 0 9px 24px rgba(160, 20, 109, 0.09);
}

/* =========================================================
   SECTION HEADER — DEFAULT/COLLAPSED
========================================================= */

.oa-course-curriculum .section-header,
.oa-course-curriculum .course-section-header {
  position: relative;

  display: flex !important;

  width: 100%;

  align-items: center !important;
  justify-content: space-between !important;

  gap: 20px;

  min-height: 72px;

  margin: 0 !important;

  padding: 17px 20px !important;

  border: 0 !important;
  border-bottom: 1px solid transparent !important;

  background: var(--oa-white) !important;
  color: var(--oa-primary-800) !important;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast);
}

/* Explicit collapsed states */

.oa-course-curriculum .section.lp-collapse > .section-header,
.oa-course-curriculum .section.closed > .section-header,
.oa-course-curriculum .course-section.lp-collapse > .course-section-header,
.oa-course-curriculum .course-section.closed > .course-section-header {
  border-bottom-color: transparent !important;

  background: var(--oa-white) !important;
  color: var(--oa-primary-800) !important;
}

.oa-course-curriculum .section.lp-collapse > .section-header:hover,
.oa-course-curriculum .section.closed > .section-header:hover,
.oa-course-curriculum
  .course-section.lp-collapse
  > .course-section-header:hover,
.oa-course-curriculum .course-section.closed > .course-section-header:hover {
  background: var(--oa-neutral-50) !important;
  color: var(--oa-primary-700) !important;
}

/* =========================================================
   ACTIVE/OPEN HEADER
========================================================= */

.oa-course-curriculum .section.oa-is-open > .section-header,
.oa-course-curriculum .course-section.oa-is-open > .course-section-header {
  border-bottom-color: rgba(255, 255, 255, 0.16) !important;

  background: var(--oa-primary-700) !important;
  color: var(--oa-white) !important;
}

/* =========================================================
   SECTION LEFT AREA
========================================================= */

.oa-course-curriculum .section-left {
  display: flex !important;

  width: 100%;
  min-width: 0;

  flex: 1 1 auto;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px;

  margin: 0;
  padding: 0;
}

.oa-course-curriculum .wrapper-section-title {
  display: flex;

  min-width: 0;

  flex: 1 1 auto;
  flex-direction: column;

  gap: 5px;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.oa-course-curriculum .section-title {
  display: flex;

  min-width: 0;

  flex: 1 1 auto;
  flex-direction: column;

  gap: 5px;

  margin: 0 !important;
  padding: 0 !important;

  color: inherit !important;

  font-family: var(--oa-font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;

  letter-spacing: 0 !important;
  text-transform: none !important;
}

.oa-course-curriculum .section-title a {
  color: inherit !important;
  text-decoration: none !important;
}

/* =========================================================
   SECTION DESCRIPTION
========================================================= */

.oa-course-curriculum .section-desc {
  max-width: 760px;

  margin: 4px 0 0 !important;

  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.5 !important;
}

.oa-course-curriculum .section.oa-is-open .section-desc,
.oa-course-curriculum .course-section.oa-is-open .section-desc {
  color: rgba(255, 255, 255, 0.74) !important;
}

/* =========================================================
   SECTION TOGGLE
========================================================= */

.oa-course-curriculum .section-toggle {
  display: inline-flex !important;

  width: 32px;
  min-width: 32px;
  height: 32px;

  flex: 0 0 32px;

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

  margin: 0 0 0 auto;

  border: 1px solid var(--oa-primary-100);

  border-radius: 50%;

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-curriculum .section.oa-is-open .section-toggle,
.oa-course-curriculum .course-section.oa-is-open .section-toggle {
  border-color: rgba(255, 255, 255, 0.28);

  background: rgba(255, 255, 255, 0.14);

  color: var(--oa-white);
}

.oa-course-curriculum .section-toggle i {
  color: inherit !important;
  font-size: 13px !important;
}

/* =========================================================
   COLLAPSED CONTENT
========================================================= */

.oa-course-curriculum .section.lp-collapse > .section-item,
.oa-course-curriculum .section.lp-collapse > .section-content,
.oa-course-curriculum .section.lp-collapse > .course-section-content,
.oa-course-curriculum .section.closed > .section-item,
.oa-course-curriculum .section.closed > .section-content,
.oa-course-curriculum .section.closed > .course-section-content,
.oa-course-curriculum .course-section.lp-collapse > .section-item,
.oa-course-curriculum .course-section.lp-collapse > .section-content,
.oa-course-curriculum .course-section.lp-collapse > .course-section-content,
.oa-course-curriculum .course-section.closed > .section-item,
.oa-course-curriculum .course-section.closed > .section-content,
.oa-course-curriculum .course-section.closed > .course-section-content {
  display: none !important;
}

/* =========================================================
   OPEN CONTENT
========================================================= */

.oa-course-curriculum .section.oa-is-open > .section-item,
.oa-course-curriculum .section.oa-is-open > .section-content,
.oa-course-curriculum .section.oa-is-open > .course-section-content,
.oa-course-curriculum .course-section.oa-is-open > .section-item,
.oa-course-curriculum .course-section.oa-is-open > .section-content,
.oa-course-curriculum .course-section.oa-is-open > .course-section-content {
  display: block !important;
}

/* Support the hidden state controlled by our synchroniser */

.oa-course-curriculum [hidden] {
  display: none !important;
}
/* =========================================================
   SECTION PROGRESS
========================================================= */

.oa-course-curriculum .section-meta {
  display: flex;

  min-width: 90px;

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

  margin: 0 0 0 16px;

  padding: 0 !important;
}

.oa-course-curriculum .learn-press-progress {
  position: relative;

  width: 90px;
  height: 5px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.25);
}

.oa-course-curriculum .learn-press-progress__active {
  position: absolute;

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

  border-radius: inherit;

  background: var(--oa-gold-400);
}

/* =========================================================
   SECTION ITEMS CONTAINER
========================================================= */

.oa-course-curriculum .section-item {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-course-curriculum .section-content {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;

  background: var(--oa-white);
}

/* =========================================================
   INDIVIDUAL LESSON OR QUIZ
========================================================= */

.oa-course-curriculum .course-item {
  position: relative;

  display: flex !important;

  width: 100%;
  min-width: 0;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-bottom: 1px solid var(--oa-border);

  background: var(--oa-white) !important;

  transition:
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast);
}

.oa-course-curriculum .course-item:last-child {
  border-bottom: 0;
}

.oa-course-curriculum .course-item:hover {
  background: var(--oa-neutral-50) !important;
}

/* Current lesson */

.oa-course-curriculum .course-item.current {
  border-left: 3px solid var(--oa-primary-500);

  background: var(--oa-primary-50) !important;
}

/* =========================================================
   LESSON/QUIZ LINK
========================================================= */

.oa-course-curriculum .section-item-link {
  display: flex !important;

  width: 100%;
  min-width: 0;

  flex-direction: row;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 12px !important;

  margin: 0 !important;

  padding: 15px 19px !important;

  color: var(--oa-neutral-700) !important;

  text-decoration: none !important;
  outline: 0;

  cursor: pointer;
}

/* Native LearnPress lesson/quiz icon */

.oa-course-curriculum .section-item-link::before {
  display: inline-flex !important;

  width: 20px;
  min-width: 20px;
  height: 20px;

  flex: 0 0 20px;

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

  color: var(--oa-primary-500) !important;

  font-size: 14px !important;
  line-height: 1 !important;
}

/* =========================================================
   ITEM INFORMATION
========================================================= */

.oa-course-curriculum .course-item-info {
  display: flex;

  width: 100%;
  min-width: 0;

  flex: 1 1 auto;
  flex-direction: column;

  gap: 4px;
}

.oa-course-curriculum .course-item-info-pre {
  display: flex !important;

  width: 100%;

  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;

  gap: 8px !important;
}

/* =========================================================
   ITEM TITLE
========================================================= */

.oa-course-curriculum .item-name,
.oa-course-curriculum .course-item-title {
  min-width: 0;

  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;

  transition: color var(--oa-transition-fast);
}

.oa-course-curriculum .course-item:hover .item-name,
.oa-course-curriculum .course-item:hover .course-item-title {
  color: var(--oa-primary-700) !important;
}

/* =========================================================
   ITEM META
========================================================= */

.oa-course-curriculum .course-item-meta {
  display: inline-flex !important;

  min-width: max-content;

  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;

  gap: 8px;

  margin: 0 0 0 auto;

  padding: 0;

  color: var(--oa-neutral-400);
  text-align: right;

  white-space: nowrap;
}

.oa-course-curriculum .item-meta {
  display: inline-flex;

  min-height: 22px;

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

  padding: 3px 7px;

  border-radius: 999px;

  background: var(--oa-neutral-50);
  color: var(--oa-text-secondary) !important;

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

/* Duration and question count */

.oa-course-curriculum .item-meta.duration,
.oa-course-curriculum .item-meta.count-questions {
  background: var(--oa-neutral-50) !important;
  color: var(--oa-text-secondary) !important;
}

/* =========================================================
   PREVIEW LABEL
========================================================= */

.oa-course-curriculum .course-item-preview {
  gap: 5px;

  padding: 3px 8px !important;

  background: var(--oa-gold-50) !important;
  color: var(--oa-gold-800) !important;
}

.oa-course-curriculum .course-item-preview::before {
  color: var(--oa-gold-600) !important;
}

.oa-course-curriculum .course-item-preview::after {
  content: attr(data-preview);

  font-family: var(--oa-font-body);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
}

/* =========================================================
   LOCKED AND COMPLETED STATES
========================================================= */

.oa-course-curriculum .course-item-status {
  padding: 0 !important;

  background: transparent !important;
  color: var(--oa-neutral-400) !important;
}

.oa-course-curriculum .course-item.item-locked .course-item-status::before {
  color: var(--oa-neutral-400) !important;
}

.oa-course-curriculum .course-item.status-completed .course-item-status::before,
.oa-course-curriculum
  .course-item.status-evaluated
  .course-item-status::before {
  color: var(--oa-primary-500) !important;
}

.oa-course-curriculum .course-item.failed .course-item-status::before,
.oa-course-curriculum .course-item.item-failed .course-item-status::before {
  color: var(--oa-orange-600) !important;
}

/* =========================================================
   LOAD MORE BUTTONS
========================================================= */

.oa-course-curriculum .curriculum-more,
.oa-course-curriculum .section-item__loadmore {
  display: flex;

  width: 100%;

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

  margin: 14px 0 0;
}

.oa-course-curriculum .curriculum-more__button,
.oa-course-curriculum .section-item__loadmore button {
  display: inline-flex;

  width: 100%;
  min-height: 46px;

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

  margin: 0 !important;

  padding: 12px 18px !important;

  border: 1px solid var(--oa-primary-300) !important;
  border-radius: 8px !important;

  background: var(--oa-white) !important;
  color: var(--oa-primary-700) !important;

  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  box-shadow: none !important;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast);
}

.oa-course-curriculum .curriculum-more__button:hover,
.oa-course-curriculum .section-item__loadmore button:hover {
  border-color: var(--oa-primary-500) !important;

  background: var(--oa-primary-50) !important;
  color: var(--oa-primary-700) !important;
}

/* =========================================================
   EMPTY CURRICULUM
========================================================= */

.oa-course-curriculum .learn-press-message,
.oa-course-curriculum .learnpress-message {
  width: 100%;

  margin: 0 !important;

  padding: 24px !important;

  border: 1px solid var(--oa-border);
  border-radius: 10px;

  background: var(--oa-warm-cream);
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;

  text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-curriculum,
  .oa-course-curriculum.e-con {
    margin-bottom: 25px !important;

    padding: 20px !important;
  }

  .oa-course-curriculum .section-header,
  .oa-course-curriculum .course-section-header {
    min-height: 68px;

    padding: 16px 18px !important;
  }

  .oa-course-curriculum .section-item-link {
    padding: 14px 17px !important;
  }
}

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

@media (max-width: 767px) {
  .oa-course-curriculum,
  .oa-course-curriculum.e-con {
    margin-bottom: 22px !important;

    padding: 12px !important;

    border-radius: 13px;
  }

  .oa-course-curriculum .curriculum-sections {
    gap: 10px;
  }

  .oa-course-curriculum .section-header,
  .oa-course-curriculum .course-section-header {
    min-height: 64px;

    gap: 12px;

    padding: 14px 14px !important;
  }

  .oa-course-curriculum .section-left {
    align-items: flex-start !important;

    gap: 10px;
  }

  .oa-course-curriculum .section-title {
    font-size: 13px !important;
  }

  .oa-course-curriculum .section-desc {
    font-size: 10px !important;
  }

  .oa-course-curriculum .section-toggle {
    width: 29px;
    min-width: 29px;
    height: 29px;

    flex-basis: 29px;
  }

  .oa-course-curriculum .section-meta {
    display: none;
  }

  .oa-course-curriculum .section-item-link {
    align-items: flex-start !important;

    gap: 10px !important;

    padding: 14px 13px !important;
  }

  .oa-course-curriculum .section-item-link::before {
    width: 18px;
    min-width: 18px;
    height: 18px;

    flex-basis: 18px;
  }

  .oa-course-curriculum .item-name,
  .oa-course-curriculum .course-item-title {
    font-size: 11px !important;
  }

  .oa-course-curriculum .course-item-meta {
    flex-wrap: wrap;

    gap: 5px;

    margin-left: 6px;
  }

  .oa-course-curriculum .item-meta {
    font-size: 9px;
  }
}

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

@media (max-width: 390px) {
  .oa-course-curriculum,
  .oa-course-curriculum.e-con {
    padding: 10px !important;
  }

  .oa-course-curriculum .section-header,
  .oa-course-curriculum .course-section-header {
    padding: 13px 12px !important;
  }

  .oa-course-curriculum .section-item-link {
    padding: 13px 11px !important;
  }

  .oa-course-curriculum .course-item-meta {
    min-width: 0;

    white-space: normal;
  }
}

/* =========================================================
   ONIGELE — SINGLE COURSE STUDENT LIST
========================================================= */

.oa-course-tab--students,
.oa-course-tab--students.e-con {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* =========================================================
   PANEL
========================================================= */

.oa-course-students-panel,
.oa-course-students-panel.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 0 30px !important;

  padding: 0 !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.055);
}

.oa-course-students-widget,
.oa-course-students-widget .elementor-widget-container,
.oa-course-students-widget .elementor-shortcode {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

/* =========================================================
   STUDENT LIST ROOT
========================================================= */

.oa-course-students {
  width: 100%;

  margin: 0;

  padding: 32px;
}

/* =========================================================
   HEADER
========================================================= */

.oa-course-students__header {
  display: flex;

  width: 100%;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin: 0 0 28px;

  padding: 0 0 24px;

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

.oa-course-students__header-copy {
  display: flex;

  min-width: 0;

  flex-direction: column;
  align-items: flex-start;

  gap: 7px;
}

.oa-course-students__eyebrow {
  color: var(--oa-primary-500);

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.oa-course-students__title {
  margin: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.oa-course-students__count {
  display: inline-flex;

  min-height: 32px;

  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  padding: 7px 12px;

  border: 1px solid var(--oa-primary-100);
  border-radius: 999px;

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

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

.oa-course-students__grid {
  display: grid;

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

  width: 100%;

  gap: 16px;

  margin: 0;
  padding: 0;
}

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

.oa-course-student {
  display: flex;

  width: 100%;
  min-width: 0;
  min-height: 148px;

  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;

  gap: 22px;

  margin: 0;

  padding: 19px;

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

  background: var(--oa-white);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-course-student:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 10px 26px rgba(22, 22, 22, 0.065);

  transform: translateY(-2px);
}

/* =========================================================
   IDENTITY
========================================================= */

.oa-course-student__identity {
  display: flex;

  width: 100%;
  min-width: 0;

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

  gap: 13px;
}

.oa-course-student__avatar {
  width: 50px;
  min-width: 50px;
  height: 50px;

  flex: 0 0 50px;

  overflow: hidden;

  border: 2px solid var(--oa-primary-100);
  border-radius: 50%;

  background: var(--oa-primary-50);
}

.oa-course-student__avatar-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.oa-course-student__identity-copy {
  display: flex;

  min-width: 0;

  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;

  gap: 6px;
}

.oa-course-student__name {
  width: 100%;

  margin: 0;

  overflow: hidden;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;

  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   STATUS
========================================================= */

.oa-course-student__status {
  display: inline-flex;

  min-height: 22px;

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

  padding: 4px 8px;

  border-radius: 999px;

  font-family: var(--oa-font-body);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;

  text-transform: uppercase;
}

.oa-course-student__status--progress {
  background: var(--oa-gold-50);
  color: var(--oa-gold-800);
}

.oa-course-student__status--completed {
  background: var(--oa-primary-50);
  color: var(--oa-primary-700);
}

.oa-course-student__status--finished {
  background: var(--oa-warm-peach);
  color: var(--oa-orange-700);
}

/* =========================================================
   PROGRESS
========================================================= */

.oa-course-student__progress {
  display: flex;

  width: 100%;

  flex-direction: column;

  gap: 9px;
}

.oa-course-student__progress-head {
  display: flex;

  width: 100%;

  align-items: center;
  justify-content: space-between;

  gap: 18px;
}

.oa-course-student__progress-label {
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.oa-course-student__progress-value {
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.oa-course-student__progress-track {
  position: relative;

  width: 100%;
  height: 7px;

  overflow: hidden;

  border-radius: 999px;

  background: var(--oa-primary-50);
}

.oa-course-student__progress-fill {
  position: absolute;

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

  min-width: 0;

  border-radius: inherit;

  background: var(--oa-gradient-primary);
}

/* =========================================================
   FOOTER AND LOAD MORE
========================================================= */

.oa-course-students__footer {
  display: flex;

  width: 100%;

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

  margin: 28px 0 0;
}

.oa-course-students__load-more {
  display: inline-flex;

  min-width: 190px;
  min-height: 48px;

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

  padding: 13px 20px;

  border: 1px solid var(--oa-primary-300);
  border-radius: 8px;

  background: var(--oa-white);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast);
}

.oa-course-students__load-more:hover {
  border-color: var(--oa-primary-500);

  background: var(--oa-primary-50);
}

.oa-course-students__load-more:disabled {
  cursor: wait;
  opacity: 0.65;
}

.oa-course-students__feedback {
  min-height: 18px;

  margin: 13px 0 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 10px;
  line-height: 1.5;

  text-align: center;
}

/* =========================================================
   GATED AND EMPTY STATES
========================================================= */

.oa-course-students__gate,
.oa-course-students__empty {
  display: flex;

  width: 100%;
  min-height: 180px;

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

  gap: 18px;

  padding: 34px;

  background: var(--oa-warm-cream);
}

.oa-course-students__gate-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;

  flex: 0 0 46px;

  border-radius: 50%;

  background: var(--oa-primary-50);

  position: relative;
}

.oa-course-students__gate-icon::before {
  content: "";

  position: absolute;

  inset: 12px;

  background: var(--oa-primary-500);

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10V8a5 5 0 0 1 10 0v2h1a2 2 0 0 1 2 2v8H4v-8a2 2 0 0 1 2-2h1Zm2 0h6V8a3 3 0 0 0-6 0v2Z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10V8a5 5 0 0 1 10 0v2h1a2 2 0 0 1 2 2v8H4v-8a2 2 0 0 1 2-2h1Zm2 0h6V8a3 3 0 0 0-6 0v2Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.oa-course-students__gate-copy {
  display: flex;

  min-width: 0;

  flex: 1 1 auto;
  flex-direction: column;

  gap: 6px;
}

.oa-course-students__gate h3,
.oa-course-students__empty h3 {
  margin: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.oa-course-students__gate p,
.oa-course-students__empty p {
  max-width: 560px;

  margin: 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 12px;
  line-height: 1.6;
}

.oa-course-students__gate-link {
  display: inline-flex;

  min-width: 110px;
  min-height: 44px;

  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;

  border-radius: 8px;

  background: var(--oa-gradient-primary);
  color: var(--oa-white) !important;

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 700;

  text-decoration: none !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-students-panel,
  .oa-course-students-panel.e-con {
    margin-bottom: 25px !important;
  }

  .oa-course-students {
    padding: 26px;
  }
}

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

@media (max-width: 767px) {
  .oa-course-students-panel,
  .oa-course-students-panel.e-con {
    margin-bottom: 22px !important;

    border-radius: 13px;
  }

  .oa-course-students {
    padding: 20px 16px;
  }

  .oa-course-students__header {
    align-items: flex-start;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 21px;
    padding-bottom: 19px;
  }

  .oa-course-students__grid {
    grid-template-columns: minmax(0, 1fr);

    gap: 12px;
  }

  .oa-course-student {
    min-height: 140px;

    padding: 17px;
  }

  .oa-course-students__gate,
  .oa-course-students__empty {
    align-items: flex-start;

    flex-direction: column;

    padding: 25px 20px;
  }

  .oa-course-students__gate-link {
    width: 100%;
  }
}

/* =========================================================
   ONIGELE — SINGLE COURSE FAQ TAB
========================================================= */

.oa-course-tab--faq,
.oa-course-tab--faq.e-con {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* =========================================================
   PANEL
========================================================= */

.oa-course-faqs-panel,
.oa-course-faqs-panel.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: stretch !important;

  margin: 0 0 30px !important;

  padding: 0 !important;

  overflow: hidden;

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

  background: var(--oa-white);

  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.055);
}

.oa-course-faqs-widget,
.oa-course-faqs-widget .elementor-widget-container,
.oa-course-faqs-widget .elementor-shortcode {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

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

.oa-course-faqs {
  width: 100%;

  margin: 0;

  padding: 32px;
}

/* =========================================================
   HEADER
========================================================= */

.oa-course-faqs__header {
  display: flex;

  width: 100%;

  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin: 0 0 28px;

  padding: 0 0 24px;

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

.oa-course-faqs__header-copy {
  display: flex;

  min-width: 0;

  flex-direction: column;
  align-items: flex-start;

  gap: 7px;
}

.oa-course-faqs__eyebrow {
  color: var(--oa-primary-500);

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.oa-course-faqs__title {
  margin: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;

  letter-spacing: -0.03em;
}

.oa-course-faqs__intro {
  max-width: 590px;

  margin: 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.oa-course-faqs__count {
  display: inline-flex;

  min-height: 32px;

  flex: 0 0 auto;
  align-items: center;
  justify-content: center;

  padding: 7px 12px;

  border: 1px solid var(--oa-primary-100);
  border-radius: 999px;

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

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

.oa-course-faqs__list {
  display: flex;

  width: 100%;

  flex-direction: column;

  gap: 12px;
}

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

.oa-course-faq {
  width: 100%;

  overflow: hidden;

  border: 1px solid var(--oa-border);
  border-radius: 11px;

  background: var(--oa-white);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-course-faq[open] {
  border-color: var(--oa-primary-300);

  box-shadow: 0 9px 24px rgba(160, 20, 109, 0.07);
}

/* =========================================================
   QUESTION
========================================================= */

.oa-course-faq__question {
  display: grid;

  grid-template-columns:
    34px
    minmax(0, 1fr)
    32px;

  width: 100%;
  min-height: 66px;

  align-items: center;

  gap: 14px;

  padding: 15px 18px;

  background: var(--oa-white);
  color: var(--oa-primary-900);

  cursor: pointer;

  list-style: none;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast);
}

.oa-course-faq__question::-webkit-details-marker {
  display: none;
}

.oa-course-faq__question::marker {
  content: "";
}

.oa-course-faq__question:hover {
  background: var(--oa-neutral-50);
}

.oa-course-faq[open] .oa-course-faq__question {
  background: var(--oa-primary-700);
  color: var(--oa-white);
}

/* =========================================================
   QUESTION NUMBER
========================================================= */

.oa-course-faq__number {
  display: inline-flex;

  width: 34px;
  height: 34px;

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

  border-radius: 50%;

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);

  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.oa-course-faq[open] .oa-course-faq__number {
  background: rgba(255, 255, 255, 0.14);
  color: var(--oa-white);
}

/* =========================================================
   QUESTION TEXT
========================================================= */

.oa-course-faq__question-text {
  min-width: 0;

  color: inherit;

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

/* =========================================================
   PLUS / CLOSE ICON
========================================================= */

.oa-course-faq__toggle {
  position: relative;

  display: inline-flex;

  width: 32px;
  height: 32px;

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

  border: 1px solid var(--oa-primary-100);
  border-radius: 50%;

  background: var(--oa-primary-50);
  color: var(--oa-primary-700);
}

.oa-course-faq__toggle::before,
.oa-course-faq__toggle::after {
  content: "";

  position: absolute;

  width: 11px;
  height: 1.5px;

  border-radius: 999px;

  background: currentColor;

  transition: transform var(--oa-transition-fast);
}

.oa-course-faq__toggle::after {
  transform: rotate(90deg);
}

.oa-course-faq[open] .oa-course-faq__toggle {
  border-color: rgba(255, 255, 255, 0.24);

  background: rgba(255, 255, 255, 0.13);
  color: var(--oa-white);
}

.oa-course-faq[open] .oa-course-faq__toggle::after {
  transform: rotate(0deg);
}

/* =========================================================
   ANSWER
========================================================= */

.oa-course-faq__answer {
  width: 100%;

  background: var(--oa-white);
}

.oa-course-faq__answer-inner {
  width: 100%;
  max-width: 820px;

  padding: 21px 66px 23px;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.oa-course-faq__answer-inner p {
  margin: 0 0 13px;
}

.oa-course-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.oa-course-faq__answer-inner ul,
.oa-course-faq__answer-inner ol {
  margin: 12px 0 14px;

  padding-left: 20px;
}

.oa-course-faq__answer-inner a {
  color: var(--oa-primary-600);

  font-weight: 600;

  text-underline-offset: 3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-faqs-panel,
  .oa-course-faqs-panel.e-con {
    margin-bottom: 25px !important;
  }

  .oa-course-faqs {
    padding: 26px;
  }
}

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

@media (max-width: 767px) {
  .oa-course-faqs-panel,
  .oa-course-faqs-panel.e-con {
    margin-bottom: 22px !important;

    border-radius: 13px;
  }

  .oa-course-faqs {
    padding: 20px 16px;
  }

  .oa-course-faqs__header {
    align-items: flex-start;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 21px;
    padding-bottom: 19px;
  }

  .oa-course-faq__question {
    grid-template-columns:
      30px
      minmax(0, 1fr)
      29px;

    min-height: 62px;

    gap: 11px;

    padding: 14px 13px;
  }

  .oa-course-faq__number,
  .oa-course-faq__toggle {
    width: 29px;
    height: 29px;
  }

  .oa-course-faq__question-text {
    font-size: 12px;
  }

  .oa-course-faq__answer-inner {
    padding: 19px 18px 21px;

    font-size: 12px;
  }
}

/* =========================================================
   CONDITIONAL FAQ TAB VISIBILITY
========================================================= */

.oa-course-tab-title--conditionally-hidden,
.oa-course-tab--conditionally-hidden {
  display: none !important;
}

/* Four equal columns when the FAQ tab is unavailable */

.oa-course-details__tabs--no-faq > .e-n-tabs-heading {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/*
 * Immediate browser-level fallback.
 * FAQ is the fourth item in the approved fixed tab order.
 */

.oa-course-details__tabs:has([data-oa-course-faqs-empty="true"])
  > .e-n-tabs-heading
  > .e-n-tab-title:nth-child(4) {
  display: none !important;
}

.oa-course-details__tabs:has([data-oa-course-faqs-empty="true"])
  > .e-n-tabs-content
  > :nth-child(4) {
  display: none !important;
}

.oa-course-details__tabs:has([data-oa-course-faqs-empty="true"])
  > .e-n-tabs-heading {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Mobile remains a horizontally scrolling flex row */

@media (max-width: 767px) {
  .oa-course-details__tabs--no-faq > .e-n-tabs-heading,
  .oa-course-details__tabs:has([data-oa-course-faqs-empty="true"])
    > .e-n-tabs-heading {
    display: flex !important;
  }
}

/* =========================================================
   ONIGELE — SINGLE COURSE REVIEWS
========================================================= */

.oa-course-tab--reviews,
.oa-course-tab--reviews.e-con {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* =========================================================
   PANEL
========================================================= */

.oa-course-reviews-panel,
.oa-course-reviews-panel.e-con {
  display: flex !important;
  width: 100% !important;
  min-width: 0;
  flex-direction: column !important;
  align-items: stretch !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--oa-border);
  border-radius: 15px;
  background: var(--oa-white);
  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.055);
}

.oa-course-reviews-widget,
.oa-course-reviews-widget .elementor-widget-container,
.oa-course-reviews-widget .elementor-shortcode {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

/* =========================================================
   OUTER CONTENT
========================================================= */

.oa-course-reviews {
  width: 100%;
  margin: 0;
  padding: 32px;
}

.oa-course-reviews__header {
  width: 100%;
  margin: 0 0 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--oa-border);
}

.oa-course-reviews__header-copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.oa-course-reviews__eyebrow {
  color: var(--oa-primary-500);
  font-family: var(--oa-font-body);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.oa-course-reviews__title {
  margin: 0;
  color: var(--oa-primary-900);
  font-family: var(--oa-font-heading);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.oa-course-reviews__intro {
  margin: 0;
  color: var(--oa-text-secondary);
  font-family: var(--oa-font-body);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   NATIVE ADD-ON RESET
========================================================= */

.oa-course-reviews__native
  :where(.learnpress-course-review, .lp-rating-reviews-wrapper) {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* Hide duplicate native title */

.oa-course-reviews__native :where(.item-title, > h3:first-child) {
  display: none;
}

/* =========================================================
   RATING SUMMARY
========================================================= */

.oa-course-reviews__native
  :where(.course-rate, .course-rating, .course-sum-rating) {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 0 0 28px !important;
  padding: 24px !important;
  border: 1px solid var(--oa-border);
  border-radius: 12px;
  background: var(--oa-warm-cream);
}

.oa-course-reviews__native
  :where(.course-rate__summary-value, .rating-number, .average) {
  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.oa-course-reviews__native :where(.review-stars-rated, .review-stars) {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--oa-gold-500);
  list-style: none;
}

.oa-course-reviews__native :where(.review-stars-rated svg, .review-stars svg) {
  width: 17px;
  height: 17px;
  color: var(--oa-gold-500);
  fill: currentColor;
}

/* =========================================================
   WRITE REVIEW BUTTON
========================================================= */

.oa-course-reviews__native
  :where(.write-a-review, .submit-review, button.lp-button) {
  display: inline-flex !important;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 12px 19px !important;
  border: 1px solid var(--oa-primary-500) !important;
  border-radius: 8px !important;
  background: var(--oa-gradient-primary) !important;
  color: var(--oa-white) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  cursor: pointer;
}

.oa-course-reviews__native
  :where(.write-a-review, .submit-review, button.lp-button):hover {
  background: var(--oa-gradient-primary-hover) !important;
}

/* =========================================================
   REVIEW FORM
========================================================= */

.oa-course-reviews__native
  :where(.course-review-wrapper, .course-review-form, .review-form) {
  width: 100%;
  margin: 22px 0 28px !important;
}

.oa-course-reviews__native .review-form {
  padding: 25px !important;
  border: 1px solid var(--oa-primary-100);
  border-radius: 12px;
  background: var(--oa-primary-50);
}

.oa-course-reviews__native .review-form h4 {
  margin: 0 0 21px !important;
  color: var(--oa-primary-900);
  font-family: var(--oa-font-heading);
  font-size: 23px;
  font-weight: 800;
}

.oa-course-reviews__native .review-fields {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 17px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.oa-course-reviews__native .review-fields > li {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
}

.oa-course-reviews__native .review-fields label {
  color: var(--oa-neutral-700);
  font-family: var(--oa-font-body);
  font-size: 11px;
  font-weight: 700;
}

.oa-course-reviews__native :where(input[type="text"], textarea) {
  width: 100% !important;
  min-height: 48px;
  padding: 12px 14px !important;
  border: 1px solid var(--oa-border) !important;
  border-radius: 8px !important;
  background: var(--oa-white) !important;
  color: var(--oa-neutral-700) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  box-shadow: none !important;
  outline: none;
}

.oa-course-reviews__native textarea {
  min-height: 130px;
  resize: vertical;
}

.oa-course-reviews__native :where(input[type="text"], textarea):focus {
  border-color: var(--oa-primary-400) !important;
}

/* Selectable rating stars */

.oa-course-reviews__native .review-stars {
  gap: 6px;
}

.oa-course-reviews__native .choose-star {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--oa-neutral-300);
  cursor: pointer;
}

.oa-course-reviews__native
  :where(.choose-star.hover, .choose-star.selected, .choose-star.active) {
  color: var(--oa-gold-500);
}

/* Form actions */

.oa-course-reviews__native .review-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px !important;
}

.oa-course-reviews__native .review-actions .close {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px !important;
  border: 1px solid var(--oa-primary-300) !important;
  border-radius: 8px !important;
  background: var(--oa-white) !important;
  color: var(--oa-primary-700) !important;
  font-family: var(--oa-font-body);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* =========================================================
   REVIEW LIST
========================================================= */

.oa-course-reviews__native
  :where(.course-reviews-list, .review-items, .review-list) {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.oa-course-reviews__native :where(.course-review-item, .review-item) {
  width: 100%;
  margin: 0 !important;
  padding: 20px !important;
  border: 1px solid var(--oa-border);
  border-radius: 12px;
  background: var(--oa-white);
}

.oa-course-reviews__native
  :where(.review-author, .user-name, .review-author-info) {
  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.oa-course-reviews__native :where(.review-title, .review-title-course) {
  margin: 12px 0 7px !important;
  color: var(--oa-primary-900) !important;
  font-family: var(--oa-font-heading) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.oa-course-reviews__native :where(.review-content, .review-text) {
  color: var(--oa-text-secondary) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.oa-course-reviews__native :where(.review-date, .review-time) {
  color: var(--oa-neutral-400) !important;
  font-family: var(--oa-font-body) !important;
  font-size: 10px !important;
}

/* =========================================================
   NATIVE LOAD MORE
========================================================= */

.oa-course-reviews__native :where(.review-load-more, .load-more) {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 24px 0 0 !important;
}

/* =========================================================
   SETUP AND EMPTY STATES
========================================================= */

.oa-course-reviews__setup,
.oa-course-reviews__empty {
  width: 100%;
  padding: 30px;
  background: var(--oa-warm-cream);
  text-align: center;
}

.oa-course-reviews__setup strong,
.oa-course-reviews__empty h3 {
  display: block;
  margin: 0 0 7px;
  color: var(--oa-primary-900);
  font-family: var(--oa-font-heading);
  font-size: 22px;
  font-weight: 800;
}

.oa-course-reviews__setup p,
.oa-course-reviews__empty p {
  margin: 0;
  color: var(--oa-text-secondary);
  font-family: var(--oa-font-body);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-course-reviews-panel,
  .oa-course-reviews-panel.e-con {
    margin-bottom: 25px !important;
  }

  .oa-course-reviews {
    padding: 26px;
  }
}

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

@media (max-width: 767px) {
  .oa-course-reviews-panel,
  .oa-course-reviews-panel.e-con {
    margin-bottom: 22px !important;
    border-radius: 13px;
  }

  .oa-course-reviews {
    padding: 20px 16px;
  }

  .oa-course-reviews__header {
    margin-bottom: 21px;
    padding-bottom: 19px;
  }

  .oa-course-reviews__native
    :where(.course-rate, .course-rating, .course-sum-rating) {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 19px !important;
  }

  .oa-course-reviews__native .review-form {
    padding: 20px 16px !important;
  }

  .oa-course-reviews__native .review-actions {
    align-items: stretch;
    flex-direction: column !important;
  }

  .oa-course-reviews__native .review-actions :where(button, .close) {
    width: 100%;
  }
}

/* Hide the complete related-course section when no other
   published course exists. */

.oa-no-related-courses .oa-related-courses {
  display: none !important;
}

/* =========================================================
   ONIGELE ACADEMY — ACADEMY PAGE
========================================================= */

/* ---------------------------------------------------------
   PAGE ROOT
--------------------------------------------------------- */

.oa-academy-page,
.oa-academy-page.e-con {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  overflow-x: clip;

  background: var(--oa-white);
}

/* =========================================================
   SECTION 01 — ACADEMY HERO
========================================================= */

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

.oa-academy-hero,
.oa-academy-hero.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at -7% 64%,
      rgba(160, 20, 109, 0.14) 0%,
      transparent 27%
    ),
    radial-gradient(
      circle at 76% 4%,
      rgba(242, 176, 30, 0.1) 0%,
      transparent 24%
    ),
    linear-gradient(
      135deg,
      var(--oa-warm-cream) 0%,
      var(--oa-primary-50) 54%,
      #fffaf7 100%
    );
}

/* Gold decorative curve */

.oa-academy-hero::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: 102px;
  right: -130px;

  width: 320px;
  height: 245px;

  border: 1.5px solid rgba(242, 176, 30, 0.68);

  border-radius: 50%;

  opacity: 0.82;

  transform: rotate(-18deg);

  pointer-events: none;
}

/* Small gold diamond */

.oa-academy-hero::after {
  content: "";

  position: absolute;
  z-index: 1;

  top: 245px;
  right: 43px;

  width: 10px;
  height: 10px;

  border-radius: 1px;

  background: var(--oa-gold-400);

  opacity: 0.74;

  transform: rotate(45deg);

  pointer-events: none;
}

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

   The oa-container class remains on this Container, but this
   section-specific rule repeats the established width formula
   so it reliably overrides Elementor's generated e-con width.
--------------------------------------------------------- */

.oa-academy-hero__inner,
.oa-academy-hero__inner.e-con {
  position: relative;
  z-index: 2;

  display: grid !important;

  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(430px, 1.04fr);

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;
  min-height: 720px;

  align-items: end !important;

  gap: 64px !important;

  margin: 0 auto !important;

  /*
   * The global header is fixed over the page.
   * The top padding creates the required clearance and
   * breathing room beneath the navigation.
   */
  padding: 100px 0 0 !important;
}

/* ---------------------------------------------------------
   CONTENT COLUMN
--------------------------------------------------------- */

.oa-academy-hero__content,
.oa-academy-hero__content.e-con {
  position: relative;
  z-index: 3;

  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 20px !important;

  margin: 0 !important;

  padding: 0 0 64px !important;
}

/* ---------------------------------------------------------
   EYEBROW

   oa-eyebrow continues to control typography.
   This section changes only colour and positioning.
--------------------------------------------------------- */

.oa-academy-hero__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-primary-500) !important;
}

.oa-academy-hero__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

   oa-heading-1 continues to control typography.
--------------------------------------------------------- */

.oa-academy-hero__title {
  width: 100%;
  max-width: 640px;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-hero__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-hero__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;
}

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

   oa-body-regular continues to control typography.
--------------------------------------------------------- */

.oa-academy-hero__description {
  width: 100%;
  max-width: 560px;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-hero__description .elementor-widget-container {
  width: 100%;
}

.oa-academy-hero__description p {
  max-width: 560px;

  margin: 0;

  color: inherit !important;
}

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

.oa-academy-hero__actions,
.oa-academy-hero__actions.e-con {
  display: flex !important;

  width: auto !important;

  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px !important;

  margin: 6px 0 0 !important;

  padding: 0 !important;
}

.oa-academy-hero__actions .elementor-widget-button {
  width: auto;
}

.oa-academy-hero__actions .elementor-button {
  min-height: 48px;

  padding: 15px 22px !important;
}

.oa-academy-hero__actions .elementor-button-icon {
  transition: transform var(--oa-transition-fast);
}

.oa-academy-hero__actions .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   VISUAL COLUMN
--------------------------------------------------------- */

.oa-academy-hero__visual,
.oa-academy-hero__visual.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 600px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

/* Organic pale-plum shape behind portrait */

.oa-academy-hero__visual::before {
  content: "";

  position: absolute;
  z-index: 0;

  right: 3%;
  bottom: -7%;

  width: 91%;
  aspect-ratio: 1;

  border-radius: 48% 52% 43% 57% / 54% 42% 58% 46%;

  background: radial-gradient(
    circle at 50% 42%,
    rgba(247, 236, 243, 0.42),
    rgba(240, 217, 232, 0.8)
  );

  transform: rotate(-3deg);

  pointer-events: none;
}

/* Restrained decorative dot grid */

.oa-academy-hero__visual::after {
  content: "";

  position: absolute;
  z-index: 1;

  top: 88px;
  right: 4%;

  width: 78px;
  height: 65px;

  opacity: 0.56;

  background-image: radial-gradient(
    circle,
    rgba(242, 176, 30, 0.66) 1.4px,
    transparent 1.7px
  );

  background-size: 13px 13px;

  pointer-events: none;
}

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

   The custom class is targeted directly, matching the
   existing Homepage and Courses-page image implementation.
--------------------------------------------------------- */

.oa-academy-hero__image {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: none;

  align-self: end;

  margin: 0;
  padding: 0;
}

.oa-academy-hero__image .elementor-widget-container {
  display: flex;

  width: 100%;

  align-items: flex-end;
  justify-content: center;
}

.oa-academy-hero__image picture {
  display: block;

  width: 100%;
}

.oa-academy-hero__image a {
  display: block;

  width: 100%;
}

.oa-academy-hero__image img {
  display: block;

  width: 100%;
  max-width: 660px;
  max-height: 600px;

  margin: 0 auto;

  object-fit: contain;
  object-position: bottom center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-hero__inner,
  .oa-academy-hero__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;
    min-height: auto;

    gap: 42px !important;

    padding: 150px 0 64px !important;
  }

  .oa-academy-hero__content,
  .oa-academy-hero__content.e-con {
    width: 100% !important;
    max-width: 720px;

    padding-bottom: 0 !important;
  }

  .oa-academy-hero__title {
    max-width: 680px;
  }

  .oa-academy-hero__description,
  .oa-academy-hero__description p {
    max-width: 620px;
  }

  .oa-academy-hero__visual,
  .oa-academy-hero__visual.e-con {
    width: min(100%, 680px) !important;
    min-height: 525px;

    margin-inline: auto !important;
  }

  .oa-academy-hero__image img {
    max-width: 650px;
    max-height: 535px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-hero::after {
    display: none;
  }

  .oa-academy-hero__inner,
  .oa-academy-hero__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 36px !important;

    padding: 128px 0 52px !important;
  }

  .oa-academy-hero__content,
  .oa-academy-hero__content.e-con {
    gap: 18px !important;
  }

  .oa-academy-hero__title,
  .oa-academy-hero__title .elementor-heading-title {
    max-width: 100%;
  }

  .oa-academy-hero__description,
  .oa-academy-hero__description p {
    max-width: 100%;
  }

  .oa-academy-hero__actions,
  .oa-academy-hero__actions.e-con {
    width: 100% !important;

    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;

    gap: 11px !important;

    margin-top: 4px !important;
  }

  .oa-academy-hero__actions .elementor-widget-button,
  .oa-academy-hero__actions
    .elementor-widget-button
    .elementor-widget-container,
  .oa-academy-hero__actions .elementor-button {
    width: 100%;
  }

  .oa-academy-hero__visual,
  .oa-academy-hero__visual.e-con {
    width: 100% !important;
    min-height: 420px;

    margin-inline: auto !important;
  }

  .oa-academy-hero__visual::before {
    right: -2%;
    bottom: -4%;

    width: 104%;
  }

  .oa-academy-hero__image {
    width: 110%;

    margin-right: -5%;
  }

  .oa-academy-hero__image img {
    max-width: 100%;
    max-height: 435px;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-hero__inner,
  .oa-academy-hero__inner.e-con {
    padding-top: 120px !important;
  }

  .oa-academy-hero__visual,
  .oa-academy-hero__visual.e-con {
    min-height: 385px;
  }

  .oa-academy-hero__image img {
    max-height: 395px;
  }
}

/* =========================================================
   SECTION 02 — INTRODUCTION AND TEACHING APPROACH
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-teaching,
.oa-academy-teaching.e-con {
  position: relative;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background: var(--oa-white);
}

/* Restrained warm decorative glow */

.oa-academy-teaching::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: 90px;
  left: -170px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: rgba(242, 176, 30, 0.045);

  filter: blur(14px);

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-teaching__inner,
.oa-academy-teaching__inner.e-con {
  position: relative;
  z-index: 1;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 56px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   REUSABLE ACADEMY SECTION HEADER
========================================================= */

.oa-academy-section-header,
.oa-academy-section-header.e-con {
  display: flex !important;

  width: 100% !important;
  max-width: 830px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-academy-teaching__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-primary-500) !important;
}

.oa-academy-teaching__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-academy-teaching__title {
  width: 100%;
  max-width: 760px;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-teaching__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-teaching__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;

  text-align: center;
}

/* ---------------------------------------------------------
   SECTION COPY
--------------------------------------------------------- */

.oa-academy-teaching__copy {
  width: 100%;
  max-width: 790px;

  margin: 0;

  color: var(--oa-text-secondary) !important;
}

.oa-academy-teaching__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-teaching__copy p {
  max-width: 790px;

  margin: 0 auto 12px;

  color: inherit !important;

  text-align: center;
}

.oa-academy-teaching__copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   TEACHING CARDS GRID
========================================================= */

.oa-academy-teaching__cards,
.oa-academy-teaching__cards.e-con {
  display: grid !important;

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

  width: 100% !important;

  align-items: stretch !important;

  gap: 24px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   INDIVIDUAL CARD
--------------------------------------------------------- */

.oa-academy-teaching__card,
.oa-academy-teaching__card.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 285px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 34px 32px !important;

  overflow: hidden;

  border: 1px solid var(--oa-border);
  border-radius: var(--oa-radius-medium);

  box-shadow: 0 14px 38px rgba(22, 22, 22, 0.055);

  transition:
    transform var(--oa-transition-default),
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

.oa-academy-teaching__card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 22px 50px rgba(77, 10, 52, 0.09);

  transform: translateY(-5px);
}

/* Small top accent */

.oa-academy-teaching__card::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  pointer-events: none;
}

/* ---------------------------------------------------------
   CARD COLOUR VARIATIONS
--------------------------------------------------------- */

.oa-academy-teaching__card--practical {
  background: var(--oa-warm-cream);
}

.oa-academy-teaching__card--practical::before {
  background: var(--oa-orange-400);
}

.oa-academy-teaching__card--guidance {
  background: var(--oa-primary-50);
}

.oa-academy-teaching__card--guidance::before {
  background: var(--oa-primary-400);
}

.oa-academy-teaching__card--creative {
  background: var(--oa-gold-50);
}

.oa-academy-teaching__card--creative::before {
  background: var(--oa-gold-500);
}

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

.oa-academy-teaching__icon {
  width: auto;

  margin: 0 0 26px;
}

.oa-academy-teaching__icon .elementor-icon {
  display: inline-flex;

  width: 56px;
  height: 56px;

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

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.76);

  font-size: 23px;

  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.055);
}

.oa-academy-teaching__card--practical
  .oa-academy-teaching__icon
  .elementor-icon {
  color: var(--oa-orange-600);
}

.oa-academy-teaching__card--guidance
  .oa-academy-teaching__icon
  .elementor-icon {
  color: var(--oa-primary-600);
}

.oa-academy-teaching__card--creative
  .oa-academy-teaching__icon
  .elementor-icon {
  color: var(--oa-gold-700);
}

.oa-academy-teaching__icon svg {
  width: 23px;
  height: 23px;

  /* fill: currentColor; */
}

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

.oa-academy-teaching__card-title {
  width: 100%;

  margin: 0 0 13px;

  color: var(--oa-primary-900) !important;
}

.oa-academy-teaching__card-title .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

.oa-academy-teaching__card-copy {
  width: 100%;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-teaching__card-copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-teaching__card-copy p {
  margin: 0;

  color: inherit !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-teaching,
  .oa-academy-teaching.e-con {
    padding: 88px 0;
  }

  .oa-academy-teaching__inner,
  .oa-academy-teaching__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 46px !important;
  }

  .oa-academy-teaching__cards,
  .oa-academy-teaching__cards.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px !important;
  }

  .oa-academy-teaching__card--creative {
    grid-column: 1 / -1;

    min-height: 240px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-teaching,
  .oa-academy-teaching.e-con {
    padding: 72px 0;
  }

  .oa-academy-teaching__inner,
  .oa-academy-teaching__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 38px !important;
  }

  .oa-academy-section-header,
  .oa-academy-section-header.e-con {
    gap: 12px !important;
  }

  .oa-academy-teaching__cards,
  .oa-academy-teaching__cards.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 16px !important;
  }

  .oa-academy-teaching__card,
  .oa-academy-teaching__card.e-con {
    min-height: auto;

    padding: 28px 24px !important;
  }

  .oa-academy-teaching__card--creative {
    grid-column: auto;
  }

  .oa-academy-teaching__icon {
    margin-bottom: 22px;
  }

  .oa-academy-teaching__icon .elementor-icon {
    width: 52px;
    height: 52px;

    border-radius: 15px;

    font-size: 21px;
  }

  .oa-academy-teaching__icon svg {
    width: 21px;
    height: 21px;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-teaching,
  .oa-academy-teaching.e-con {
    padding: 64px 0;
  }

  .oa-academy-teaching__card,
  .oa-academy-teaching__card.e-con {
    padding: 26px 21px !important;
  }
}

/* =========================================================
   SECTION 03 — ONLINE ACADEMY
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-online,
.oa-academy-online.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 94% 5%,
      rgba(242, 176, 30, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgba(160, 20, 109, 0.07),
      transparent 26%
    ),
    var(--oa-warm-cream);
}

/* Large subtle outlined circle */

.oa-academy-online::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -170px;
  right: -160px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(242, 176, 30, 0.2);

  border-radius: 50%;

  pointer-events: none;
}

/* Decorative dot field */

.oa-academy-online::after {
  content: "";

  position: absolute;
  z-index: 0;

  bottom: 54px;
  left: 28px;

  width: 86px;
  height: 72px;

  opacity: 0.42;

  background-image: radial-gradient(
    circle,
    var(--oa-primary-300) 1.5px,
    transparent 1.8px
  );

  background-size: 14px 14px;

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-online__inner,
.oa-academy-online__inner.e-con {
  position: relative;
  z-index: 1;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 54px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.oa-academy-online__header,
.oa-academy-online__header.e-con {
  max-width: 850px;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-academy-online__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-primary-500) !important;
}

.oa-academy-online__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.oa-academy-online__title {
  width: 100%;
  max-width: 780px;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-online__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-online__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;

  text-align: center;
}

/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.oa-academy-online__copy {
  width: 100%;
  max-width: 820px;

  margin: 0;

  color: var(--oa-text-secondary) !important;
}

.oa-academy-online__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-online__copy p {
  max-width: 820px;

  margin: 0 auto 12px;

  color: inherit !important;

  text-align: center;
}

.oa-academy-online__copy p:last-child {
  margin-bottom: 0;
}

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

.oa-academy-online__benefits,
.oa-academy-online__benefits.e-con {
  display: grid !important;

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

  width: 100% !important;

  align-items: stretch !important;

  gap: 20px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   BENEFIT ITEM
--------------------------------------------------------- */

.oa-academy-online__benefit,
.oa-academy-online__benefit.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 260px;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 30px 24px !important;

  overflow: hidden;

  border: 1px solid rgba(236, 231, 226, 0.94);

  border-radius: var(--oa-radius-medium);

  background: rgba(255, 255, 255, 0.78);

  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.05);

  text-align: center;

  transition:
    transform var(--oa-transition-default),
    border-color var(--oa-transition-default),
    background var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

.oa-academy-online__benefit:hover {
  border-color: var(--oa-primary-200);

  background: var(--oa-white);

  box-shadow: 0 22px 54px rgba(77, 10, 52, 0.09);

  transform: translateY(-5px);
}

/* Bottom colour accent */

.oa-academy-online__benefit::after {
  content: "";

  position: absolute;

  right: 24px;
  bottom: 0;
  left: 24px;

  height: 3px;

  border-radius: var(--oa-radius-pill) var(--oa-radius-pill) 0 0;

  opacity: 0.78;

  pointer-events: none;
}

.oa-academy-online__benefit--pace::after {
  background: var(--oa-primary-400);
}

.oa-academy-online__benefit--revisit::after {
  background: var(--oa-gold-500);
}

.oa-academy-online__benefit--technique::after {
  background: var(--oa-orange-500);
}

.oa-academy-online__benefit--access::after {
  background: var(--oa-primary-600);
}

/* =========================================================
   BENEFIT ICON
========================================================= */

.oa-academy-online__icon {
  width: auto;

  margin: 0 0 24px;
}

.oa-academy-online__icon .elementor-icon {
  display: inline-flex;

  width: 62px;
  height: 62px;

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

  border: 1px solid rgba(225, 180, 208, 0.78);

  border-radius: 50%;

  background: var(--oa-primary-50);

  color: var(--oa-primary-600);

  font-size: 25px;

  box-shadow: 0 9px 26px rgba(77, 10, 52, 0.07);

  transition:
    color var(--oa-transition-default),
    background var(--oa-transition-default),
    transform var(--oa-transition-default);
}

.oa-academy-online__benefit:hover .oa-academy-online__icon .elementor-icon {
  background: var(--oa-primary-600);
  color: var(--oa-white);

  transform: rotate(-4deg) scale(1.04);
}

.oa-academy-online__icon svg {
  width: 25px;
  height: 25px;

  /* fill: currentColor; */
}

/* =========================================================
   BENEFIT TYPOGRAPHY
========================================================= */

.oa-academy-online__benefit-title {
  width: 100%;

  margin: 0 0 12px;

  color: var(--oa-primary-900) !important;
}

.oa-academy-online__benefit-title .elementor-heading-title {
  margin: 0;

  color: inherit !important;

  text-align: center;
}

.oa-academy-online__benefit-copy {
  width: 100%;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-online__benefit-copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-online__benefit-copy p {
  margin: 0;

  color: inherit !important;

  text-align: center;
}

/* =========================================================
   SECTION ACTION
========================================================= */

.oa-academy-online__action,
.oa-academy-online__action.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;

  margin: -4px 0 0 !important;

  padding: 0 !important;
}

.oa-academy-online__button {
  width: auto;
}

.oa-academy-online__button .elementor-button {
  min-height: 50px;

  padding: 16px 25px !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-online,
  .oa-academy-online.e-con {
    padding: 88px 0;
  }

  .oa-academy-online__inner,
  .oa-academy-online__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 46px !important;
  }

  .oa-academy-online__benefits,
  .oa-academy-online__benefits.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px !important;
  }

  .oa-academy-online__benefit,
  .oa-academy-online__benefit.e-con {
    min-height: 240px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-online,
  .oa-academy-online.e-con {
    padding: 72px 0;
  }

  .oa-academy-online__inner,
  .oa-academy-online__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 38px !important;
  }

  .oa-academy-online__benefits,
  .oa-academy-online__benefits.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 16px !important;
  }

  .oa-academy-online__benefit,
  .oa-academy-online__benefit.e-con {
    min-height: auto;

    padding: 28px 24px !important;
  }

  .oa-academy-online__icon {
    margin-bottom: 21px;
  }

  .oa-academy-online__icon .elementor-icon {
    width: 58px;
    height: 58px;

    font-size: 23px;
  }

  .oa-academy-online__icon svg {
    width: 23px;
    height: 23px;
  }

  .oa-academy-online__action .elementor-widget-button,
  .oa-academy-online__action .elementor-button {
    width: 100%;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-online,
  .oa-academy-online.e-con {
    padding: 64px 0;
  }

  .oa-academy-online__benefit,
  .oa-academy-online__benefit.e-con {
    padding: 26px 21px !important;
  }
}

/* =========================================================
   SECTION 04 — OFFLINE CLASSES
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-offline,
.oa-academy-offline.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background: var(--oa-white);
}

/* Soft plum background decoration */

.oa-academy-offline::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: 170px;
  right: -210px;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: rgba(240, 217, 232, 0.38);

  filter: blur(8px);

  pointer-events: none;
}

/* Subtle gold outline */

.oa-academy-offline::after {
  content: "";

  position: absolute;
  z-index: 0;

  bottom: 76px;
  left: -90px;

  width: 210px;
  height: 210px;

  border: 1px solid rgba(242, 176, 30, 0.22);

  border-radius: 50%;

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-offline__inner,
.oa-academy-offline__inner.e-con {
  position: relative;
  z-index: 1;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 56px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.oa-academy-offline__header,
.oa-academy-offline__header.e-con {
  max-width: 860px;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-academy-offline__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-primary-500) !important;
}

.oa-academy-offline__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-academy-offline__title {
  width: 100%;
  max-width: 800px;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-offline__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-offline__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;

  text-align: center;
}

/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.oa-academy-offline__copy {
  width: 100%;
  max-width: 810px;

  margin: 0;

  color: var(--oa-text-secondary) !important;
}

.oa-academy-offline__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-offline__copy p {
  max-width: 810px;

  margin: 0 auto 12px;

  color: inherit !important;

  text-align: center;
}

.oa-academy-offline__copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   PROGRAMME CARDS GRID
========================================================= */

.oa-academy-offline__cards,
.oa-academy-offline__cards.e-con {
  display: grid !important;

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

  width: 100% !important;

  align-items: stretch !important;

  gap: 24px !important;

  margin: 0 !important;
  padding: 0 !important;
}

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

.oa-academy-offline__card,
.oa-academy-offline__card.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 500px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 34px 30px !important;

  overflow: hidden;

  border: 1px solid var(--oa-border);

  border-radius: var(--oa-radius-card);

  background: var(--oa-white);

  box-shadow: 0 16px 44px rgba(22, 22, 22, 0.06);

  transition:
    transform var(--oa-transition-default),
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

.oa-academy-offline__card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 24px 58px rgba(77, 10, 52, 0.1);

  transform: translateY(-6px);
}

/* Top colour accent */

.oa-academy-offline__card::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 5px;

  pointer-events: none;
}

.oa-academy-offline__card--personal::before {
  background: var(--oa-orange-400);
}

.oa-academy-offline__card--foundation::before {
  background: var(--oa-primary-400);
}

.oa-academy-offline__card--advanced::before {
  background: var(--oa-gold-500);
}

/* Card background variation */

.oa-academy-offline__card--personal {
  background: linear-gradient(
    180deg,
    var(--oa-warm-cream) 0%,
    var(--oa-white) 58%
  );
}

.oa-academy-offline__card--foundation {
  background: linear-gradient(
    180deg,
    var(--oa-primary-50) 0%,
    var(--oa-white) 58%
  );
}

.oa-academy-offline__card--advanced {
  background: linear-gradient(
    180deg,
    var(--oa-gold-50) 0%,
    var(--oa-white) 58%
  );
}

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

.oa-academy-offline__card-top,
.oa-academy-offline__card-top.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 20px !important;

  margin: 0 0 30px !important;

  padding: 0 !important;
}

/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.oa-academy-offline__number {
  width: auto;

  margin: 0;

  color: rgba(77, 10, 52, 0.28);

  font-family: var(--oa-font-heading);

  font-size: 26px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: -0.03em;
}

.oa-academy-offline__number .elementor-heading-title {
  margin: 0;

  color: inherit;

  font: inherit;
}

/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.oa-academy-offline__icon {
  width: auto;

  margin: 0;
}

.oa-academy-offline__icon .elementor-icon {
  display: inline-flex;

  width: 58px;
  height: 58px;

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

  border: 1px solid rgba(255, 255, 255, 0.88);

  border-radius: 17px;

  background: rgba(255, 255, 255, 0.78);

  font-size: 23px;

  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.055);
}

.oa-academy-offline__card--personal .oa-academy-offline__icon .elementor-icon {
  color: var(--oa-orange-600);
}

.oa-academy-offline__card--foundation
  .oa-academy-offline__icon
  .elementor-icon {
  color: var(--oa-primary-600);
}

.oa-academy-offline__card--advanced .oa-academy-offline__icon .elementor-icon {
  color: var(--oa-gold-700);
}

.oa-academy-offline__icon svg {
  width: 23px;
  height: 23px;

  /* fill: currentColor; */
}

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

.oa-academy-offline__card-title {
  width: 100%;

  margin: 0 0 15px;

  color: var(--oa-primary-900) !important;
}

.oa-academy-offline__card-title .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

.oa-academy-offline__card-copy {
  width: 100%;

  margin: 0 0 25px;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-offline__card-copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-offline__card-copy p {
  margin: 0 0 10px;

  color: inherit !important;
}

.oa-academy-offline__card-copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   ADVANCED OPTIONS
========================================================= */

.oa-academy-offline__options,
.oa-academy-offline__options.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: column !important;
  align-items: stretch !important;

  gap: 9px !important;

  margin: 0 0 26px !important;

  padding: 0 !important;

  list-style: none;
}

.oa-academy-offline__option {
  position: relative;

  width: 100%;

  margin: 0;

  padding-left: 22px;
}

.oa-academy-offline__option::before {
  content: "";

  position: absolute;

  top: 9px;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--oa-gold-500);
}

.oa-academy-offline__option .elementor-widget-container,
.oa-academy-offline__option p {
  margin: 0;
}

/* =========================================================
   SUITABLE-FOR META
========================================================= */

.oa-academy-offline__meta-label {
  width: auto;

  margin-top: auto;
  margin-bottom: 7px;

  color: var(--oa-primary-500) !important;
}

.oa-academy-offline__meta-label .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

.oa-academy-offline__meta-value {
  width: 100%;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-offline__meta-value .elementor-widget-container,
.oa-academy-offline__meta-value p {
  margin: 0;
}

/* =========================================================
   SECTION ACTION
========================================================= */

.oa-academy-offline__action,
.oa-academy-offline__action.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;

  margin: -2px 0 0 !important;

  padding: 0 !important;
}

.oa-academy-offline__button {
  width: auto;
}

.oa-academy-offline__button .elementor-button {
  min-height: 50px;

  padding: 16px 25px !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-offline,
  .oa-academy-offline.e-con {
    padding: 88px 0;
  }

  .oa-academy-offline__inner,
  .oa-academy-offline__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 46px !important;
  }

  .oa-academy-offline__cards,
  .oa-academy-offline__cards.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px !important;
  }

  .oa-academy-offline__card,
  .oa-academy-offline__card.e-con {
    min-height: 470px;
  }

  .oa-academy-offline__card--advanced {
    grid-column: 1 / -1;

    min-height: auto;
  }

  .oa-academy-offline__card--advanced .oa-academy-offline__card-copy {
    max-width: 820px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-offline,
  .oa-academy-offline.e-con {
    padding: 72px 0;
  }

  .oa-academy-offline__inner,
  .oa-academy-offline__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 38px !important;
  }

  .oa-academy-offline__cards,
  .oa-academy-offline__cards.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 16px !important;
  }

  .oa-academy-offline__card,
  .oa-academy-offline__card.e-con {
    min-height: auto;

    padding: 29px 24px !important;
  }

  .oa-academy-offline__card--advanced {
    grid-column: auto;
  }

  .oa-academy-offline__card-top,
  .oa-academy-offline__card-top.e-con {
    margin-bottom: 25px !important;
  }

  .oa-academy-offline__icon .elementor-icon {
    width: 54px;
    height: 54px;

    border-radius: 16px;

    font-size: 21px;
  }

  .oa-academy-offline__icon svg {
    width: 21px;
    height: 21px;
  }

  .oa-academy-offline__action .elementor-widget-button,
  .oa-academy-offline__action .elementor-button {
    width: 100%;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-offline,
  .oa-academy-offline.e-con {
    padding: 64px 0;
  }

  .oa-academy-offline__card,
  .oa-academy-offline__card.e-con {
    padding: 27px 21px !important;
  }
}

/* =========================================================
   SECTION 05 — BEYOND THE CLASSROOM
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-beyond,
.oa-academy-beyond.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(206, 133, 179, 0.16),
      transparent 26%
    ),
    radial-gradient(
      circle at 95% 88%,
      rgba(242, 176, 30, 0.12),
      transparent 24%
    ),
    var(--oa-primary-900);
}

/* Large restrained outlined circle */

.oa-academy-beyond::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -205px;
  left: -180px;

  width: 450px;
  height: 450px;

  border: 1px solid rgba(242, 176, 30, 0.25);

  border-radius: 50%;

  pointer-events: none;
}

/* Decorative dot field */

.oa-academy-beyond::after {
  content: "";

  position: absolute;
  z-index: 0;

  right: 36px;
  bottom: 32px;

  width: 90px;
  height: 76px;

  opacity: 0.44;

  background-image: radial-gradient(
    circle,
    rgba(245, 195, 84, 0.78) 1.6px,
    transparent 1.9px
  );

  background-size: 15px 15px;

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-beyond__inner,
.oa-academy-beyond__inner.e-con {
  position: relative;
  z-index: 1;

  display: grid !important;

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

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  align-items: center !important;

  gap: 72px !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   CONTENT COLUMN
========================================================= */

.oa-academy-beyond__content,
.oa-academy-beyond__content.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 18px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-academy-beyond__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-gold-400) !important;
}

.oa-academy-beyond__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.oa-academy-beyond__title {
  width: 100%;
  max-width: 590px;

  margin: 0;

  color: var(--oa-white) !important;
}

.oa-academy-beyond__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-beyond__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;
}

/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.oa-academy-beyond__copy {
  width: 100%;
  max-width: 580px;

  margin: 0;

  color: rgba(255, 255, 255, 0.78) !important;
}

.oa-academy-beyond__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-beyond__copy p {
  max-width: 580px;

  margin: 0 0 14px;

  color: inherit !important;
}

.oa-academy-beyond__copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   VISUAL COLUMN
========================================================= */

.oa-academy-beyond__visual,
.oa-academy-beyond__visual.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 560px;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 12px !important;

  overflow: visible !important;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: var(--oa-radius-image);

  background: rgba(255, 255, 255, 0.08);

  box-shadow: 0 28px 70px rgba(22, 22, 22, 0.24);
}

/* Soft plum light behind the image */

.oa-academy-beyond__visual::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -44px;
  right: -42px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(206, 133, 179, 0.28);

  filter: blur(34px);

  pointer-events: none;
}

/* Small gold outlined square */

.oa-academy-beyond__visual::after {
  content: "";

  position: absolute;
  z-index: 3;

  top: -18px;
  right: -18px;

  width: 38px;
  height: 38px;

  border: 1.5px solid rgba(245, 195, 84, 0.84);

  border-radius: 5px;

  transform: rotate(24deg);

  pointer-events: none;
}

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

.oa-academy-beyond__image {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border-radius: calc(var(--oa-radius-image) - 8px);
}

.oa-academy-beyond__image .elementor-widget-container {
  display: block;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: inherit;
}

.oa-academy-beyond__image picture,
.oa-academy-beyond__image a {
  display: block;

  width: 100%;
  height: 100%;
}

.oa-academy-beyond__image img {
  display: block;

  width: 100%;
  height: 536px;

  margin: 0;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;

  transition: transform var(--oa-transition-slow);
}

.oa-academy-beyond__visual:hover .oa-academy-beyond__image img {
  transform: scale(1.025);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-beyond,
  .oa-academy-beyond.e-con {
    padding: 88px 0;
  }

  .oa-academy-beyond__inner,
  .oa-academy-beyond__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 42px !important;
  }

  .oa-academy-beyond__content,
  .oa-academy-beyond__content.e-con {
    gap: 16px !important;
  }

  .oa-academy-beyond__visual,
  .oa-academy-beyond__visual.e-con {
    min-height: 490px;
  }

  .oa-academy-beyond__image img {
    height: 466px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-beyond,
  .oa-academy-beyond.e-con {
    padding: 72px 0;
  }

  .oa-academy-beyond__inner,
  .oa-academy-beyond__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 38px !important;
  }

  .oa-academy-beyond__content,
  .oa-academy-beyond__content.e-con {
    width: 100% !important;
  }

  .oa-academy-beyond__title,
  .oa-academy-beyond__copy,
  .oa-academy-beyond__copy p {
    max-width: 100%;
  }

  .oa-academy-beyond__visual,
  .oa-academy-beyond__visual.e-con {
    min-height: 430px;

    padding: 9px !important;

    border-radius: var(--oa-radius-card);
  }

  .oa-academy-beyond__image {
    border-radius: calc(var(--oa-radius-card) - 7px);
  }

  .oa-academy-beyond__image img {
    height: 410px;
  }

  .oa-academy-beyond__visual::after {
    top: -13px;
    right: -10px;

    width: 31px;
    height: 31px;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-beyond,
  .oa-academy-beyond.e-con {
    padding: 64px 0;
  }

  .oa-academy-beyond__visual,
  .oa-academy-beyond__visual.e-con {
    min-height: 385px;
  }

  .oa-academy-beyond__image img {
    height: 365px;
  }
}

/* =========================================================
   SECTION 06 — WORKSHOPS AND ONGOING SUPPORT
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-workshops-support,
.oa-academy-workshops-support.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background: var(--oa-warm-cream);
}

/* Soft plum decorative glow */

.oa-academy-workshops-support::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -180px;
  right: -170px;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background: rgba(240, 217, 232, 0.42);

  filter: blur(12px);

  pointer-events: none;
}

/* Restrained gold outline */

.oa-academy-workshops-support::after {
  content: "";

  position: absolute;
  z-index: 0;

  bottom: -140px;
  left: -120px;

  width: 280px;
  height: 280px;

  border: 1px solid rgba(242, 176, 30, 0.2);

  border-radius: 50%;

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-workshops-support__inner,
.oa-academy-workshops-support__inner.e-con {
  position: relative;
  z-index: 1;

  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  margin: 0 auto !important;
  padding: 0 !important;
}

/* =========================================================
   TWO-CARD GRID
========================================================= */

.oa-academy-workshops-support__grid,
.oa-academy-workshops-support__grid.e-con {
  display: grid !important;

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

  width: 100% !important;

  align-items: stretch !important;

  gap: 24px !important;

  margin: 0 !important;
  padding: 0 !important;
}

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

.oa-academy-workshops-support__card,
.oa-academy-workshops-support__card.e-con {
  position: relative;
  isolation: isolate;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 470px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 42px 40px 36px !important;

  overflow: hidden;

  border: 1px solid rgba(225, 180, 208, 0.58);

  border-radius: var(--oa-radius-card);

  box-shadow: 0 18px 48px rgba(22, 22, 22, 0.055);

  transition:
    transform var(--oa-transition-default),
    border-color var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

.oa-academy-workshops-support__card:hover {
  border-color: var(--oa-primary-200);

  box-shadow: 0 26px 62px rgba(77, 10, 52, 0.095);

  transform: translateY(-5px);
}

/* Keep all Elementor children above the decoration */

.oa-academy-workshops-support__card > * {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   CARD VARIATIONS
--------------------------------------------------------- */

.oa-academy-workshops-support__card--workshops {
  background: var(--oa-white);
}

.oa-academy-workshops-support__card--support {
  background: var(--oa-primary-50);
}

/* Soft decorative circle */

.oa-academy-workshops-support__card::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -85px;
  right: -70px;

  width: 230px;
  height: 230px;

  border-radius: 50%;

  pointer-events: none;
}

.oa-academy-workshops-support__card--workshops::before {
  background: rgba(253, 242, 219, 0.72);
}

.oa-academy-workshops-support__card--support::before {
  background: rgba(225, 180, 208, 0.32);
}

/* Botanical line decoration */

.oa-academy-workshops-support__card::after {
  content: "";

  position: absolute;
  z-index: 1;

  top: 40px;
  right: 4px;

  width: 190px;
  height: 260px;

  opacity: 0.42;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 300' fill='none'%3E%3Cpath d='M170 294C161 237 160 183 174 132C186 88 203 52 218 20' stroke='%23CE85B3' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M174 135C145 124 127 99 124 67C154 75 173 98 174 135Z' stroke='%23CE85B3' stroke-width='2'/%3E%3Cpath d='M166 182C132 178 108 157 97 126C132 128 158 149 166 182Z' stroke='%23CE85B3' stroke-width='2'/%3E%3Cpath d='M163 228C132 229 106 215 89 189C122 185 150 199 163 228Z' stroke='%23CE85B3' stroke-width='2'/%3E%3Cpath d='M182 98C197 82 207 62 211 39C188 48 176 68 182 98Z' stroke='%23CE85B3' stroke-width='2'/%3E%3C/svg%3E");

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  pointer-events: none;
}

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

.oa-academy-workshops-support__eyebrow {
  width: auto;

  margin: 0 0 14px;

  color: var(--oa-primary-500) !important;
}

.oa-academy-workshops-support__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-academy-workshops-support__title {
  width: 100%;
  max-width: 430px;

  margin: 0 0 16px;

  color: var(--oa-primary-900) !important;
}

.oa-academy-workshops-support__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-workshops-support__title .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-academy-workshops-support__copy {
  width: 100%;
  max-width: 460px;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-workshops-support__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-workshops-support__copy p {
  margin: 0 0 11px;

  color: inherit !important;
}

.oa-academy-workshops-support__copy p:last-child {
  margin-bottom: 0;
}

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

.oa-academy-workshops-support__benefits,
.oa-academy-workshops-support__benefits.e-con {
  display: grid !important;

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

  width: 100% !important;

  align-items: start !important;

  gap: 14px !important;

  margin: auto 0 0 !important;

  padding: 30px 0 0 !important;

  border-top: 1px solid rgba(77, 10, 52, 0.11);
}

/* ---------------------------------------------------------
   BENEFIT ITEM
--------------------------------------------------------- */

.oa-academy-workshops-support__benefit,
.oa-academy-workshops-support__benefit.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 10px !important;

  margin: 0 !important;
  padding: 0 !important;

  text-align: center;
}

/* ---------------------------------------------------------
   BENEFIT ICON
--------------------------------------------------------- */

.oa-academy-workshops-support__benefit-icon {
  width: auto;

  margin: 0;
}

.oa-academy-workshops-support__benefit-icon .elementor-icon {
  display: inline-flex;

  width: 44px;
  height: 44px;

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

  border-radius: 50%;

  background: var(--oa-white);

  font-size: 18px;

  box-shadow: 0 7px 20px rgba(22, 22, 22, 0.055);
}

.oa-academy-workshops-support__card--workshops
  .oa-academy-workshops-support__benefit-icon
  .elementor-icon {
  border: 1px solid var(--oa-orange-200);

  color: var(--oa-orange-600);
}

.oa-academy-workshops-support__card--support
  .oa-academy-workshops-support__benefit-icon
  .elementor-icon {
  border: 1px solid var(--oa-primary-200);

  color: var(--oa-primary-600);
}

.oa-academy-workshops-support__benefit-icon svg {
  width: 18px;
  height: 18px;

  /* fill: currentColor; */
}

/* ---------------------------------------------------------
   BENEFIT LABEL
--------------------------------------------------------- */

.oa-academy-workshops-support__benefit-label {
  width: 100%;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-workshops-support__benefit-label .elementor-widget-container,
.oa-academy-workshops-support__benefit-label p {
  margin: 0;

  color: inherit !important;

  font-weight: 600 !important;
  line-height: 1.4 !important;

  text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-workshops-support,
  .oa-academy-workshops-support.e-con {
    padding: 88px 0;
  }

  .oa-academy-workshops-support__inner,
  .oa-academy-workshops-support__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;
  }

  .oa-academy-workshops-support__grid,
  .oa-academy-workshops-support__grid.e-con {
    gap: 20px !important;
  }

  .oa-academy-workshops-support__card,
  .oa-academy-workshops-support__card.e-con {
    min-height: 540px;

    padding: 36px 30px 32px !important;
  }

  .oa-academy-workshops-support__card::after {
    right: -28px;

    opacity: 0.3;
  }

  .oa-academy-workshops-support__title,
  .oa-academy-workshops-support__copy {
    max-width: 100%;
  }

  .oa-academy-workshops-support__benefits,
  .oa-academy-workshops-support__benefits.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px 12px !important;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-workshops-support,
  .oa-academy-workshops-support.e-con {
    padding: 72px 0;
  }

  .oa-academy-workshops-support__inner,
  .oa-academy-workshops-support__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;
  }

  .oa-academy-workshops-support__grid,
  .oa-academy-workshops-support__grid.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 16px !important;
  }

  .oa-academy-workshops-support__card,
  .oa-academy-workshops-support__card.e-con {
    min-height: auto;

    padding: 32px 24px 28px !important;
  }

  .oa-academy-workshops-support__card::after {
    top: 26px;
    right: -46px;

    width: 170px;
    height: 230px;

    opacity: 0.24;
  }

  .oa-academy-workshops-support__benefits,
  .oa-academy-workshops-support__benefits.e-con {
    margin-top: 30px !important;

    padding-top: 26px !important;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-workshops-support,
  .oa-academy-workshops-support.e-con {
    padding: 64px 0;
  }

  .oa-academy-workshops-support__card,
  .oa-academy-workshops-support__card.e-con {
    padding: 29px 21px 26px !important;
  }

  .oa-academy-workshops-support__benefits,
  .oa-academy-workshops-support__benefits.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 16px !important;
  }

  .oa-academy-workshops-support__benefit,
  .oa-academy-workshops-support__benefit.e-con {
    flex-direction: row !important;
    align-items: center !important;

    gap: 12px !important;

    text-align: left;
  }

  .oa-academy-workshops-support__benefit-label p {
    text-align: left;
  }
}

/* =========================================================
   SECTION 07 — ULTIMATE GELE MASTERCLASS
========================================================= */

/* ---------------------------------------------------------
   SECTION ROOT
--------------------------------------------------------- */

.oa-academy-masterclass,
.oa-academy-masterclass.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 112px 0;

  overflow: hidden;

  background: var(--oa-primary-100);
}

/* Large pale decorative form */

.oa-academy-masterclass::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -220px;
  right: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: rgba(247, 236, 243, 0.72);

  pointer-events: none;
}

/* Restrained gold curve */

.oa-academy-masterclass::after {
  content: "";

  position: absolute;
  z-index: 0;

  bottom: -130px;
  left: -90px;

  width: 280px;
  height: 280px;

  border: 1.5px solid rgba(184, 134, 23, 0.32);

  border-radius: 48% 52% 44% 56% / 55% 43% 57% 45%;

  transform: rotate(20deg);

  pointer-events: none;
}

/* ---------------------------------------------------------
   INNER CONTAINER
--------------------------------------------------------- */

.oa-academy-masterclass__inner,
.oa-academy-masterclass__inner.e-con {
  position: relative;
  z-index: 1;

  display: grid !important;

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

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  align-items: stretch !important;

  gap: 72px !important;

  margin: 0 auto !important;

  padding: 0 !important;
}

/* =========================================================
   CONTENT COLUMN
========================================================= */

.oa-academy-masterclass__content,
.oa-academy-masterclass__content.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;

  gap: 18px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.oa-academy-masterclass__eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-primary-600) !important;
}

.oa-academy-masterclass__eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-academy-masterclass__title {
  width: 100%;
  max-width: 590px;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-masterclass__title .elementor-widget-container {
  width: 100%;
}

.oa-academy-masterclass__title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;
}

/* ---------------------------------------------------------
   COPY
--------------------------------------------------------- */

.oa-academy-masterclass__copy {
  width: 100%;
  max-width: 590px;

  margin: 0;

  color: var(--oa-neutral-700) !important;
}

.oa-academy-masterclass__copy .elementor-widget-container {
  width: 100%;
}

.oa-academy-masterclass__copy p {
  max-width: 590px;

  margin: 0 0 13px;

  color: inherit !important;
}

.oa-academy-masterclass__copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.oa-academy-masterclass__highlights,
.oa-academy-masterclass__highlights.e-con {
  display: grid !important;

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

  width: 100% !important;
  max-width: 590px;

  align-items: stretch !important;

  gap: 14px 18px !important;

  margin: 8px 0 0 !important;

  padding: 22px 0 0 !important;

  border-top: 1px solid rgba(77, 10, 52, 0.14);
}

/* ---------------------------------------------------------
   HIGHLIGHT ITEM
--------------------------------------------------------- */

.oa-academy-masterclass__highlight,
.oa-academy-masterclass__highlight.e-con {
  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 11px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* ---------------------------------------------------------
   HIGHLIGHT ICON
--------------------------------------------------------- */

.oa-academy-masterclass__highlight-icon {
  width: auto;

  flex: 0 0 auto;

  margin: 0;
}

.oa-academy-masterclass__highlight-icon .elementor-icon {
  display: inline-flex;

  width: 38px;
  height: 38px;

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

  border: 1px solid rgba(160, 20, 109, 0.16);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.58);

  color: var(--oa-primary-600);

  font-size: 16px;

  box-shadow: 0 7px 18px rgba(77, 10, 52, 0.05);
}

.oa-academy-masterclass__highlight-icon svg {
  width: 16px;
  height: 16px;

  /* fill: currentColor; */
}

/* ---------------------------------------------------------
   HIGHLIGHT LABEL
--------------------------------------------------------- */

.oa-academy-masterclass__highlight-label {
  width: 100%;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-academy-masterclass__highlight-label .elementor-widget-container,
.oa-academy-masterclass__highlight-label p {
  margin: 0;

  color: inherit !important;

  font-weight: 600 !important;
  line-height: 1.45 !important;
}

/* =========================================================
   BUTTON
========================================================= */

.oa-academy-masterclass__button {
  width: auto;

  margin: 12px 0 0;
}

.oa-academy-masterclass__button .elementor-button {
  min-height: 50px;

  padding: 16px 25px !important;
}

/* =========================================================
   VISUAL COLUMN
========================================================= */

.oa-academy-masterclass__visual,
.oa-academy-masterclass__visual.e-con {
  position: relative;
  z-index: 2;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 610px;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: 12px !important;

  overflow: visible !important;

  border: 1px solid rgba(255, 255, 255, 0.74);

  border-radius: var(--oa-radius-image);

  background: rgba(255, 255, 255, 0.36);

  box-shadow: 0 28px 72px rgba(77, 10, 52, 0.15);
}

/* Decorative gold circle */

.oa-academy-masterclass__visual::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -34px;
  right: -32px;

  width: 122px;
  height: 122px;

  border: 1.5px solid rgba(184, 134, 23, 0.48);

  border-radius: 50%;

  pointer-events: none;
}

/* Decorative plum square */

.oa-academy-masterclass__visual::after {
  content: "";

  position: absolute;
  z-index: 3;

  right: 24px;
  bottom: -17px;

  width: 34px;
  height: 34px;

  border: 1.5px solid rgba(122, 15, 83, 0.5);

  border-radius: 4px;

  transform: rotate(24deg);

  pointer-events: none;
}

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

.oa-academy-masterclass__image {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border-radius: calc(var(--oa-radius-image) - 8px);
}

.oa-academy-masterclass__image .elementor-widget-container {
  display: block;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: inherit;
}

.oa-academy-masterclass__image picture,
.oa-academy-masterclass__image a {
  display: block;

  width: 100%;
  height: 100%;
}

.oa-academy-masterclass__image img {
  display: block;

  width: 100%;
  height: 586px;

  margin: 0;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;

  transition: transform var(--oa-transition-slow);
}

.oa-academy-masterclass__visual:hover .oa-academy-masterclass__image img {
  transform: scale(1.025);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-academy-masterclass,
  .oa-academy-masterclass.e-con {
    padding: 88px 0;
  }

  .oa-academy-masterclass__inner,
  .oa-academy-masterclass__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 42px !important;
  }

  .oa-academy-masterclass__content,
  .oa-academy-masterclass__content.e-con {
    gap: 16px !important;
  }

  .oa-academy-masterclass__highlights,
  .oa-academy-masterclass__highlights.e-con {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-academy-masterclass__visual,
  .oa-academy-masterclass__visual.e-con {
    min-height: 540px;
  }

  .oa-academy-masterclass__image img {
    height: 516px;
  }
}

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

@media (max-width: 767px) {
  .oa-academy-masterclass,
  .oa-academy-masterclass.e-con {
    padding: 72px 0;
  }

  .oa-academy-masterclass__inner,
  .oa-academy-masterclass__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    max-width: var(--oa-container-max) !important;

    gap: 38px !important;
  }

  .oa-academy-masterclass__title,
  .oa-academy-masterclass__copy,
  .oa-academy-masterclass__copy p,
  .oa-academy-masterclass__highlights {
    max-width: 100%;
  }

  .oa-academy-masterclass__highlights,
  .oa-academy-masterclass__highlights.e-con {
    grid-template-columns: minmax(0, 1fr);

    gap: 13px !important;
  }

  .oa-academy-masterclass__button,
  .oa-academy-masterclass__button .elementor-widget-container,
  .oa-academy-masterclass__button .elementor-button {
    width: 100%;
  }

  .oa-academy-masterclass__visual,
  .oa-academy-masterclass__visual.e-con {
    min-height: 440px;

    padding: 9px !important;

    border-radius: var(--oa-radius-card);
  }

  .oa-academy-masterclass__image {
    border-radius: calc(var(--oa-radius-card) - 7px);
  }

  .oa-academy-masterclass__image img {
    height: 420px;
  }

  .oa-academy-masterclass__visual::before {
    top: -24px;
    right: -20px;

    width: 92px;
    height: 92px;
  }
}

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

@media (max-width: 390px) {
  .oa-academy-masterclass,
  .oa-academy-masterclass.e-con {
    padding: 64px 0;
  }

  .oa-academy-masterclass__visual,
  .oa-academy-masterclass__visual.e-con {
    min-height: 390px;
  }

  .oa-academy-masterclass__image img {
    height: 370px;
  }
}

/* =========================================================
   ONIGELE ACADEMY — AUTHENTICATION PAGE
========================================================= */

/* =========================================================
   PAGE ROOT
========================================================= */

.oa-auth-page,
.oa-auth-page.e-con {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;

  margin: 0;
  padding: 0;

  overflow-x: hidden;

  background: var(--oa-warm-cream);
}

/* =========================================================
   AUTH SECTION
========================================================= */

.oa-auth,
.oa-auth.e-con {
  position: relative;
  isolation: isolate;

  display: flex !important;

  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;

  align-items: center !important;
  justify-content: center !important;

  margin: 0;

  padding: 40px 0 !important;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 96% 5%,
      rgba(242, 176, 30, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 3% 96%,
      rgba(160, 20, 109, 0.07),
      transparent 26%
    ),
    var(--oa-warm-cream);
}

/* Soft external plum outline */

.oa-auth::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -140px;
  left: -150px;

  width: 330px;
  height: 330px;

  border: 1px solid rgba(160, 20, 109, 0.14);

  border-radius: 50%;

  pointer-events: none;
}

/* Soft external gold glow */

.oa-auth::after {
  content: "";

  position: absolute;
  z-index: 0;

  right: -170px;
  bottom: -180px;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background: rgba(242, 176, 30, 0.09);

  filter: blur(24px);

  pointer-events: none;
}

/* =========================================================
   AUTH CANVAS
========================================================= */

.oa-auth__inner,
.oa-auth__inner.e-con {
  position: relative;
  z-index: 1;

  display: grid !important;

  grid-template-columns:
    minmax(0, 60%)
    minmax(0, 40%);

  width: calc(100% - 160px) !important;

  max-width: 1600px !important;

  min-height: calc(100vh - 80px);

  min-height: calc(100svh - 80px);

  align-items: stretch !important;

  gap: 0 !important;

  margin: 0 auto !important;

  padding: 0 !important;

  overflow: hidden !important;

  border: 1px solid rgba(236, 231, 226, 0.9);

  border-radius: var(--oa-radius-large);

  background: var(--oa-white);

  box-shadow: 0 28px 82px rgba(77, 10, 52, 0.12);
}

/* =========================================================
   BRAND PANEL
========================================================= */

.oa-auth__brand,
.oa-auth__brand.e-con {
  position: relative;
  isolation: isolate;

  display: flex !important;

  width: 100% !important;
  min-width: 0;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;

  gap: 64px !important;

  margin: 0 !important;

  padding: 56px 64px !important;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 13%,
      rgba(206, 133, 179, 0.24),
      transparent 27%
    ),
    radial-gradient(
      circle at 7% 91%,
      rgba(242, 176, 30, 0.15),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--oa-primary-900) 0%,
      var(--oa-primary-800) 58%,
      var(--oa-primary-900) 100%
    );

  color: var(--oa-white);
}

/* Large floating ring */

.oa-auth__brand::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -185px;
  right: -155px;

  width: 440px;
  height: 440px;

  border: 58px solid rgba(255, 255, 255, 0.045);

  border-radius: 50%;

  pointer-events: none;
}

/* Floating gold dot field */

.oa-auth__brand::after {
  content: "";

  position: absolute;
  z-index: 0;

  right: 52px;
  bottom: 48px;

  width: 92px;
  height: 76px;

  opacity: 0.55;

  background-image: radial-gradient(
    circle,
    rgba(245, 195, 84, 0.92) 1.7px,
    transparent 2px
  );

  background-size: 15px 15px;

  pointer-events: none;
}

/* Keep actual Elementor children above decorations */

.oa-auth__brand > * {
  position: relative;
  z-index: 2;
}

/* =========================================================
   BRAND LOGO
========================================================= */

.oa-auth__brand-logo {
  width: auto;

  margin: 0;
}

.oa-auth__brand-logo .elementor-widget-container {
  width: auto;
}

.oa-auth__brand-logo img {
  display: block;

  width: 158px;
  max-width: 158px;
  height: auto;

  margin: 0;

  /* filter:
    brightness(0)
    invert(1); */

  opacity: 0.98;
}

/* =========================================================
   BRAND CONTENT
========================================================= */

.oa-auth__brand-content,
.oa-auth__brand-content.e-con {
  position: relative;
  isolation: isolate;

  display: flex !important;

  width: 100% !important;
  max-width: 760px;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 18px !important;

  margin: auto 0 0 !important;

  padding: 0 !important;
}

/* Floating outlined gold square */

.oa-auth__brand-content::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -105px;
  right: 18%;

  width: 48px;
  height: 48px;

  border: 1.5px solid rgba(245, 195, 84, 0.68);

  border-radius: 7px;

  transform: rotate(24deg);

  pointer-events: none;
}

/* Floating blurred plum orb */

.oa-auth__brand-content::after {
  content: "";

  position: absolute;
  z-index: -1;

  right: -90px;
  bottom: -90px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background: rgba(206, 133, 179, 0.16);

  filter: blur(36px);

  pointer-events: none;
}

/* ---------------------------------------------------------
   BRAND EYEBROW
--------------------------------------------------------- */

.oa-auth__brand-eyebrow {
  width: auto;

  margin: 0;

  color: var(--oa-gold-400) !important;
}

.oa-auth__brand-eyebrow .elementor-heading-title {
  margin: 0;

  color: inherit !important;
}

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

.oa-auth__brand-title {
  width: 100%;
  max-width: 720px;

  margin: 0;

  color: var(--oa-white) !important;
}

.oa-auth__brand-title .elementor-widget-container {
  width: 100%;
}

.oa-auth__brand-title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;
}

/* ---------------------------------------------------------
   BRAND COPY
--------------------------------------------------------- */

.oa-auth__brand-copy {
  width: 100%;
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, 0.74) !important;
}

.oa-auth__brand-copy .elementor-widget-container,
.oa-auth__brand-copy p {
  margin: 0;

  color: inherit !important;
}

/* =========================================================
   FORM PANEL
========================================================= */

.oa-auth__panel,
.oa-auth__panel.e-con {
  position: relative;

  display: flex !important;

  width: 100% !important;
  min-width: 0;
  min-height: 0;

  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;

  gap: 0 !important;

  margin: 0 !important;

  padding: clamp(40px, 5vh, 58px) clamp(34px, 3.4vw, 54px) !important;

  overflow-x: hidden;
  overflow-y: auto;

  background: var(--oa-white);
}

/* Subtle panel decoration */

.oa-auth__panel::before {
  content: "";

  position: absolute;
  z-index: 0;

  top: -130px;
  right: -140px;

  width: 290px;
  height: 290px;

  border-radius: 50%;

  background: rgba(240, 217, 232, 0.28);

  pointer-events: none;
}

.oa-auth__panel > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   BACK HOME CONTROL
========================================================= */

.oa-auth__back {
  width: auto;

  align-self: flex-start;

  margin: 0 0 38px;
}

.oa-auth__back .elementor-widget-container {
  width: auto;
}

.oa-auth__back .elementor-button {
  display: inline-flex !important;

  width: auto !important;
  min-width: 0 !important;
  min-height: auto !important;

  align-items: center !important;
  justify-content: flex-start !important;

  gap: 9px !important;

  margin: 0 !important;

  padding: 8px 0 !important;

  border: 0 !important;

  border-radius: 0 !important;

  background: transparent !important;

  color: var(--oa-neutral-800) !important;

  font-family: var(--oa-font-body) !important;

  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;

  text-align: left !important;
  text-decoration: none !important;

  box-shadow: none !important;

  transition: color var(--oa-transition-fast);
}

.oa-auth__back .elementor-button-text,
.oa-auth__back .elementor-button-icon,
.oa-auth__back .elementor-button-icon i,
.oa-auth__back .elementor-button-icon svg {
  color: var(--oa-neutral-800) !important;
}

.oa-auth__back .elementor-button-icon svg {
  fill: currentColor !important;
}

.oa-auth__back .elementor-button:hover {
  background: transparent !important;

  color: var(--oa-primary-600) !important;

  box-shadow: none !important;
}

.oa-auth__back .elementor-button:hover .elementor-button-text,
.oa-auth__back .elementor-button:hover .elementor-button-icon,
.oa-auth__back .elementor-button:hover .elementor-button-icon i,
.oa-auth__back .elementor-button:hover .elementor-button-icon svg {
  color: var(--oa-primary-600) !important;
}

.oa-auth__back .elementor-button-icon {
  display: inline-flex;

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

  margin: 0 !important;

  transition: transform var(--oa-transition-fast);
}

.oa-auth__back .elementor-button:hover .elementor-button-icon {
  transform: translateX(-4px);
}

.oa-auth__back .elementor-button:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;

  border-radius: 4px !important;
}

/* =========================================================
   PANEL HEADER
========================================================= */

.oa-auth__panel-header,
.oa-auth__panel-header.e-con {
  display: flex !important;

  width: 100% !important;

  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  gap: 10px !important;

  margin: 0 0 28px !important;

  padding: 0 !important;
}

.oa-auth__panel-title {
  width: 100%;

  margin: 0;

  color: var(--oa-primary-900) !important;
}

.oa-auth__panel-title .elementor-widget-container {
  width: 100%;
}

.oa-auth__panel-title .elementor-heading-title {
  width: 100%;

  margin: 0;

  color: inherit !important;
}

.oa-auth__panel-copy {
  width: 100%;
  max-width: 480px;

  margin: 0;

  color: var(--oa-text-secondary) !important;
}

.oa-auth__panel-copy .elementor-widget-container,
.oa-auth__panel-copy p {
  margin: 0;

  color: inherit !important;
}

/* =========================================================
   ELEMENTOR NESTED TABS
========================================================= */

.oa-auth-tabs {
  width: 100%;

  margin: 0;
}

/* ---------------------------------------------------------
   TAB HEADING
--------------------------------------------------------- */

.oa-auth-tabs .e-n-tabs-heading {
  display: grid !important;

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

  width: 100%;

  gap: 5px;

  margin: 0;

  padding: 5px;

  border: 1px solid var(--oa-border);

  border-radius: 14px;

  background: var(--oa-neutral-50);
}

/* ---------------------------------------------------------
   INDIVIDUAL TAB
--------------------------------------------------------- */

.oa-auth-tabs .e-n-tab-title {
  display: flex !important;

  width: 100%;
  min-height: 46px;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;

  padding: 12px 18px !important;

  border: 1px solid transparent !important;

  border-radius: 10px !important;

  background: transparent !important;

  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body) !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  text-align: center !important;

  cursor: pointer;

  transition:
    color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-auth-tabs .e-n-tab-title .e-n-tab-title-text {
  width: 100%;
  text-align: center !important;
}

.elementor-widget-n-tabs .e-n-tab-title-text {
  display: inline !important;
}

.oa-auth-tabs .e-n-tab-title:hover {
  background: var(--oa-primary-50) !important;

  color: var(--oa-primary-600) !important;
}

.oa-auth-tabs .e-n-tab-title[aria-selected="true"],
.oa-auth-tabs .e-n-tab-title.e-active {
  border-color: rgba(160, 20, 109, 0.11) !important;

  background: var(--oa-white) !important;

  color: var(--oa-primary-600) !important;

  box-shadow: 0 6px 18px rgba(77, 10, 52, 0.065);
}

.oa-auth-tabs .e-n-tab-title:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 2px;
}

/* ---------------------------------------------------------
   TAB CONTENT
--------------------------------------------------------- */

.oa-auth-tabs .e-n-tabs-content {
  width: 100%;

  margin: 0;
  padding: 0;
}

.oa-auth-tabs .e-n-tab-content {
  width: 100%;

  margin: 0 !important;

  padding: 28px 0 0 !important;

  border: 0 !important;

  background: transparent !important;
}

/* =========================================================
   JETFORMBUILDER FORM WRAPPER
========================================================= */

.oa-auth-form,
.oa-auth-form .elementor-widget-container,
.oa-auth-form .jet-form-builder {
  width: 100%;
}

.oa-auth-form .jet-form-builder {
  display: flex;

  flex-direction: column;

  gap: 17px;

  margin: 0;
}

.oa-auth-form .jet-form-builder-row {
  width: 100%;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-auth-form .jet-form-builder__field-wrap {
  width: 100%;
}

/* =========================================================
   FORM LABELS
========================================================= */

.oa-auth-form .jet-form-builder__label,
.oa-auth-form label {
  color: var(--oa-dark);

  font-family: var(--oa-font-body);

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

.oa-auth-form .jet-form-builder__label {
  display: flex;

  margin: 0 0 8px;
}

.oa-auth-form .jet-form-builder__label-text {
  color: var(--oa-dark);

  font-family: var(--oa-font-body);

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

.oa-auth-form .jet-form-builder__required {
  margin-left: 3px;

  color: var(--oa-primary-500);
}

/* =========================================================
   INPUT CONTROLS
========================================================= */

.oa-auth-form
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.oa-auth-form select,
.oa-auth-form textarea,
.oa-auth-form .jet-form-builder__field {
  width: 100%;
  min-height: 52px;

  margin: 0;

  padding: 13px 15px;

  border: 1px solid var(--oa-border);

  border-radius: var(--oa-radius-small);

  outline: none;

  background: var(--oa-white);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);

  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;

  box-shadow: 0 4px 14px rgba(22, 22, 22, 0.025);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    background var(--oa-transition-fast);
}

.oa-auth-form input::placeholder,
.oa-auth-form textarea::placeholder {
  color: var(--oa-neutral-400);

  opacity: 1;
}

.oa-auth-form input:not([type="checkbox"]):not([type="radio"]):focus,
.oa-auth-form select:focus,
.oa-auth-form textarea:focus,
.oa-auth-form .jet-form-builder__field:focus {
  border-color: var(--oa-primary-400);

  background: var(--oa-white);

  box-shadow: 0 0 0 4px rgba(160, 20, 109, 0.085);
}

.oa-auth-form input[aria-invalid="true"],
.oa-auth-form .jet-form-builder__field.user-invalid {
  border-color: var(--oa-orange-500);

  box-shadow: 0 0 0 4px rgba(232, 106, 28, 0.085);
}

/* Browser autofill */

.oa-auth-form input:-webkit-autofill,
.oa-auth-form input:-webkit-autofill:hover,
.oa-auth-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--oa-dark);

  -webkit-box-shadow: 0 0 0 1000px var(--oa-white) inset;

  transition: background-color 9999s ease-out;
}

/* =========================================================
   FIELD DESCRIPTIONS AND ERRORS
========================================================= */

.oa-auth-form .jet-form-builder__desc,
.oa-auth-form .jet-form-builder__field-description {
  display: block;

  margin: 6px 0 0;

  color: var(--oa-neutral-400);

  font-family: var(--oa-font-body);

  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.oa-auth-form .jet-form-builder__field-error,
.oa-auth-form .jet-form-builder__error {
  display: block;

  margin: 6px 0 0;

  color: var(--oa-orange-700);

  font-family: var(--oa-font-body);

  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

/* =========================================================
   LOGIN OPTIONS
========================================================= */

.oa-auth-form__options,
.oa-auth-form__options.wp-block-group {
  display: flex !important;

  width: 100%;

  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin: 0 !important;
  padding: 0 !important;
}

.oa-auth-form__remember {
  width: auto;

  margin: 0;
}

.oa-auth-form__remember label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin: 0;

  color: var(--oa-neutral-700);

  cursor: pointer;
}

.oa-auth-form__remember input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;

  margin: 0;

  border-radius: 4px;

  accent-color: var(--oa-primary-500);

  cursor: pointer;
}

/* =========================================================
   LOST PASSWORD
========================================================= */

.oa-auth-form__lost-link {
  color: var(--oa-primary-600);

  font-family: var(--oa-font-body);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-auth-form__lost-link:hover {
  color: var(--oa-primary-800);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.oa-auth-form__lost-link:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;

  border-radius: 4px;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.oa-auth-form__submit,
.oa-auth-form__submit .jet-form-builder__submit-wrap,
.oa-auth-form__submit .wp-block-jet-forms-action-button,
.oa-auth-form__submit .wp-block-button {
  width: 100%;
}

.oa-auth-form__submit .jet-form-builder__action-button,
.oa-auth-form__submit .jet-form-builder__submit,
.oa-auth-form__submit button,
.oa-auth-form .jet-form-builder__submit {
  display: inline-flex !important;

  width: 100% !important;
  min-height: 52px;

  align-items: center !important;
  justify-content: center !important;

  gap: 10px;

  margin: 0;

  padding: 14px 22px;

  border: 1px solid transparent;

  border-radius: var(--oa-radius-pill);

  background: var(--oa-gradient-primary);

  color: var(--oa-white);

  font-family: var(--oa-font-body);

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  text-align: center !important;

  cursor: pointer;

  box-shadow: var(--oa-shadow-button);

  transition:
    transform var(--oa-transition-default),
    background var(--oa-transition-default),
    box-shadow var(--oa-transition-default);
}

/* Force every possible JetFormBuilder button text wrapper
   to remain centred. */

.oa-auth-form__submit .jet-form-builder__action-button > span,
.oa-auth-form__submit .jet-form-builder__submit > span,
.oa-auth-form__submit button > span,
.oa-auth-form__submit .jet-form-builder__action-button-text,
.oa-auth-form__submit .jet-form-builder__action-button__text,
.oa-auth-form__submit .jet-form-builder__submit-text,
.oa-auth-form__submit .wp-block-button__link {
  display: inline-flex;

  width: 100%;

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

  margin: 0;

  text-align: center !important;
}

.oa-auth-form__submit .jet-form-builder__action-button:hover,
.oa-auth-form__submit .jet-form-builder__submit:hover,
.oa-auth-form__submit button:hover,
.oa-auth-form .jet-form-builder__submit:hover {
  background: var(--oa-gradient-primary-hover);

  color: var(--oa-white);

  box-shadow: 0 15px 36px rgba(160, 20, 109, 0.28);

  transform: translateY(-2px);
}

.oa-auth-form__submit .jet-form-builder__action-button:focus-visible,
.oa-auth-form__submit .jet-form-builder__submit:focus-visible,
.oa-auth-form__submit button:focus-visible,
.oa-auth-form .jet-form-builder__submit:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;
}

.oa-auth-form__submit button:disabled,
.oa-auth-form .jet-form-builder__submit:disabled {
  opacity: 0.64;

  cursor: not-allowed;

  transform: none;
}

/* =========================================================
   FORM RESPONSE MESSAGES
========================================================= */

.oa-auth-form .jet-form-builder-message {
  width: 100%;

  margin: 15px 0 0;

  padding: 12px 14px;

  border: 1px solid var(--oa-border);

  border-radius: var(--oa-radius-small);

  font-family: var(--oa-font-body);

  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.oa-auth-form .jet-form-builder-message--success {
  border-color: rgba(93, 149, 74, 0.28);

  background: rgba(93, 149, 74, 0.08);

  color: #315f28;
}

.oa-auth-form .jet-form-builder-message--error,
.oa-auth-form .jet-form-builder-message--failed {
  border-color: rgba(232, 106, 28, 0.3);

  background: var(--oa-orange-50);

  color: var(--oa-orange-800);
}

/* =========================================================
   LARGE AND MEDIUM DESKTOP
========================================================= */

@media (max-width: 1280px) {
  .oa-auth,
  .oa-auth.e-con {
    padding: 32px 0 !important;
  }

  .oa-auth__inner,
  .oa-auth__inner.e-con {
    grid-template-columns:
      minmax(0, 60%)
      minmax(0, 40%);

    width: calc(100% - 64px) !important;

    min-height: calc(100vh - 64px);

    min-height: calc(100svh - 64px);
  }

  .oa-auth__brand,
  .oa-auth__brand.e-con {
    padding: 48px 46px !important;
  }

  .oa-auth__panel,
  .oa-auth__panel.e-con {
    padding: 42px 36px !important;
  }

  .oa-auth__back {
    margin-bottom: 34px;
  }
}

/* =========================================================
   SMALL DESKTOP AND LANDSCAPE TABLET
========================================================= */

@media (max-width: 1050px) {
  .oa-auth__inner,
  .oa-auth__inner.e-con {
    width: calc(100% - 48px) !important;
  }

  .oa-auth__brand,
  .oa-auth__brand.e-con {
    padding: 44px 38px !important;
  }

  .oa-auth__brand-title {
    max-width: 580px;
  }

  .oa-auth__panel,
  .oa-auth__panel.e-con {
    padding: 38px 30px !important;
  }

  .oa-auth__back {
    margin-bottom: 30px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .oa-auth,
  .oa-auth.e-con {
    align-items: flex-start !important;

    padding: 24px 0 48px !important;
  }

  .oa-auth__inner,
  .oa-auth__inner.e-con {
    grid-template-columns: minmax(0, 1fr);

    width: calc(100% - 48px) !important;

    min-height: auto;

    border-radius: var(--oa-radius-image);
  }

  .oa-auth__brand,
  .oa-auth__brand.e-con {
    min-height: 350px;

    gap: 46px !important;

    padding: 42px 40px !important;
  }

  .oa-auth__brand-content,
  .oa-auth__brand-content.e-con {
    max-width: 680px;
  }

  .oa-auth__brand-title {
    max-width: 640px;
  }

  .oa-auth__brand-copy {
    max-width: 580px;
  }

  .oa-auth__brand::after {
    right: 38px;

    bottom: 34px;
  }

  .oa-auth__panel,
  .oa-auth__panel.e-con {
    overflow: visible;

    padding: 44px 40px 52px !important;
  }

  .oa-auth__back {
    margin-bottom: 32px;
  }
}

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

@media (max-width: 767px) {
  .oa-auth,
  .oa-auth.e-con {
    padding: 12px 0 28px !important;
  }

  .oa-auth__inner,
  .oa-auth__inner.e-con {
    width: calc(100% - 24px) !important;

    border-radius: 22px;
  }

  .oa-auth__brand,
  .oa-auth__brand.e-con {
    min-height: 300px;

    gap: 38px !important;

    padding: 32px 24px !important;
  }

  .oa-auth__brand-logo img {
    width: 136px;

    max-width: 136px;
  }

  .oa-auth__brand-content,
  .oa-auth__brand-content.e-con {
    gap: 14px !important;
  }

  .oa-auth__brand-title,
  .oa-auth__brand-copy {
    max-width: 100%;
  }

  .oa-auth__brand::before {
    top: -155px;

    right: -175px;

    width: 370px;

    height: 370px;

    border-width: 46px;
  }

  .oa-auth__brand::after {
    right: 24px;

    bottom: 28px;

    width: 70px;

    height: 58px;

    background-size: 13px 13px;
  }

  .oa-auth__brand-content::before {
    top: -70px;

    right: 8%;

    width: 36px;

    height: 36px;
  }

  .oa-auth__panel,
  .oa-auth__panel.e-con {
    padding: 32px 24px 40px !important;
  }

  .oa-auth__back {
    margin-bottom: 28px;
  }

  .oa-auth__panel-header,
  .oa-auth__panel-header.e-con {
    margin-bottom: 24px !important;
  }

  .oa-auth-tabs .e-n-tabs-heading {
    gap: 4px;
    padding: 4px;
    text-align: center !important;
  }

  .oa-auth-tabs .e-n-tab-title {
    min-height: 44px;
    padding: 11px 12px !important;
    font-size: 13px !important;
    text-align: center !important;
    display: flex !important;
  }

  .oa-auth-tabs .e-n-tab-content {
    padding-top: 24px !important;
  }

  .oa-auth-form .jet-form-builder {
    gap: 15px;
  }

  .oa-auth-form
    input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
  .oa-auth-form select,
  .oa-auth-form textarea,
  .oa-auth-form .jet-form-builder__field {
    min-height: 50px;
  }
}

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

@media (max-width: 390px) {
  .oa-auth__inner,
  .oa-auth__inner.e-con {
    width: calc(100% - 16px) !important;

    border-radius: 18px;
  }

  .oa-auth__brand,
  .oa-auth__brand.e-con {
    min-height: 280px;

    padding: 28px 20px !important;
  }

  .oa-auth__panel,
  .oa-auth__panel.e-con {
    padding: 28px 20px 36px !important;
  }

  .oa-auth__back {
    margin-bottom: 24px;
  }

  .oa-auth-form__options,
  .oa-auth-form__options.wp-block-group {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }

  .oa-auth-form__submit .jet-form-builder__action-button,
  .oa-auth-form__submit .jet-form-builder__submit,
  .oa-auth-form__submit button,
  .oa-auth-form .jet-form-builder__submit {
    min-height: 50px;
  }
}

/* =========================================================
   ONIGELE ACADEMY — STUDENT ACCOUNT
   CORRECTED LEARNPRESS STRUCTURE
========================================================= */

/* =========================================================
   PAGE
========================================================= */

.oa-account-page,
.oa-account-page.e-con {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  overflow-x: clip;

  background: var(--oa-warm-cream);
}

.oa-account,
.oa-account.e-con {
  position: relative;
  isolation: isolate;

  width: 100%;
  max-width: none;

  margin: 0;

  padding: 56px 0 120px !important;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 95% 8%,
      rgba(242, 176, 30, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgba(160, 20, 109, 0.06),
      transparent 25%
    ),
    var(--oa-warm-cream);
}

.oa-account__inner,
.oa-account__inner.e-con {
  display: flex !important;

  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  ) !important;

  max-width: var(--oa-container-max) !important;

  flex-direction: column !important;
  align-items: stretch !important;

  gap: 28px !important;

  margin: 0 auto !important;

  padding: 0 !important;
}

/* =========================================================
   CUSTOM ACCOUNT HERO
========================================================= */

.oa-account__hero-widget,
.oa-account__hero-widget .elementor-widget-container,
.oa-account__hero-widget .elementor-shortcode {
  width: 100%;
}

.oa-account-hero {
  position: relative;
  isolation: isolate;

  display: grid;

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

  width: 100%;
  min-height: 210px;

  align-items: center;

  gap: 30px;

  margin: 0;

  padding: 38px 44px;

  overflow: hidden;

  border: 1px solid rgba(225, 180, 208, 0.52);

  border-radius: var(--oa-radius-image);

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(242, 176, 30, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 5% 100%,
      rgba(160, 20, 109, 0.08),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      var(--oa-white) 0%,
      var(--oa-primary-50) 54%,
      var(--oa-warm-peach) 100%
    );

  box-shadow: 0 20px 56px rgba(77, 10, 52, 0.08);
}

.oa-account-hero::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -145px;
  right: -95px;

  width: 300px;
  height: 300px;

  border: 36px solid rgba(160, 20, 109, 0.05);

  border-radius: 50%;

  pointer-events: none;
}

.oa-account-hero::after {
  content: "";

  position: absolute;
  z-index: -1;

  right: 48px;
  bottom: 28px;

  width: 82px;
  height: 58px;

  opacity: 0.5;

  background-image: radial-gradient(
    circle,
    var(--oa-gold-500) 1.7px,
    transparent 2px
  );

  background-size: 14px 14px;

  pointer-events: none;
}

/* Avatar */

.oa-account-hero__avatar {
  position: relative;

  width: 116px;
  height: 116px;

  flex: 0 0 116px;

  margin: 0;
}

.oa-account-hero__avatar::before {
  content: "";

  position: absolute;

  inset: -7px;

  border: 2px solid rgba(160, 20, 109, 0.18);

  border-radius: 50%;

  pointer-events: none;
}

.oa-account-hero__avatar-image {
  display: block;

  width: 116px;
  height: 116px;

  border: 4px solid var(--oa-white);

  border-radius: 50% !important;

  object-fit: cover;

  box-shadow: 0 13px 32px rgba(77, 10, 52, 0.14);
}

.oa-account-hero__avatar-edit {
  position: absolute;

  right: 0;
  bottom: 0;

  display: inline-flex;

  width: 34px;
  height: 34px;

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

  border: 2px solid var(--oa-white);

  border-radius: 50%;

  background: var(--oa-primary-500);

  color: var(--oa-white);

  text-decoration: none;

  box-shadow: 0 8px 20px rgba(77, 10, 52, 0.2);

  transition:
    background var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-account-hero__avatar-edit::before {
  content: "";

  width: 14px;
  height: 14px;

  background: currentColor;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.oa-account-hero__avatar-edit:hover {
  background: var(--oa-primary-700);

  color: var(--oa-white);

  transform: translateY(-1px);
}

/* Hero identity */

.oa-account-hero__content {
  display: flex;

  min-width: 0;

  flex-direction: column;
  align-items: flex-start;

  gap: 7px;
}

.oa-account-hero__greeting {
  color: var(--oa-primary-500);

  font-family: var(--oa-font-body);

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.oa-account-hero__title {
  max-width: 760px;

  margin: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: clamp(30px, 4vw, 44px);

  font-weight: 800;
  line-height: 1.06;

  letter-spacing: -0.035em;

  overflow-wrap: anywhere;
}

.oa-account-hero__copy {
  width: 100%;
  max-width: 600px;

  margin: 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

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

/* =========================================================
   PROFILE WRAPPERS
========================================================= */

.oa-account__profile,
.oa-account__profile .elementor-widget-container,
.oa-account__profile .elementor-shortcode,
.oa-account__profile #learn-press-profile {
  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

.oa-account__profile #learn-press-profile.lp-user-profile {
  --lp-primary-color: var(--oa-primary-500);

  width: 100%;

  margin: 0;
  padding: 0;
}

/*
 * This is the actual LearnPress layout container.
 */

.oa-account__profile #learn-press-profile.lp-user-profile > .lp-content-area {
  display: grid !important;

  grid-template-columns:
    minmax(230px, 260px)
    minmax(0, 1fr);

  width: 100% !important;
  max-width: none !important;

  align-items: start !important;

  gap: 28px !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Hide native header because our Elementor hero replaces it */

.oa-account__profile .wrapper-profile-header,
.oa-account__profile .lp-user-cover-image_background {
  display: none !important;
}

/* =========================================================
   SIDEBAR
========================================================= */

.oa-account__profile #profile-sidebar {
  position: relative;

  grid-column: 1;

  float: none !important;

  width: 100% !important;
  min-width: 0;
  max-width: none !important;

  margin: 0 !important;
  padding: 8px !important;

  overflow: visible;

  border: 1px solid var(--oa-border) !important;

  border-radius: 18px;

  background: var(--oa-white);

  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.055);
}

.oa-account__profile .lp-profile-nav-tabs {
  display: flex !important;

  width: 100%;

  flex-direction: column;

  gap: 4px;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none;
}

.oa-account__profile .lp-profile-nav-tabs > li {
  position: relative;

  width: 100%;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  background: transparent !important;
}

.oa-account__profile .lp-profile-nav-tabs > li > a {
  display: flex !important;

  width: 100%;
  min-height: 52px;

  align-items: center;

  gap: 11px;

  padding: 14px 15px !important;

  border-radius: 11px;

  color: var(--oa-neutral-700) !important;

  font-family: var(--oa-font-body);

  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;

  text-decoration: none;

  transition:
    background var(--oa-transition-fast),
    color var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-account__profile .lp-profile-nav-tabs > li > a i {
  width: 20px;

  margin: 0 !important;

  color: var(--oa-primary-500) !important;

  font-size: 17px;

  text-align: center;
}

.oa-account__profile .lp-profile-nav-tabs > li:not(.active) > a:hover {
  background: var(--oa-primary-50);

  color: var(--oa-primary-700) !important;

  transform: translateX(2px);
}

.oa-account__profile .lp-profile-nav-tabs > li.active > a {
  background: var(--oa-gradient-primary);

  color: var(--oa-white) !important;

  box-shadow: 0 10px 25px rgba(160, 20, 109, 0.18);
}

.oa-account__profile .lp-profile-nav-tabs > li.active > a i {
  color: var(--oa-white) !important;
}

/* Settings submenu */

.oa-account__profile .lp-profile-nav-tabs li > ul {
  min-width: 210px;

  margin: 0 !important;

  padding: 7px !important;

  border: 1px solid var(--oa-border);

  border-radius: 13px;

  background: var(--oa-white);

  box-shadow: 0 18px 44px rgba(22, 22, 22, 0.11);
}

.oa-account__profile .lp-profile-nav-tabs li > ul a {
  min-height: 42px;

  align-items: center;

  padding: 10px 12px !important;

  border: 0 !important;
  border-radius: 9px;

  color: var(--oa-neutral-700) !important;
}

.oa-account__profile .lp-profile-nav-tabs li > ul a:hover,
.oa-account__profile .lp-profile-nav-tabs li > ul li.active a {
  background: var(--oa-primary-50);

  color: var(--oa-primary-600) !important;
}

/* =========================================================
   PROFILE CONTENT
========================================================= */

.oa-account__profile .lp-profile-content {
  grid-column: 2;

  float: none !important;

  width: 100% !important;
  min-width: 0;

  margin: 0 !important;

  padding: 32px !important;

  overflow: visible;

  border: 1px solid var(--oa-border);

  border-radius: 18px;

  background: var(--oa-white);

  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.055);
}

/* =========================================================
   COURSE STATISTICS
========================================================= */

.oa-account__profile .learn-press-profile-course__statistic {
  width: 100%;

  margin: 0 0 30px !important;
}

.oa-account__profile #dashboard-statistic {
  width: 100%;

  margin: 0;
}

.oa-account__profile .dashboard-statistic__row {
  display: grid !important;

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

  width: 100%;

  gap: 14px;
}

.oa-account__profile .statistic-box {
  position: relative;

  display: grid !important;

  grid-template-columns:
    46px
    minmax(0, 1fr);

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 108px;

  flex: none !important;

  align-items: center;

  gap: 13px;

  margin: 0 !important;

  padding: 18px !important;

  overflow: hidden;

  border: 1px solid rgba(225, 180, 208, 0.42);

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--oa-neutral-50) 0%,
    var(--oa-primary-50) 100%
  );
}

.oa-account__profile .statistic-box::after {
  content: "";

  position: absolute;

  top: -24px;
  right: -24px;

  width: 74px;
  height: 74px;

  border-radius: 50%;

  background: rgba(160, 20, 109, 0.05);

  pointer-events: none;
}

.oa-account__profile .statistic-box__icon {
  position: relative;
  z-index: 1;

  display: inline-flex;

  width: 46px;
  height: 46px;

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

  border-radius: 50%;

  background: rgba(160, 20, 109, 0.08);

  color: var(--oa-primary-500);

  font-size: 20px;
}

.oa-account__profile .statistic-box__text {
  position: relative;
  z-index: 1;

  display: flex;

  min-width: 0;

  flex-direction: column;

  gap: 4px;
}

.oa-account__profile .statistic-box__text label {
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.oa-account__profile .statistic-box__text__number {
  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

/* =========================================================
   COURSE FILTER TABS
========================================================= */

.oa-account__profile .learn-press-tabs {
  width: 100%;

  margin: 0 0 24px;

  overflow-x: auto;

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

  scrollbar-width: none;
}

.oa-account__profile .learn-press-tabs::-webkit-scrollbar {
  display: none;
}

.oa-account__profile .learn-press-filters {
  display: flex !important;

  width: max-content;
  min-width: 100%;

  align-items: center;

  gap: 26px;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none;
}

.oa-account__profile .learn-press-filters li {
  margin: 0 !important;
  padding: 0 !important;
}

.oa-account__profile .learn-press-filters a {
  position: relative;

  display: inline-flex;

  min-height: 46px;

  align-items: center;

  padding: 0 0 13px;

  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  cursor: pointer;
}

.oa-account__profile .learn-press-filters a::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: -1px;
  left: 0;

  height: 2px;

  border-radius: var(--oa-radius-pill);

  background: transparent;
}

.oa-account__profile .learn-press-filters a:hover,
.oa-account__profile .learn-press-filters a.active {
  color: var(--oa-primary-600);
}

.oa-account__profile .learn-press-filters a.active::after {
  background: var(--oa-primary-500);
}

/* =========================================================
   PROFILE MESSAGES
========================================================= */

.oa-account__profile .learn-press-message {
  width: 100%;

  margin: 0 !important;

  padding: 18px 20px !important;

  border: 1px solid rgba(160, 20, 109, 0.15);

  border-radius: 12px;

  background: var(--oa-primary-50);

  color: var(--oa-primary-800);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   TABLES
========================================================= */

.oa-account__profile .profile-orders {
  width: 100%;

  overflow-x: auto;
}

.oa-account__profile table {
  width: 100%;

  margin: 0 !important;

  border: 1px solid var(--oa-border);

  border-collapse: separate;

  border-spacing: 0;

  border-radius: 12px;

  background: var(--oa-white);
}

.oa-account__profile table th {
  padding: 14px 16px;

  background: var(--oa-primary-50);

  color: var(--oa-primary-900);

  font-family: var(--oa-font-body);

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

  text-align: left;
}

.oa-account__profile table td {
  padding: 15px 16px;

  border-top: 1px solid var(--oa-border);

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   SETTINGS FORMS
========================================================= */

.oa-account__profile
  .lp-profile-content
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.oa-account__profile .lp-profile-content select,
.oa-account__profile .lp-profile-content textarea {
  width: 100%;

  min-height: 50px;

  padding: 12px 14px;

  border: 1px solid var(--oa-border);

  border-radius: 10px;

  outline: none;

  background: var(--oa-white);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);

  font-size: 14px;

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-account__profile
  .lp-profile-content
  input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.oa-account__profile .lp-profile-content select:focus,
.oa-account__profile .lp-profile-content textarea:focus {
  border-color: var(--oa-primary-400);

  box-shadow: 0 0 0 4px rgba(160, 20, 109, 0.08);
}

.oa-account__profile .lp-profile-content .lp-button,
.oa-account__profile .lp-profile-content button[type="submit"],
.oa-account__profile .lp-profile-content input[type="submit"] {
  display: inline-flex;

  min-height: 46px;

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

  padding: 13px 21px !important;

  border: 1px solid var(--oa-primary-500) !important;

  border-radius: var(--oa-radius-pill) !important;

  background: var(--oa-gradient-primary) !important;

  color: var(--oa-white) !important;

  font-family: var(--oa-font-body) !important;

  font-size: 13px !important;

  font-weight: 700 !important;

  cursor: pointer;

  box-shadow: var(--oa-shadow-button);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-account,
  .oa-account.e-con {
    padding: 48px 0 96px !important;
  }

  .oa-account__inner,
  .oa-account__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2)) !important;
  }

  .oa-account__profile #learn-press-profile.lp-user-profile > .lp-content-area {
    grid-template-columns: minmax(0, 1fr);

    gap: 22px !important;
  }

  .oa-account__profile #profile-sidebar,
  .oa-account__profile .lp-profile-content {
    grid-column: 1;
  }

  .oa-account__profile #profile-sidebar {
    overflow-x: auto;

    scrollbar-width: none;
  }

  .oa-account__profile #profile-sidebar::-webkit-scrollbar {
    display: none;
  }

  .oa-account__profile .lp-profile-nav-tabs {
    width: max-content;
    min-width: 100%;

    flex-direction: row;

    gap: 5px;
  }

  .oa-account__profile .lp-profile-nav-tabs > li {
    width: auto;

    flex: 0 0 auto;
  }

  .oa-account__profile .lp-profile-nav-tabs > li > a {
    min-width: 118px;

    justify-content: center;

    padding: 12px 14px !important;
  }

  .oa-account__profile .lp-profile-nav-tabs li > ul {
    top: 100%;
    left: 0;

    transform: none !important;
  }
}

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

@media (max-width: 767px) {
  .oa-account,
  .oa-account.e-con {
    padding: 28px 0 72px !important;
  }

  .oa-account__inner,
  .oa-account__inner.e-con {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2)) !important;

    gap: 20px !important;
  }

  .oa-account-hero {
    grid-template-columns: minmax(0, 1fr);

    gap: 22px;

    padding: 30px 24px;

    border-radius: var(--oa-radius-card);
  }

  .oa-account-hero__avatar,
  .oa-account-hero__avatar-image {
    width: 96px;
    height: 96px;
  }

  .oa-account-hero__avatar {
    flex-basis: 96px;
  }

  .oa-account-hero__copy {
    max-width: calc(100% - 42px);
  }

  .oa-account__profile .lp-profile-content {
    padding: 24px 18px !important;

    border-radius: 15px;
  }

  .oa-account__profile .dashboard-statistic__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oa-account__profile .statistic-box {
    grid-template-columns: minmax(0, 1fr);

    align-items: flex-start;

    min-height: 130px;
  }

  .oa-account__profile table {
    min-width: 620px;
  }
}

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

@media (max-width: 480px) {
  .oa-account__inner,
  .oa-account__inner.e-con {
    width: calc(100% - 24px) !important;
  }

  .oa-account-hero {
    padding: 26px 20px;
  }

  .oa-account__profile .lp-profile-content {
    padding: 22px 16px !important;
  }

  .oa-account__profile .dashboard-statistic__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .oa-account__profile .statistic-box {
    grid-template-columns:
      46px
      minmax(0, 1fr);

    min-height: 100px;
  }
}

/* =========================================================
   ONIGELE ACADEMY — LEARNPRESS CHECKOUT
========================================================= */

/* =========================================================
   PAGE
========================================================= */

.oa-checkout-page {
  position: relative;
  isolation: isolate;

  width: 100%;

  padding: 64px 0 128px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(242, 176, 30, 0.09),
      transparent 23%
    ),
    radial-gradient(
      circle at 4% 96%,
      rgba(160, 20, 109, 0.06),
      transparent 25%
    ),
    var(--oa-warm-cream);
}

.oa-checkout-page__inner {
  width: min(
    calc(100% - (var(--oa-page-padding-desktop) * 2)),
    var(--oa-container-max)
  );

  margin: 0 auto;
}

/* Neutralise LearnPress's generic archive wrapper */

.oa-checkout-page .lp-archive-courses,
.oa-checkout-page .lp-content-area {
  max-width: none !important;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.oa-checkout-page .learn-press-breadcrumb {
  margin: 0 0 14px;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.5;
}

.oa-checkout-page .learn-press-breadcrumb a {
  color: var(--oa-primary-600);

  font-weight: 600;

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-checkout-page .learn-press-breadcrumb a:hover {
  color: var(--oa-primary-800);

  text-decoration: underline;

  text-underline-offset: 3px;
}

/* =========================================================
   PAGE TITLE
========================================================= */

.oa-checkout-page h1.lp-content-area {
  width: 100% !important;
  max-width: none !important;

  margin: 0 0 32px !important;

  padding: 0 !important;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: clamp(36px, 4vw, 50px);

  font-weight: 800;
  line-height: 1.06;

  letter-spacing: -0.035em;
}

/* =========================================================
   HIDE CHECKOUT PAGINATION
========================================================= */

.oa-checkout-page .learn-press-pagination,
.oa-checkout-page .lp-pagination,
.oa-checkout-page .navigation.pagination,
.oa-checkout-page nav.pagination,
.oa-checkout-page .page-numbers {
  display: none !important;
}

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

.oa-checkout-page #learn-press-checkout-form {
  display: grid !important;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.92fr);

  width: 100%;

  align-items: start;

  gap: 34px;

  margin: 0;
  padding: 0;
}

.oa-checkout-page .lp-checkout-form__before {
  grid-column: 2;
  grid-row: 1;

  width: 100%;

  margin: 0;
  padding: 0;
}

.oa-checkout-page .lp-checkout-form__after {
  display: flex;

  grid-column: 1;
  grid-row: 1;

  width: 100%;

  flex-direction: column;

  gap: 28px;

  margin: 0;
  padding: 0;
}

/* Remove native floating layout */

.oa-checkout-page .lp-checkout-block,
.oa-checkout-page .lp-checkout-block.left,
.oa-checkout-page .lp-checkout-block.right {
  float: none !important;

  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
}

/* =========================================================
   LOGGED-IN ACCOUNT MESSAGE
========================================================= */

.oa-checkout-page #checkout-account-logged-in {
  width: 100% !important;

  margin: 0 0 -4px !important;

  padding: 0 !important;

  border: 0;

  background: transparent;
}

.oa-checkout-page #checkout-account-logged-in p {
  margin: 0;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.6;
}

.oa-checkout-page #checkout-account-logged-in a {
  color: var(--oa-primary-600);

  font-weight: 700;

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-checkout-page #checkout-account-logged-in a:hover {
  color: var(--oa-primary-800);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.oa-checkout-page #checkout-account-logged-in a:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;

  border-radius: 4px;
}

/* =========================================================
   SHARED CHECKOUT CARDS
========================================================= */

.oa-checkout-page #checkout-order,
.oa-checkout-page #checkout-payment,
.oa-checkout-page .learn-press-checkout-comment {
  width: 100%;

  padding: 32px 34px !important;

  border: 1px solid var(--oa-border);

  border-radius: 20px;

  background: var(--oa-white);

  box-shadow: 0 18px 50px rgba(22, 22, 22, 0.065);
}

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

.oa-checkout-page #checkout-order > h4,
.oa-checkout-page #checkout-payment > h4,
.oa-checkout-page .learn-press-checkout-comment > h4 {
  margin: 0 0 22px;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;

  letter-spacing: -0.02em;
}

/* =========================================================
   ORDER SUMMARY
========================================================= */

.oa-checkout-page #checkout-order {
  position: sticky;

  top: 110px;
}

.oa-checkout-page .lp-checkout-order__inner {
  width: 100%;
}

.oa-checkout-page #checkout-order table {
  width: 100%;

  margin: 0;

  border: 0;

  border-collapse: collapse;

  background: transparent;
}

.oa-checkout-page #checkout-order th,
.oa-checkout-page #checkout-order td {
  padding: 17px 0;

  border: 0;
  border-bottom: 1px solid var(--oa-border);

  background: transparent;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.5;
}

.oa-checkout-page #checkout-order .cart-item td {
  padding-top: 0;
}

.oa-checkout-page #checkout-order .course-thumbnail {
  width: 80px;

  padding-right: 15px;
}

.oa-checkout-page #checkout-order .course-thumbnail img {
  display: block;

  width: 64px;
  height: 64px;

  border-radius: 10px;

  object-fit: cover;
}

.oa-checkout-page #checkout-order .course-name,
.oa-checkout-page #checkout-order .course-name a {
  color: var(--oa-dark);

  font-weight: 700;
  line-height: 1.45;

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-checkout-page #checkout-order .course-name a:hover {
  color: var(--oa-primary-600);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.oa-checkout-page #checkout-order .col-number {
  color: var(--oa-primary-900);

  font-weight: 700;

  text-align: right;

  white-space: nowrap;
}

.oa-checkout-page #checkout-order .order-total th,
.oa-checkout-page #checkout-order .order-total td {
  padding-bottom: 0;

  border-bottom: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: 21px;
  font-weight: 800;
}

/* =========================================================
   ORDER COMMENT
========================================================= */

.oa-checkout-page .order-comments {
  display: block;

  width: 100%;
  min-height: 150px;

  resize: vertical;

  padding: 16px 17px;

  border: 1px solid var(--oa-border);

  border-radius: 12px;

  outline: none;

  background: var(--oa-neutral-50);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);

  font-size: 14px;
  line-height: 1.6;

  transition:
    border-color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-checkout-page .order-comments::placeholder {
  color: var(--oa-neutral-400);

  opacity: 1;
}

.oa-checkout-page .order-comments:focus {
  border-color: var(--oa-primary-400);

  background: var(--oa-white);

  box-shadow: 0 0 0 4px rgba(160, 20, 109, 0.08);
}

/* =========================================================
   PAYMENT
========================================================= */

.oa-checkout-page #checkout-payment .secure-connection {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-left: 10px;

  color: var(--oa-neutral-400);

  font-family: var(--oa-font-body);

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

.oa-checkout-page .payment-methods {
  display: flex;

  width: 100%;

  flex-direction: column;

  gap: 12px;

  margin: 0 0 22px !important;

  padding: 0 !important;

  list-style: none;
}

.oa-checkout-page .payment-methods li {
  width: 100%;

  margin: 0 !important;

  padding: 18px 19px !important;

  border: 1px solid var(--oa-border);

  border-radius: 12px;

  background: var(--oa-neutral-50);

  transition:
    border-color var(--oa-transition-fast),
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-checkout-page .payment-methods li:hover {
  border-color: var(--oa-primary-200);

  background: var(--oa-white);
}

.oa-checkout-page .payment-methods li:has(input:checked) {
  border-color: var(--oa-primary-400);

  background: var(--oa-primary-50);

  box-shadow: 0 0 0 3px rgba(160, 20, 109, 0.06);
}

.oa-checkout-page .payment-methods label {
  display: inline-flex;

  align-items: center;

  color: var(--oa-dark);

  font-family: var(--oa-font-body);

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

  cursor: pointer;
}

.oa-checkout-page .payment-methods input[type="radio"] {
  width: 18px;
  height: 18px;

  margin: 0 10px 0 0;

  accent-color: var(--oa-primary-500);

  cursor: pointer;
}

/* =========================================================
   PLACE ORDER
========================================================= */

.oa-checkout-page #checkout-order-action {
  width: 100%;

  margin: 22px 0 0;
}

.oa-checkout-page #learn-press-checkout-place-order {
  display: inline-flex !important;

  width: 100% !important;
  min-height: 56px;

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

  padding: 16px 24px !important;

  border: 1px solid var(--oa-primary-500) !important;

  border-radius: var(--oa-radius-pill) !important;

  background: var(--oa-gradient-primary) !important;

  color: var(--oa-white) !important;

  font-family: var(--oa-font-body) !important;

  font-size: 15px !important;

  font-weight: 700 !important;

  line-height: 1;

  text-align: center;

  cursor: pointer;

  box-shadow: var(--oa-shadow-button) !important;

  transition:
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

.oa-checkout-page #learn-press-checkout-place-order:hover {
  background: var(--oa-gradient-primary-hover) !important;

  box-shadow: 0 15px 36px rgba(160, 20, 109, 0.28) !important;

  transform: translateY(-1px);
}

.oa-checkout-page #learn-press-checkout-place-order:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;
}

/* =========================================================
   TERMS
========================================================= */

.oa-checkout-page .lp-terms-and-conditions {
  margin: 20px 0 0 !important;

  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 13px;
  line-height: 1.6;
}

.oa-checkout-page .lp-terms-and-conditions a {
  color: var(--oa-primary-600);

  font-weight: 700;

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

.oa-checkout-page .lp-terms-and-conditions a:hover {
  color: var(--oa-primary-800);

  text-decoration: underline;

  text-underline-offset: 3px;
}

.oa-checkout-page .lp-terms-and-conditions a:focus-visible {
  outline: 3px solid var(--oa-primary-200);

  outline-offset: 3px;

  border-radius: 4px;
}

/* =========================================================
   MESSAGES
========================================================= */

.oa-checkout-page .learn-press-message {
  width: 100%;

  margin: 0 0 24px !important;

  padding: 16px 18px !important;

  border-radius: 12px;

  font-family: var(--oa-font-body);

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

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .oa-checkout-page {
    padding: 48px 0 96px;
  }

  .oa-checkout-page__inner {
    width: calc(100% - (var(--oa-page-padding-tablet) * 2));
  }

  .oa-checkout-page #learn-press-checkout-form {
    grid-template-columns: minmax(0, 1fr);

    gap: 26px;
  }

  .oa-checkout-page .lp-checkout-form__before {
    grid-column: 1;
    grid-row: 2;
  }

  .oa-checkout-page .lp-checkout-form__after {
    grid-column: 1;
    grid-row: 1;
  }

  .oa-checkout-page #checkout-order {
    position: static;
  }
}

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

@media (max-width: 767px) {
  .oa-checkout-page {
    padding: 32px 0 72px;
  }

  .oa-checkout-page__inner {
    width: calc(100% - (var(--oa-page-padding-mobile) * 2));
  }

  .oa-checkout-page h1.lp-content-area {
    margin-bottom: 26px !important;
  }

  .oa-checkout-page #checkout-order,
  .oa-checkout-page #checkout-payment,
  .oa-checkout-page .learn-press-checkout-comment {
    padding: 24px 20px !important;

    border-radius: 16px;
  }

  .oa-checkout-page #checkout-order .course-thumbnail {
    width: 60px;

    padding-right: 10px;
  }

  .oa-checkout-page #checkout-order .course-thumbnail img {
    width: 50px;
    height: 50px;
  }

  .oa-checkout-page #checkout-order th,
  .oa-checkout-page #checkout-order td {
    font-size: 12px;
  }

  .oa-checkout-page .payment-methods li {
    padding: 16px !important;
  }
}

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

@media (max-width: 390px) {
  .oa-checkout-page__inner {
    width: calc(100% - 24px);
  }

  .oa-checkout-page #checkout-order,
  .oa-checkout-page #checkout-payment,
  .oa-checkout-page .learn-press-checkout-comment {
    padding: 22px 17px !important;
  }
}

/* =========================================================
   ONIGELE ACADEMY — LEARNPRESS COURSE PLAYER
========================================================= */

body.course-item-popup {
  --oa-player-sidebar-width: 380px;
  --oa-player-header-height: 72px;
  --oa-player-footer-height: 68px;

  overflow: hidden !important;

  background: var(--oa-warm-cream);
}

/* =========================================================
   PLAYER SHELL
========================================================= */

body.course-item-popup #popup-course {
  position: fixed;

  z-index: 9999;

  inset: 0;

  display: flex;

  width: 100%;
  height: 100vh;
  height: 100dvh;

  overflow: hidden;

  background: var(--oa-warm-cream);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);
}

/* =========================================================
   PLAYER HEADER
========================================================= */

body.course-item-popup #popup-header {
  position: fixed;

  z-index: 120;

  top: 0;
  right: 0;
  left: var(--oa-player-sidebar-width);

  display: flex;

  min-height: var(--oa-player-header-height);

  align-items: center;

  padding: 0 26px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  background: var(--oa-primary-900);

  box-shadow: 0 8px 28px rgba(22, 22, 22, 0.12);

  transition: left var(--oa-transition-default);
}

body.course-item-popup #popup-header .popup-header__inner {
  display: flex;

  width: 100%;
  max-width: 1040px;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  margin: 0 auto;

  padding: 0;
}

/* Course title */

body.course-item-popup #popup-header .course-title {
  min-width: 0;

  margin: 0;
  padding: 0;

  font-family: var(--oa-font-heading);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

body.course-item-popup #popup-header .course-title a {
  display: -webkit-box;

  overflow: hidden;

  color: var(--oa-white);

  text-decoration: none;

  text-overflow: ellipsis;

  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;

  transition: color var(--oa-transition-fast);
}

body.course-item-popup #popup-header .course-title a:hover {
  color: var(--oa-gold-400);
}

/* Progress */

body.course-item-popup #popup-header .items-progress {
  display: flex;

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

  gap: 12px;

  color: rgba(255, 255, 255, 0.76);

  white-space: nowrap;
}

body.course-item-popup #popup-header .number {
  padding: 0;

  color: rgba(255, 255, 255, 0.72);

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

body.course-item-popup #popup-header .progress-bg {
  overflow: hidden;

  height: 7px;

  border-radius: var(--oa-radius-pill);

  background: rgba(255, 255, 255, 0.16);
}

body.course-item-popup #popup-header .progress-active {
  border-radius: inherit;

  background: var(--oa-gold-400);
}

/* Header action */

body.course-item-popup #popup-header .lp-button {
  display: inline-flex;

  min-height: 40px;

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

  padding: 10px 17px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: var(--oa-radius-pill);

  background: var(--oa-primary-500);

  color: var(--oa-white);

  font-family: var(--oa-font-body);

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

  box-shadow: none;

  transition:
    background var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

body.course-item-popup #popup-header .lp-button:hover {
  background: var(--oa-primary-600);

  color: var(--oa-white);

  transform: translateY(-1px);
}

/* =========================================================
   BACK TO COURSE
========================================================= */

body.course-item-popup #popup-course .back-course {
  display: inline-flex;

  min-height: var(--oa-player-header-height);

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

  padding: 0 22px;

  background: var(--oa-primary-900);

  color: var(--oa-white);

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

  text-decoration: none;

  transition:
    background var(--oa-transition-fast),
    color var(--oa-transition-fast);
}

body.course-item-popup #popup-course .back-course:hover {
  background: var(--oa-primary-800);

  color: var(--oa-gold-400);
}

/* =========================================================
   SIDEBAR TOGGLE
========================================================= */

body.course-item-popup #sidebar-toggle {
  display: inline-flex;

  width: 42px;
  min-width: 42px;
  height: var(--oa-player-header-height);

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

  margin: 0;

  padding: 0;

  border: 0;

  background: rgba(255, 255, 255, 0.08);

  color: var(--oa-white);

  font-size: 18px;

  cursor: pointer;

  box-shadow: none;

  transition:
    background var(--oa-transition-fast),
    color var(--oa-transition-fast);
}

body.course-item-popup #sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.16);

  color: var(--oa-gold-400);
}

/* =========================================================
   CURRICULUM SIDEBAR
========================================================= */

body.course-item-popup #popup-sidebar {
  position: relative;

  z-index: 125;

  flex: 0 0 var(--oa-player-sidebar-width);

  width: var(--oa-player-sidebar-width);

  overflow: hidden;

  border-right: 1px solid var(--oa-border);

  background: var(--oa-white);

  box-shadow: 12px 0 40px rgba(22, 22, 22, 0.06);

  transition:
    flex-basis var(--oa-transition-default),
    width var(--oa-transition-default);
}

/* Sidebar search */

body.course-item-popup #popup-sidebar .search-course {
  position: relative;

  display: flex;

  width: 100%;
  height: var(--oa-player-header-height);

  align-items: center;

  padding: 0 16px;

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

  background: var(--oa-primary-50);
}

body.course-item-popup #popup-sidebar .search-course input[name="s"] {
  width: 100%;
  min-height: 44px;

  padding: 11px 44px 11px 14px;

  border: 1px solid var(--oa-border);

  border-radius: 11px;

  outline: none;

  background: var(--oa-white);

  color: var(--oa-dark);

  font-family: var(--oa-font-body);

  font-size: 13px;

  box-shadow: 0 5px 16px rgba(22, 22, 22, 0.025);

  transition:
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

body.course-item-popup #popup-sidebar .search-course input[name="s"]:focus {
  border-color: var(--oa-primary-400);

  box-shadow: 0 0 0 4px rgba(160, 20, 109, 0.08);
}

body.course-item-popup #popup-sidebar .search-course button {
  position: absolute;

  top: 50%;
  right: 24px;

  display: inline-flex;

  width: 34px;
  height: 34px;

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

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--oa-primary-500);

  box-shadow: none;

  transform: translateY(-50%);
}

/* Curriculum scrolling area */

body.course-item-popup #popup-sidebar .course-curriculum,
body.course-item-popup #popup-sidebar .lp-course-curriculum {
  position: absolute;

  top: var(--oa-player-header-height);
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 0 0 28px;

  background: var(--oa-white);

  scrollbar-width: thin;

  scrollbar-color: var(--oa-primary-200) var(--oa-neutral-50);
}

/* Curriculum section */

body.course-item-popup #popup-sidebar .section,
body.course-item-popup #popup-sidebar .course-section {
  margin: 0;
  padding: 0;

  border: 0;
  border-bottom: 1px solid var(--oa-border);

  border-radius: 0;

  background: transparent;
}

body.course-item-popup #popup-sidebar .section-header,
body.course-item-popup #popup-sidebar .course-section__header {
  position: relative;

  z-index: 2;

  padding: 18px 18px 15px;

  background: var(--oa-neutral-50);

  cursor: pointer;
}

body.course-item-popup #popup-sidebar .section-title,
body.course-item-popup #popup-sidebar .course-section__title {
  margin: 0;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

body.course-item-popup #popup-sidebar .section-meta {
  padding: 6px 0 0;

  color: var(--oa-neutral-400);

  font-size: 11px;
}

/* Curriculum items */

body.course-item-popup #popup-sidebar .course-item {
  position: relative;

  margin: 0;

  border: 0;
  border-top: 1px solid rgba(236, 231, 226, 0.7);

  background: var(--oa-white);

  transition: background var(--oa-transition-fast);
}

body.course-item-popup #popup-sidebar .course-item:hover {
  background: var(--oa-primary-50);
}

body.course-item-popup #popup-sidebar .course-item a,
body.course-item-popup #popup-sidebar .course-item__content {
  display: flex;

  min-height: 58px;

  align-items: flex-start;

  gap: 10px;

  padding: 14px 18px;

  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;

  text-decoration: none;
}

/* Current lesson */

body.course-item-popup #popup-sidebar .course-item.current {
  background: var(--oa-primary-50);
}

body.course-item-popup #popup-sidebar .course-item.current::before {
  content: "";

  position: absolute;

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

  width: 4px;

  background: var(--oa-primary-500);
}

body.course-item-popup #popup-sidebar .course-item.current a,
body.course-item-popup
  #popup-sidebar
  .course-item.current
  .course-item__content {
  color: var(--oa-primary-700);

  font-weight: 700;
}

/* Completed lesson */

body.course-item-popup #popup-sidebar .course-item.status-completed,
body.course-item-popup #popup-sidebar .course-item.completed {
  background: rgba(93, 149, 74, 0.045);
}

body.course-item-popup #popup-sidebar .course-item.status-completed .trans,
body.course-item-popup #popup-sidebar .course-item.completed .trans {
  color: #4f8b3f;
}

/* =========================================================
   LESSON CONTENT AREA
========================================================= */

body.course-item-popup #learn-press-content-item {
  width: 100%;
  height: 100%;

  background: var(--oa-warm-cream);
}

body.course-item-popup #popup-content {
  position: relative;

  flex: 1 1 auto;

  min-width: 0;

  margin: var(--oa-player-header-height) 0 var(--oa-player-footer-height);

  padding: 34px 32px;

  overflow-y: auto;
  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 96% 4%,
      rgba(242, 176, 30, 0.07),
      transparent 22%
    ),
    var(--oa-warm-cream);

  scrollbar-width: thin;

  scrollbar-color: var(--oa-primary-200) var(--oa-neutral-50);
}

body.course-item-popup .content-item-scrollable {
  width: 100%;
}

body.course-item-popup .content-item-wrap {
  width: 100%;
  max-width: 940px;

  margin: 0 auto;

  padding: 48px 52px;

  border: 1px solid var(--oa-border);

  border-radius: 20px;

  background: var(--oa-white);

  box-shadow: 0 18px 52px rgba(22, 22, 22, 0.06);
}

/* Lesson title */

body.course-item-popup .content-item-wrap .course-item-title {
  margin: 0 0 28px;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-size: clamp(28px, 4vw, 42px);

  font-weight: 800;
  line-height: 1.08;

  letter-spacing: -0.035em;
}

/* Lesson body */

body.course-item-popup .content-item-description,
body.course-item-popup .content-item-summary {
  color: var(--oa-text-secondary);

  font-family: var(--oa-font-body);

  font-size: 15px;
  line-height: 1.8;
}

body.course-item-popup .content-item-description p,
body.course-item-popup .content-item-summary p {
  margin: 0 0 18px;
}

body.course-item-popup .content-item-description h2,
body.course-item-popup .content-item-description h3,
body.course-item-popup .content-item-description h4,
body.course-item-popup .content-item-summary h2,
body.course-item-popup .content-item-summary h3,
body.course-item-popup .content-item-summary h4 {
  margin: 34px 0 14px;

  color: var(--oa-primary-900);

  font-family: var(--oa-font-heading);

  font-weight: 700;
  line-height: 1.25;

  letter-spacing: -0.02em;
}

body.course-item-popup .content-item-description img,
body.course-item-popup .content-item-summary img {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 24px auto;

  border-radius: 14px;
}

/* Embedded video */

body.course-item-popup .content-item-wrap iframe,
body.course-item-popup .content-item-wrap video,
body.course-item-popup .content-item-wrap .wp-video,
body.course-item-popup .content-item-wrap .mejs-container {
  max-width: 100%;

  border-radius: 14px;
}

body.course-item-popup .content-item-wrap iframe {
  width: 100%;

  aspect-ratio: 16 / 9;

  height: auto;

  border: 0;
}

/* =========================================================
   COMPLETE LESSON AND QUIZ BUTTONS
========================================================= */

body.course-item-popup #popup-content .lp-button {
  display: inline-flex;

  min-height: 48px;

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

  padding: 13px 22px;

  border: 1px solid var(--oa-primary-500);

  border-radius: var(--oa-radius-pill);

  background: var(--oa-gradient-primary);

  color: var(--oa-white);

  font-family: var(--oa-font-body);

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

  cursor: pointer;

  box-shadow: var(--oa-shadow-button);

  transition:
    background var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast),
    transform var(--oa-transition-fast);
}

body.course-item-popup #popup-content .lp-button:hover {
  border-color: var(--oa-primary-600);

  background: var(--oa-gradient-primary-hover);

  color: var(--oa-white);

  transform: translateY(-1px);
}

body.course-item-popup #popup-content .lp-button.completed {
  border-color: #5d954a;

  background: #5d954a;

  color: var(--oa-white);

  box-shadow: 0 10px 24px rgba(93, 149, 74, 0.18);
}

/* =========================================================
   PREVIOUS / NEXT FOOTER
========================================================= */

body.course-item-popup #popup-footer {
  position: fixed;

  z-index: 110;

  right: 0;
  bottom: 0;
  left: var(--oa-player-sidebar-width);

  display: flex;

  width: auto;
  max-width: none;
  min-height: var(--oa-player-footer-height);

  align-items: center;

  padding: 0 30px;

  border-top: 1px solid var(--oa-border);

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 -10px 30px rgba(22, 22, 22, 0.05);

  transition: left var(--oa-transition-default);
}

body.course-item-popup #popup-footer .course-item-nav {
  display: flex;

  width: 100%;
  max-width: 940px;

  align-items: center;
  justify-content: space-between;

  margin: 0 auto;
}

body.course-item-popup #popup-footer .prev,
body.course-item-popup #popup-footer .next {
  display: flex;

  align-items: center;

  gap: 9px;

  line-height: 1.4;
}

body.course-item-popup #popup-footer .prev a,
body.course-item-popup #popup-footer .next a {
  color: var(--oa-neutral-700);

  font-family: var(--oa-font-body);

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

  text-decoration: none;

  transition: color var(--oa-transition-fast);
}

body.course-item-popup #popup-footer .prev:hover a,
body.course-item-popup #popup-footer .next:hover a {
  color: var(--oa-primary-600);
}

/* =========================================================
   COLLAPSED SIDEBAR
========================================================= */

body.course-item-popup.lp-sidebar-toggle__close #popup-sidebar {
  flex-basis: 0;

  width: 0;

  border-right: 0;
}

body.course-item-popup.lp-sidebar-toggle__close #popup-header,
body.course-item-popup.lp-sidebar-toggle__close #popup-footer {
  left: 0;
}

/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1280px) {
  body.course-item-popup {
    --oa-player-sidebar-width: 320px;
  }

  body.course-item-popup .content-item-wrap {
    max-width: 860px;

    padding: 42px 40px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  body.course-item-popup {
    --oa-player-sidebar-width: 300px;
  }

  body.course-item-popup #popup-header {
    padding: 0 18px;
  }

  body.course-item-popup #popup-content {
    padding: 26px 20px;
  }

  body.course-item-popup .content-item-wrap {
    padding: 36px 30px;
  }
}

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

@media (max-width: 767px) {
  body.course-item-popup {
    --oa-player-sidebar-width: min(86vw, 320px);
    --oa-player-header-height: 76px;
    --oa-player-footer-height: 64px;
  }

  body.course-item-popup #popup-header,
  body.course-item-popup #popup-footer {
    left: 0;
  }

  body.course-item-popup #popup-header {
    padding: 0 12px;
  }

  body.course-item-popup #popup-header .popup-header__inner {
    flex-direction: row;

    gap: 10px;
  }

  body.course-item-popup #popup-header .items-progress {
    display: none;
  }

  body.course-item-popup #popup-sidebar {
    position: fixed;

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

    z-index: 150;

    width: var(--oa-player-sidebar-width);

    max-width: var(--oa-player-sidebar-width);

    box-shadow: 18px 0 50px rgba(22, 22, 22, 0.16);
  }

  body.course-item-popup:not(.lp-sidebar-toggle__open) #popup-sidebar {
    flex-basis: 0;

    width: 0;
  }

  body.course-item-popup.lp-sidebar-toggle__open #popup-sidebar {
    flex-basis: var(--oa-player-sidebar-width);

    width: var(--oa-player-sidebar-width);
  }

  body.course-item-popup #popup-content {
    min-width: 100vw;

    padding: 18px 12px;
  }

  body.course-item-popup .content-item-wrap {
    padding: 28px 20px;

    border-radius: 15px;
  }

  body.course-item-popup .content-item-wrap .course-item-title {
    margin-bottom: 22px;

    text-align: left;
  }

  body.course-item-popup #popup-footer {
    padding: 0 16px;
  }

  body.course-item-popup #popup-footer .prev a,
  body.course-item-popup #popup-footer .next a {
    font-size: 12px;
  }
}

/* =========================================================
   WORDPRESS ADMIN BAR
========================================================= */

body.admin-bar.course-item-popup #popup-course {
  top: 32px;

  height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar.course-item-popup #popup-course {
    top: 46px;

    height: calc(100dvh - 46px);
  }
}

/* =========================================================
   SINGLE COURSE — PURCHASE ACTIONS
========================================================= */

.oa-course-purchase__woocommerce,
.oa-course-purchase__native-action {
  width: 100%;
}

/* WooCommerce / LearnPress purchase form */

.oa-course-purchase__woo-form {
  width: 100%;
  margin: 0;
}

/* ---------------------------------------------------------
   PRIMARY COURSE ACTION
   Buy Now / Enroll Now / Start Learning / Continue Learning
--------------------------------------------------------- */

.oa-course-purchase__buy-action,
.oa-course-purchase__native-action .lp-button,
.oa-course-purchase__native-action button,
.oa-course-purchase__native-action a {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 0;
  padding: 14px 22px;

  border: 1px solid var(--oa-primary-500) !important;
  border-radius: var(--oa-radius-pill) !important;

  background: var(--oa-primary-500) !important;
  color: #ffffff !important;

  font-family: var(--oa-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;

  box-shadow: 0 10px 24px rgba(92, 34, 72, 0.18);

  cursor: pointer;

  transition:
    transform var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-course-purchase__buy-action:hover,
.oa-course-purchase__native-action .lp-button:hover,
.oa-course-purchase__native-action button:hover,
.oa-course-purchase__native-action a:hover {
  border-color: var(--oa-primary-600) !important;
  background: var(--oa-primary-600) !important;
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(92, 34, 72, 0.22);
}

.oa-course-purchase__buy-action:focus-visible,
.oa-course-purchase__native-action .lp-button:focus-visible,
.oa-course-purchase__native-action button:focus-visible,
.oa-course-purchase__native-action a:focus-visible {
  outline: 3px solid var(--oa-primary-200);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   LOGIN ACTION
--------------------------------------------------------- */

.oa-course-purchase__login-action {
  display: inline-flex !important;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border: 1px solid var(--oa-primary-500);
  border-radius: var(--oa-radius-pill);

  background: var(--oa-primary-500);
  color: #ffffff !important;

  font-family: var(--oa-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;

  box-shadow: 0 10px 24px rgba(92, 34, 72, 0.18);

  transition:
    transform var(--oa-transition-fast),
    background var(--oa-transition-fast),
    border-color var(--oa-transition-fast),
    box-shadow var(--oa-transition-fast);
}

.oa-course-purchase__login-action:hover {
  border-color: var(--oa-primary-600);
  background: var(--oa-primary-600);
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(92, 34, 72, 0.22);
}

/* ---------------------------------------------------------
   PREVENT LEARNPRESS DEFAULT BUTTON STYLING FROM SHOWING
   THROUGH OUR COMPONENT
--------------------------------------------------------- */

.oa-course-purchase__native-action .lp-button::before,
.oa-course-purchase__native-action .lp-button::after,
.oa-course-purchase__buy-action::before,
.oa-course-purchase__buy-action::after {
  display: none !important;
}

.oa-course-purchase__native-action .lp-button {
  box-shadow: 0 10px 24px rgba(92, 34, 72, 0.18) !important;
}

/* ---------------------------------------------------------
   BUTTON TEXT
--------------------------------------------------------- */

.oa-course-purchase__buy-action span,
.oa-course-purchase__login-action span,
.oa-course-purchase__native-action .lp-button span {
  display: inline-block;
  color: inherit;
  text-align: center;
}

/* ---------------------------------------------------------
   DISABLED / PROCESSING STATE
--------------------------------------------------------- */

.oa-course-purchase__buy-action:disabled,
.oa-course-purchase__buy-action.disabled,
.oa-course-purchase__buy-action.loading,
.oa-course-purchase__native-action .lp-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {
  .oa-course-purchase__buy-action,
  .oa-course-purchase__login-action,
  .oa-course-purchase__native-action .lp-button,
  .oa-course-purchase__native-action button,
  .oa-course-purchase__native-action a {
    min-height: 50px;
    padding: 13px 18px;
    font-size: 13px;
  }
}

.oa-course-purchase__curriculum-button {
  border-color: rgba(22, 22, 22, 0.18) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  border-radius: var(--oa-radius-pill) !important;
  color: var(--oa-dark) !important;
  box-shadow: none !important;
}

.oa-course-purchase__curriculum-button .elementor-button:hover {
  border-color: var(--oa-primary-300) !important;
  background: var(--oa-white) !important;
  color: var(--oa-primary-500) !important;
}

/* =========================================================
   ONIGELE ACADEMY — WOOCOMMERCE CHECKOUT
   Visual styling only — does not alter checkout functionality
   ========================================================= */

/* ---------------------------------------------------------
   CHECKOUT PAGE
   --------------------------------------------------------- */

.wc-block-checkout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 0 100px;
}

.wc-block-checkout h1,
.wc-block-checkout h2,
.wc-block-checkout h3 {
  color: #5a0b3a;
}

.wc-block-checkout h1 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 42px;
}

/* ---------------------------------------------------------
   CHECKOUT COLUMNS
   --------------------------------------------------------- */

.wc-block-components-sidebar-layout {
  gap: 48px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right: 0;
}

.wc-block-components-sidebar {
  padding-left: 0;
}

/* ---------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------- */

.wc-block-components-checkout-step__heading {
  color: #5a0b3a;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}

.wc-block-components-checkout-step__heading-content {
  color: #5a0b3a;
}

/* ---------------------------------------------------------
   FORM FIELDS
   --------------------------------------------------------- */

.wc-block-components-text-input input,
.wc-block-components-text-input select,
.wc-block-components-text-input textarea,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-address-form input,
.wc-block-components-address-form select {
  min-height: 48px;
  border: 1px solid #d9d5d7;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 14px;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input select:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-combobox .components-combobox-control__input:focus,
.wc-block-components-address-form input:focus,
.wc-block-components-address-form select:focus {
  border-color: #bd1477;
  box-shadow: 0 0 0 3px rgba(189, 20, 119, 0.08);
  outline: none;
}

/* ---------------------------------------------------------
   FORM LABELS
   --------------------------------------------------------- */

.wc-block-components-text-input label,
.wc-block-components-address-form label {
  color: #333333;
  font-size: 13px;
  font-weight: 500;
}

/* ---------------------------------------------------------
   PAYMENT CARD
   --------------------------------------------------------- */

.wc-block-components-checkout-payment {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid #e5e0e3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(45, 18, 35, 0.06);
}

.wc-block-components-checkout-payment__title {
  color: #5a0b3a;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Payment method rows */

.wc-block-components-checkout-payment__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wc-block-components-radio-control {
  border-radius: 10px;
}

.wc-block-components-radio-control__option {
  border: 1px solid #e2dde0;
  border-radius: 10px;
  padding: 17px 18px;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.wc-block-components-radio-control__option:hover {
  border-color: #bd1477;
}

.wc-block-components-radio-control__option-checked {
  border-color: #bd1477;
  background: #fff8fc;
  box-shadow: 0 4px 16px rgba(189, 20, 119, 0.07);
}

/* ---------------------------------------------------------
   PAYMENT METHOD TEXT
   --------------------------------------------------------- */

.wc-block-components-radio-control__label {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

.wc-block-components-radio-control__secondary-label {
  color: #777777;
  font-size: 13px;
}

/* ---------------------------------------------------------
   PAYSTACK / PAYMENT CONTENT
   --------------------------------------------------------- */

.wc-block-components-radio-control__content {
  margin-top: 12px;
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   ORDER SUMMARY CARD
   --------------------------------------------------------- */

.wc-block-components-checkout-order-summary {
  padding: 28px;
  border: 1px solid #e5e0e3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(45, 18, 35, 0.06);
}

.wc-block-components-checkout-order-summary__title {
  color: #5a0b3a;
  font-size: 20px;
  font-weight: 700;
}

/* ---------------------------------------------------------
   ORDER SUMMARY PRODUCT
   --------------------------------------------------------- */

.wc-block-components-order-summary-item {
  padding: 18px 0;
}

.wc-block-components-order-summary-item__description {
  color: #333333;
  font-size: 13px;
  font-weight: 600;
}

.wc-block-components-order-summary-item__quantity {
  border-color: #bd1477;
  color: #bd1477;
}

.wc-block-components-order-summary-item__individual-price,
.wc-block-components-order-summary-item__total-price {
  color: #5a0b3a;
  font-weight: 600;
}

/* ---------------------------------------------------------
   ORDER SUMMARY TOTALS
   --------------------------------------------------------- */

.wc-block-components-totals-wrapper {
  border-top-color: #eee6eb;
}

.wc-block-components-totals-item {
  padding: 12px 0;
}

.wc-block-components-totals-item__label {
  color: #555555;
}

.wc-block-components-totals-item__value {
  color: #5a0b3a;
  font-weight: 600;
}

.wc-block-components-totals-footer-item {
  border-top: 1px solid #e8e0e5;
  margin-top: 8px;
  padding-top: 18px;
}

.wc-block-components-totals-footer-item
  .wc-block-components-totals-item__label {
  color: #5a0b3a;
  font-size: 18px;
  font-weight: 700;
}

.wc-block-components-totals-footer-item
  .wc-block-components-totals-item__value {
  color: #5a0b3a;
  font-size: 20px;
  font-weight: 700;
}

/* ---------------------------------------------------------
   COUPON
   --------------------------------------------------------- */

.wc-block-components-totals-coupon {
  border-top: 1px solid #eee6eb;
  padding-top: 16px;
}

.wc-block-components-totals-coupon button {
  color: #bd1477;
  font-weight: 600;
}

/* ---------------------------------------------------------
   PLACE ORDER
   --------------------------------------------------------- */

.wc-block-components-checkout-place-order {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #e5e0e3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(45, 18, 35, 0.06);
}

.wc-block-components-checkout-place-order .wc-block-components-button {
  min-height: 54px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #bd1477;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(189, 20, 119, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.wc-block-components-checkout-place-order .wc-block-components-button:hover {
  background: #a80f68;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(189, 20, 119, 0.25);
}

/* ---------------------------------------------------------
   TERMS & CONDITIONS
   --------------------------------------------------------- */

.wc-block-checkout__terms {
  margin-top: 18px;
  color: #666666;
  font-size: 12px;
  line-height: 1.6;
}

.wc-block-checkout__terms a,
.wc-block-components-checkout-place-order a {
  color: #bd1477;
  font-weight: 600;
  text-decoration: none;
}

.wc-block-checkout__terms a:hover,
.wc-block-components-checkout-place-order a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   LOGGED-IN USER / ACCOUNT LINKS
   --------------------------------------------------------- */

.woocommerce-checkout .woocommerce-form-login-toggle a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .wc-block-components-checkout-step a {
  color: #bd1477;
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-checkout .woocommerce-form-login-toggle a:hover,
.woocommerce-checkout .woocommerce-info a:hover,
.woocommerce-checkout .wc-block-components-checkout-step a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   LEGACY LOGGED-IN / LOGOUT LINKS
   --------------------------------------------------------- */

.woocommerce-checkout .woocommerce-MyAccount-content a,
.woocommerce-checkout .logged-in-as a,
.woocommerce-checkout .woocommerce-form-login-toggle a {
  color: #bd1477;
  font-weight: 600;
}

.woocommerce-checkout .logged-in-as {
  color: #555555;
}

/* ---------------------------------------------------------
   NOTICES
   --------------------------------------------------------- */

.wc-block-components-notices {
  margin-bottom: 20px;
}

.wc-block-components-notice-banner {
  border-radius: 10px;
}

/* ---------------------------------------------------------
   REMOVE UNNECESSARY PAGINATION / NAVIGATION
   --------------------------------------------------------- */

.woocommerce-checkout .woocommerce-pagination,
.woocommerce-checkout nav.woocommerce-pagination,
.woocommerce-checkout .page-numbers {
  display: none !important;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 781px) {
  .wc-block-checkout {
    padding: 36px 18px 70px;
  }

  .wc-block-checkout h1 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .wc-block-components-sidebar-layout {
    gap: 28px;
  }

  .wc-block-components-checkout-payment,
  .wc-block-components-checkout-order-summary,
  .wc-block-components-checkout-place-order {
    padding: 20px;
    border-radius: 14px;
  }

  .wc-block-components-checkout-payment {
    margin-top: 26px;
  }

  .wc-block-components-sidebar {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {
  .wc-block-checkout {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wc-block-checkout h1 {
    font-size: 30px;
  }

  .wc-block-components-checkout-payment,
  .wc-block-components-checkout-order-summary,
  .wc-block-components-checkout-place-order {
    padding: 16px;
  }
}

/* =========================================================
   ONIGELE ACADEMY — CHECKOUT DESKTOP NO-WRAP
   ========================================================= */

@media (min-width: 782px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 768px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    flex-direction: column !important;
  }
}
