.mydev-formation {
  --mydev-formation-text: var(--mydev-formation-text-override, var(--e-global-color-text, #1f2937));
  --mydev-formation-heading: color-mix(in srgb, var(--e-global-color-primary, #0f172a) 80%, #0f172a 20%);
  --mydev-formation-accent: var(--e-global-color-primary, #1d4ed8);
  --mydev-formation-theme-surface: var(--e-global-color-secondary, #ffffff);
  --mydev-formation-surface: color-mix(in srgb, var(--mydev-formation-theme-surface) 8%, #ffffff 92%);
  --mydev-formation-surface-soft: color-mix(in srgb, var(--mydev-formation-theme-surface) 4%, #f8fafc 96%);
  --mydev-formation-border: color-mix(in srgb, var(--mydev-formation-text) 14%, transparent);
  --mydev-formation-border-strong: color-mix(in srgb, var(--mydev-formation-text) 24%, transparent);
  --mydev-formation-muted: color-mix(in srgb, var(--mydev-formation-text) 66%, transparent);
  --mydev-formation-font-family: var(--e-global-typography-text-font-family, inherit);
  --mydev-formation-font-weight: var(--e-global-typography-text-font-weight, inherit);
  --mydev-formation-heading-font-family: var(--e-global-typography-primary-font-family, var(--mydev-formation-font-family));
  --mydev-formation-heading-font-weight: var(--e-global-typography-primary-font-weight, 700);
  --mydev-formation-card-columns: 3;
  --mydev-formation-card-radius: 18px;
  --mydev-formation-card-padding: 20px;
  --mydev-formation-card-shadow: none;
  --mydev-formation-single-spacing: 24px;
  --mydev-formation-single-sidebar-width: 32%;
  --mydev-formation-sticky-offset: 100px;
  --mydev-formation-gap: clamp(16px, 2.2vw, 26px);
  --mydev-formation-button-radius: 999px;
  --mydev-formation-button-border-width: 1px;
  --mydev-formation-button-primary-bg: var(--mydev-formation-accent);
  --mydev-formation-button-primary-text: #ffffff;
  --mydev-formation-button-primary-border: var(--mydev-formation-accent);
  --mydev-formation-button-primary-hover-bg: color-mix(in srgb, var(--mydev-formation-accent) 86%, black 14%);
  --mydev-formation-button-primary-hover-text: var(--mydev-formation-button-primary-text);
  --mydev-formation-button-primary-hover-border: var(--mydev-formation-button-primary-hover-bg);
  --mydev-formation-button-secondary-bg: color-mix(in srgb, var(--mydev-formation-surface) 74%, white 26%);
  --mydev-formation-button-secondary-text: color-mix(in srgb, var(--mydev-formation-accent) 88%, black 10%);
  --mydev-formation-button-secondary-border: color-mix(in srgb, var(--mydev-formation-accent) 36%, transparent);
  --mydev-formation-button-secondary-hover-bg: color-mix(in srgb, var(--mydev-formation-accent) 8%, white 92%);
  --mydev-formation-button-secondary-hover-text: var(--mydev-formation-button-secondary-text);
  --mydev-formation-button-secondary-hover-border: var(--mydev-formation-button-secondary-border);
  --mydev-formation-ring: color-mix(in srgb, var(--mydev-formation-accent) 24%, transparent);
  --mydev-formation-shadow-soft: 0 8px 24px color-mix(in srgb, var(--mydev-formation-text) 10%, transparent);
  --mydev-formation-shadow-medium: 0 18px 48px color-mix(in srgb, var(--mydev-formation-text) 14%, transparent);
  color: var(--mydev-formation-text);
  font-family: var(--mydev-formation-font-family);
  font-weight: var(--mydev-formation-font-weight);
  line-height: 1.55;
}

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

.mydev-formation a {
  color: inherit;
}

.mydev-formation button,
.mydev-formation input,
.mydev-formation select,
.mydev-formation textarea {
  font-family: var(--mydev-formation-font-family);
  font-weight: var(--mydev-formation-font-weight);
  color: var(--mydev-formation-text);
}

.mydev-formation-archive-wrap,
.mydev-formation-single-wrap {
  position: relative;
}

.mydev-formation-archive-wrap {
  overflow: clip;
}

.mydev-formation-archive-wrap::before,
.mydev-formation-single-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 420px at 0% -10%, color-mix(in srgb, var(--mydev-formation-accent) 10%, transparent), transparent 62%),
    radial-gradient(960px 380px at 100% 0%, color-mix(in srgb, var(--mydev-formation-heading) 8%, transparent), transparent 70%);
}

.mydev-formation-single-wrap::before {
  display: none;
}

.mydev-formation-container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.mydev-formation-catalogue {
  padding: clamp(24px, 3vw, 42px) 0 clamp(42px, 5vw, 70px);
}

.mydev-formation-single-wrap {
  padding: 0 0 clamp(42px, 5vw, 70px);
}

.mydev-formation-single-wrap > .mydev-formation-container {
  margin-top: clamp(20px, 2.4vw, 30px);
}

.mydev-formation-related-wrap {
  padding: 0 0 clamp(42px, 5vw, 70px);
}

.mydev-formation-catalogue {
  position: relative;
}

.mydev-formation-showcase {
  padding-top: 0;
  padding-bottom: 0;
}

.mydev-formation-catalogue-header,
.mydev-formation-related-header {
  margin-bottom: 18px;
}

.mydev-formation-catalogue-title,
.mydev-formation-single-title,
.mydev-formation-related-header h2,
.mydev-formation-content-section h2,
.mydev-formation-side-card h3 {
  margin: 0;
  color: var(--mydev-formation-heading);
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: var(--mydev-formation-heading-font-weight);
  letter-spacing: -0.01em;
}

.mydev-formation-catalogue-title,
.mydev-formation-single-title {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.15;
}

.mydev-formation-catalogue-intro,
.mydev-formation-single-content,
.mydev-formation-content-section-body {
  line-height: 1.72;
}

.mydev-formation-catalogue-intro {
  margin-top: 10px;
  color: var(--mydev-formation-text);
  max-width: 80ch;
}

.mydev-formation-catalogue-results {
  position: relative;
}

.mydev-formation-catalogue.is-loading .mydev-formation-catalogue-results {
  pointer-events: none;
}

.mydev-formation-catalogue.is-loading .mydev-formation-card-grid:not(.mydev-formation-card-grid-skeleton),
.mydev-formation-catalogue.is-loading .mydev-formation-pagination,
.mydev-formation-catalogue.is-loading .mydev-formation-empty-state {
  opacity: 0.28;
  filter: saturate(0.82);
}

.mydev-formation-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--mydev-formation-border);
  background: color-mix(in srgb, var(--mydev-formation-surface) 88%, white 12%);
  color: var(--mydev-formation-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.mydev-formation-filters {
  margin: 16px 0 22px;
  padding: clamp(14px, 2.4vw, 24px);
  background: #ffffff;
  border: 1px solid var(--mydev-formation-border);
  border-radius: calc(var(--mydev-formation-card-radius, 18px) + 4px);
  box-shadow: var(--mydev-formation-shadow-soft);
}

.mydev-formation-active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.mydev-formation-filter-chips {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mydev-formation-filter-chips > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mydev-formation-filter-chips > li::marker {
  content: '';
}

.mydev-formation-filter-chips > li::before {
  content: none !important;
  display: none !important;
}

.mydev-formation-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--mydev-formation-accent) 30%, transparent);
  background: color-mix(in srgb, var(--mydev-formation-accent) 10%, #ffffff 90%);
  color: color-mix(in srgb, var(--mydev-formation-heading) 84%, black 8%);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
}

.mydev-formation-filter-chip:hover,
.mydev-formation-filter-chip:focus-visible {
  background: color-mix(in srgb, var(--mydev-formation-accent) 14%, #ffffff 86%);
}

.mydev-formation-filter-chip:focus-visible,
.mydev-formation-clear-filters:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--mydev-formation-ring);
}

.mydev-formation-filter-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mydev-formation-accent) 18%, #ffffff 82%);
  font-size: 0.9rem;
  font-weight: 800;
}

.mydev-formation-clear-filters {
  margin-left: auto;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--mydev-formation-accent) 88%, black 12%);
}

.mydev-formation-clear-filters:hover,
.mydev-formation-clear-filters:focus-visible {
  text-decoration: underline;
}

.mydev-formation-filters-shell {
  margin: 0;
}

.mydev-formation-filters-shell-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--mydev-formation-heading);
  padding: 2px 0;
}

.mydev-formation-filters-shell-summary-main {
  margin-right: auto;
}

.mydev-formation-filters-shell-summary-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.mydev-formation-filters-shell-summary::-webkit-details-marker {
  display: none;
}

.mydev-formation-filters-shell-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mydev-formation-filters-shell[open] .mydev-formation-filters-shell-summary::after {
  transform: rotate(225deg);
}

.mydev-formation-filters-shell-body {
  margin-top: 12px;
}

.mydev-formation-filters-search-row,
.mydev-formation-filters-row,
.mydev-formation-card-grid,
.mydev-formation-single-grid,
.mydev-formation-card-actions,
.mydev-formation-single-sections {
  display: grid;
  gap: var(--mydev-formation-gap);
}

.mydev-formation-filters-search-row,
.mydev-formation-filters-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.mydev-formation-filters-search-row {
  margin-bottom: 14px;
}

.mydev-formation-filters-row-advanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mydev-formation-filters-advanced {
  margin-top: 8px;
  border-top: 1px dashed var(--mydev-formation-border);
  padding-top: 10px;
}

.mydev-formation-filters-advanced-title {
  color: var(--mydev-formation-heading);
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 8px;
}

.mydev-formation-filters-advanced-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: var(--mydev-formation-heading);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 8px 2px;
}

.mydev-formation-filters-advanced-summary::-webkit-details-marker {
  display: none;
}

.mydev-formation-filters-advanced-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mydev-formation-filters-advanced[open] .mydev-formation-filters-advanced-summary::after {
  transform: rotate(225deg);
}

.mydev-formation-filters-active-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 26px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--mydev-formation-accent) 82%, black 8%);
  background: color-mix(in srgb, var(--mydev-formation-accent) 14%, white 86%);
}

.mydev-formation-filters-advanced .mydev-formation-filters-row {
  margin-top: 8px;
}

.mydev-formation-filter-field label,
.mydev-formation-filter-field select,
.mydev-formation-filter-field input {
  display: block;
  width: 100%;
}

.mydev-formation-filter-field label {
  margin-bottom: 6px;
  font-size: 0.86rem;
  color: var(--mydev-formation-heading);
  font-weight: 700;
}

.mydev-formation-filter-field select,
.mydev-formation-filter-field input,
.mydev-formation-popup-field input,
.mydev-formation-popup-field textarea {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--mydev-formation-border-strong) 72%, transparent);
  background: color-mix(in srgb, var(--mydev-formation-surface) 89%, white 11%);
  padding: 0 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.mydev-formation-filter-field select:focus,
.mydev-formation-filter-field input:focus,
.mydev-formation-popup-field input:focus,
.mydev-formation-popup-field textarea:focus {
  outline: 0;
  border-color: color-mix(in srgb, var(--mydev-formation-accent) 56%, white 12%);
  box-shadow: 0 0 0 3px var(--mydev-formation-ring);
  background: var(--mydev-formation-surface);
}

.mydev-formation-popup-field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 10px 12px;
}

.mydev-formation-filter-field-search {
  grid-column: span 2;
}

.mydev-formation-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.mydev-formation-card-grid {
  grid-template-columns: repeat(var(--mydev-formation-card-columns, 3), minmax(0, 1fr));
  margin-top: 22px;
}

.mydev-formation-showcase .mydev-formation-showcase-grid {
  grid-template-columns: repeat(var(--mydev-formation-showcase-columns-desktop, 3), minmax(0, 1fr));
  gap: var(--mydev-formation-showcase-gap, 24px);
}

.mydev-formation-card-grid-skeleton {
  position: absolute;
  inset: 0;
  margin-top: 0;
  padding-top: 22px;
  z-index: 2;
  pointer-events: none;
  align-content: start;
}

.mydev-formation-card-grid-related {
  margin-top: 0;
}

.mydev-formation-card,
.mydev-formation-side-card,
.mydev-formation-empty-state,
.mydev-formation-content-section,
.mydev-formation-single-content,
.mydev-formation-single-hero {
  background: var(--mydev-formation-surface, #ffffff);
  border: 1px solid var(--mydev-formation-border, #d8dee8);
  border-radius: var(--mydev-formation-card-radius, 18px);
  box-shadow: var(--mydev-formation-card-shadow, var(--mydev-formation-shadow-soft));
}

.mydev-formation-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border-color: color-mix(in srgb, var(--mydev-formation-border, #d8dee8) 75%, #bfd2f7 25%);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mydev-formation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mydev-formation-shadow-medium);
  border-color: color-mix(in srgb, var(--mydev-formation-accent) 22%, var(--mydev-formation-border));
}

.mydev-formation-card-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: color-mix(in srgb, var(--mydev-formation-accent, #0f766e) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--mydev-formation-border, #d8dee8) 72%, transparent);
}

.mydev-formation-showcase .mydev-formation-card-thumb {
  aspect-ratio: 100 / var(--mydev-formation-showcase-image-ratio, 62);
}

.mydev-formation-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mydev-formation-card:hover .mydev-formation-card-thumb img {
  transform: scale(1.035);
}

.mydev-formation-card-body,
.mydev-formation-side-card,
.mydev-formation-empty-state,
.mydev-formation-content-section,
.mydev-formation-single-content,
.mydev-formation-single-hero {
  padding: var(--mydev-formation-card-padding, 20px);
}

.mydev-formation-card-body {
  background: #ffffff;
  display: grid;
  gap: 12px;
  flex: 1;
}

.mydev-formation-showcase .mydev-formation-card.is-content-centered,
.mydev-formation-showcase.has-centered-cards .mydev-formation-card {
  text-align: center;
}

.mydev-formation-showcase .mydev-formation-card.is-content-centered .mydev-formation-card-meta-item,
.mydev-formation-showcase.has-centered-cards .mydev-formation-card-meta-item {
  justify-content: center;
}

.mydev-formation-showcase .mydev-formation-showcase-carousel {
  display: grid;
  gap: 16px;
}

.mydev-formation-showcase .mydev-formation-showcase-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.mydev-formation-showcase .mydev-formation-showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--mydev-formation-catalogue-border);
  background: #ffffff;
  color: var(--mydev-formation-catalogue-title);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mydev-formation-showcase .mydev-formation-showcase-track-wrap {
  min-width: 0;
  overflow: hidden;
}

.mydev-formation-showcase .mydev-formation-showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-auto-columns: calc((100% - ((var(--mydev-formation-showcase-slides-desktop, 3) - 1) * var(--mydev-formation-showcase-gap, 24px))) / var(--mydev-formation-showcase-slides-desktop, 3));
  gap: var(--mydev-formation-showcase-gap, 24px);
  margin-top: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  align-items: stretch;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.mydev-formation-showcase .mydev-formation-showcase-track::-webkit-scrollbar {
  display: none;
}

.mydev-formation-showcase .mydev-formation-showcase-track .mydev-formation-card {
  scroll-snap-align: start;
  align-self: stretch;
}

.mydev-formation-showcase .mydev-formation-showcase-track.is-static {
  grid-auto-columns: minmax(0, 1fr);
  overflow-x: hidden;
  scroll-snap-type: none;
  padding-bottom: 0;
}

.mydev-formation-showcase .mydev-formation-showcase-track.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
}

.mydev-formation-showcase .mydev-formation-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.mydev-formation-showcase .mydev-formation-showcase-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: #d1d8e5;
  cursor: pointer;
  padding: 0;
}

.mydev-formation-showcase .mydev-formation-showcase-dot.is-active {
  background: var(--mydev-formation-catalogue-button);
}

.mydev-formation-showcase .mydev-formation-showcase-list {
  display: grid;
  gap: var(--mydev-formation-showcase-gap, 24px);
  margin-top: 22px;
}

.mydev-formation-showcase .mydev-formation-showcase-list-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--mydev-formation-catalogue-border);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
}

.mydev-formation-showcase .mydev-formation-showcase-list-item.no-thumb {
  grid-template-columns: minmax(0, 1fr) auto;
}

.mydev-formation-showcase .mydev-formation-showcase-list-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: color-mix(in srgb, var(--e-global-color-secondary, #f07d43) 18%, #fff 82%);
}

.mydev-formation-showcase .mydev-formation-showcase-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mydev-formation-showcase .mydev-formation-showcase-list-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.mydev-formation-showcase .mydev-formation-showcase-list-title {
  margin: 0;
  font-size: clamp(1.05rem, 1vw, 1.3rem);
  line-height: 1.3;
}

.mydev-formation-showcase .mydev-formation-showcase-list-title a {
  color: var(--mydev-formation-catalogue-title);
  text-decoration: none;
}

.mydev-formation-showcase .mydev-formation-showcase-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  color: var(--mydev-formation-catalogue-text);
  font-size: 0.95rem;
}

.mydev-formation-showcase .mydev-formation-showcase-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mydev-formation-showcase .mydev-formation-showcase-list-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c8d1de;
}

.mydev-formation-showcase .mydev-formation-showcase-list-text {
  margin: 0;
  color: var(--mydev-formation-catalogue-text);
}

.mydev-formation-showcase .mydev-formation-showcase-list-actions {
  display: flex;
  justify-content: flex-end;
}

.mydev-formation-card-title {
  margin: 0;
  color: var(--mydev-formation-heading);
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: var(--mydev-formation-heading-font-weight);
  font-size: clamp(1.05rem, 1.1vw, 1.25rem);
  line-height: 1.3;
}

.mydev-formation-card-title a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.2s ease;
}

.mydev-formation-card-title a:hover,
.mydev-formation-card-title a:focus-visible {
  background-size: 100% 1px;
}

.mydev-formation-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mydev-formation-accent) 13%, white 87%);
  color: color-mix(in srgb, var(--mydev-formation-accent) 82%, black 8%);
  font-size: 0.8rem;
  font-weight: 700;
}

.mydev-formation-card-text,
.mydev-formation-single-subtitle,
.mydev-formation-single-intro,
.mydev-formation-meta-list dd,
.mydev-formation-cta-lead,
.mydev-formation-empty-state p,
.mydev-formation-popup-intro {
  color: var(--mydev-formation-text);
}

.mydev-formation-side-note {
  color: var(--mydev-formation-muted);
}

.mydev-formation-card .mydev-formation-card-text {
  margin: 0;
  min-height: 0;
}

.mydev-formation-card-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mydev-formation-card-meta li {
  border-bottom: 1px solid color-mix(in srgb, var(--mydev-formation-border) 66%, transparent);
  padding-bottom: 8px;
  font-size: 0.9rem;
}

.mydev-formation-card-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mydev-formation-card-meta-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  --pf-icon-color: var(--mydev-formation-card-meta-icon-color, var(--mydev-formation-accent));
  --pf-icon-stroke-width: 1.8;
  margin-top: 1px;
}

.mydev-formation-card-meta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mydev-formation-card .mydev-formation-card-meta-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
}

.mydev-formation-card .mydev-formation-card-meta-icon .pixfort-icon,
.mydev-formation-card .mydev-formation-card-meta-icon svg {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
}

.mydev-formation-card-meta-text {
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mydev-formation-card-meta li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mydev-formation-card-actions {
  grid-template-columns: 1fr;
  margin-top: auto;
  align-items: end;
}

.mydev-formation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--mydev-formation-button-radius);
  border: var(--mydev-formation-button-border-width) solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mydev-formation-button:hover {
  transform: translateY(-1px);
}

.mydev-formation-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--mydev-formation-ring);
}

.mydev-formation-button:disabled {
  opacity: 0.56;
  pointer-events: none;
}

.mydev-formation .mydev-formation-button.mydev-formation-button-primary {
  background: var(--mydev-formation-button-primary-bg);
  color: var(--mydev-formation-button-primary-text);
  border-color: var(--mydev-formation-button-primary-border);
}

.mydev-formation .mydev-formation-button.mydev-formation-button-primary:hover {
  background: var(--mydev-formation-button-primary-hover-bg);
  color: var(--mydev-formation-button-primary-hover-text);
  border-color: var(--mydev-formation-button-primary-hover-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--mydev-formation-accent) 28%, transparent);
}

.mydev-formation .mydev-formation-button.mydev-formation-button-secondary {
  background: var(--mydev-formation-button-secondary-bg);
  color: var(--mydev-formation-button-secondary-text);
  border-color: var(--mydev-formation-button-secondary-border);
}

.mydev-formation .mydev-formation-button.mydev-formation-button-secondary:hover {
  background: var(--mydev-formation-button-secondary-hover-bg);
  color: var(--mydev-formation-button-secondary-hover-text);
  border-color: var(--mydev-formation-button-secondary-hover-border);
}

.mydev-formation-button-block {
  width: 100%;
}

.mydev-formation-single-hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  background: var(--mydev-formation-catalogue-button, var(--mydev-formation-accent));
  padding: clamp(112px, 14vw, 170px) 0 clamp(52px, 8vw, 86px);
}

.mydev-formation-single-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mydev-formation-single-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mydev-formation-single-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--mydev-formation-catalogue-button, var(--mydev-formation-accent)) 88%, #0f172a 12%),
    color-mix(in srgb, #0f172a 42%, transparent)
  );
}

.mydev-formation-single-hero.no-hero-image .mydev-formation-single-hero-overlay {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--mydev-formation-catalogue-button, var(--mydev-formation-accent)) 92%, #0f172a 8%),
    color-mix(in srgb, var(--mydev-formation-catalogue-button, var(--mydev-formation-accent)) 78%, #0f172a 22%)
  );
}

.mydev-formation-single-hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mydev-formation-single-hero .mydev-formation-single-title {
  color: #ffffff;
  text-wrap: balance;
}

.mydev-formation-single-hero .mydev-formation-single-subtitle {
  color: rgba(255, 255, 255, 0.92);
  margin-inline: auto;
}

.mydev-formation-single-subtitle {
  margin: 10px 0 0;
  max-width: 78ch;
  font-size: 1.02rem;
}

.mydev-formation-hero-highlights {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mydev-formation-hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(1px);
  font-size: 0.82rem;
}

.mydev-formation-hero-highlight-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  --pf-icon-color: #ffffff;
  --pf-icon-stroke-width: 1.8;
}

.mydev-formation-hero-highlight-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mydev-formation-hero-highlight-label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.mydev-formation-hero-highlight-value {
  color: #ffffff;
  font-weight: 700;
}

.mydev-formation-single-grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, var(--mydev-formation-single-sidebar-width, 32%));
  align-items: start;
  margin-top: 0;
}

.mydev-formation-single-main {
  min-width: 0;
}

.mydev-formation-single-sidebar {
  align-self: start;
  min-width: 0;
}

.mydev-formation-single-intro {
  margin: 0 0 var(--mydev-formation-single-spacing, 24px);
  font-size: 1.03rem;
  border-left: 3px solid color-mix(in srgb, var(--mydev-formation-accent) 42%, transparent);
  padding-left: 14px;
}

.mydev-formation-single-content + .mydev-formation-single-sections,
.mydev-formation-single-sections + .mydev-formation-related-formations {
  margin-top: var(--mydev-formation-single-spacing, 24px);
}

.mydev-formation-single-inline {
  margin-top: var(--mydev-formation-single-spacing, 24px);
}

.mydev-formation-single-content h2,
.mydev-formation-single-content h3,
.mydev-formation-single-content h4 {
  color: var(--mydev-formation-heading);
  font-family: var(--mydev-formation-heading-font-family);
  margin-top: 1.35em;
}

.mydev-formation-single-content :where(ul, ol) {
  padding-left: 20px;
}

.mydev-formation-content-section + .mydev-formation-content-section {
  margin-top: 8px;
}

.mydev-formation-sticky-stack {
  position: sticky;
  top: var(--mydev-formation-sticky-offset, 24px);
  display: grid;
  gap: 16px;
}

.mydev-formation-single-sections {
  gap: 18px;
}

.mydev-formation-single-wrap .mydev-formation-content-section {
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid color-mix(in srgb, var(--mydev-formation-border) 74%, #ffffff 26%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.mydev-formation-single-wrap .mydev-formation-content-section h2 {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid color-mix(in srgb, var(--mydev-formation-border) 70%, transparent);
}

.mydev-formation-single-wrap .mydev-formation-content-section-body > *:first-child {
  margin-top: 0;
}

.mydev-formation-single-wrap .mydev-formation-content-section-body > *:last-child {
  margin-bottom: 0;
}

.mydev-formation-section-subtitle {
  margin: 18px 0 10px;
  color: var(--mydev-formation-heading);
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: var(--mydev-formation-heading-font-weight);
  font-size: clamp(1.06rem, 1.2vw, 1.22rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.mydev-formation-styled-list {
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mydev-formation-styled-list li {
  position: relative;
  padding-left: 26px;
  margin: 0;
}

.mydev-formation-styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 28%, white 72%);
  border: 1px solid color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 62%, transparent);
  box-shadow: inset 0 0 0 3px #fff;
}

.mydev-formation-side-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.mydev-formation-side-card p:last-child {
  margin-bottom: 0;
}

.mydev-formation-single-wrap .mydev-formation-side-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid color-mix(in srgb, var(--mydev-formation-catalogue-border) 84%, #ffffff 16%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mydev-formation-single-wrap .mydev-formation-side-card-summary {
  border-top: 4px solid color-mix(in srgb, var(--mydev-formation-catalogue-button) 74%, white 26%);
}

.mydev-formation-meta-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.mydev-formation-meta-list-icons {
  padding: 0;
  list-style: none;
}

.mydev-formation-meta-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.mydev-formation-meta-item-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mydev-formation-meta-item-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--e-global-color-secondary, #f28c4b);
}

.mydev-formation-meta-item-value {
  font-size: 0.94rem;
  color: var(--mydev-formation-heading);
}

.mydev-formation-meta-list dt {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--mydev-formation-muted);
}

.mydev-formation-meta-list dd {
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.mydev-formation-doc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mydev-formation-doc-list a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.mydev-formation-doc-button {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--mydev-formation-catalogue-button);
  background: var(--mydev-formation-catalogue-button);
  color: #ffffff;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mydev-formation-doc-button::before {
  content: "↓";
  font-size: 0.86rem;
  margin-right: 7px;
  opacity: 0.86;
}

.mydev-formation-doc-button:hover,
.mydev-formation-doc-button:focus-visible {
  background: var(--mydev-formation-catalogue-button-hover);
  border-color: var(--mydev-formation-catalogue-button-hover);
  box-shadow: 0 8px 18px rgba(63, 99, 173, 0.24);
  transform: translateY(-1px);
  text-decoration: none;
}

.mydev-formation-side-card-cta {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--mydev-formation-catalogue-button) 10%, #ffffff 90%),
    color-mix(in srgb, #ffffff 94%, var(--mydev-formation-catalogue-button) 6%)
  );
}

.mydev-formation-cta-lead {
  margin: 0 0 12px;
  color: var(--mydev-formation-muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.mydev-formation-inline-cta-toggle {
  width: 100%;
}

.mydev-formation-inline-cta-panel {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--mydev-formation-catalogue-button) 24%, transparent);
  background: color-mix(in srgb, var(--mydev-formation-catalogue-button) 5%, #ffffff 95%);
}

.mydev-formation-inline-cta-title {
  margin: 0 0 6px;
  color: var(--mydev-formation-heading);
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: var(--mydev-formation-heading-font-weight);
  font-size: 1rem;
}

.mydev-formation-empty-state {
  margin-top: 20px;
  text-align: center;
}

.mydev-formation-empty-state h3 {
  margin: 0 0 10px;
}

.mydev-formation-empty-state p {
  margin: 0;
  color: var(--mydev-formation-muted);
}

.mydev-formation-empty-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mydev-formation-empty-actions .mydev-formation-button {
  min-width: min(100%, 260px);
}

.mydev-formation-card-skeleton {
  overflow: hidden;
}

.mydev-formation-card-skeleton .mydev-formation-card-thumb {
  background: color-mix(in srgb, var(--mydev-formation-border) 50%, transparent);
}

.mydev-formation-skeleton-block,
.mydev-formation-skeleton-line,
.mydev-formation-skeleton-button {
  border-radius: 10px;
  background: linear-gradient(
    100deg,
    color-mix(in srgb, var(--mydev-formation-border) 40%, #ffffff 60%) 18%,
    color-mix(in srgb, var(--mydev-formation-border) 24%, #ffffff 76%) 38%,
    color-mix(in srgb, var(--mydev-formation-border) 40%, #ffffff 60%) 60%
  );
  background-size: 220% 100%;
  animation: mydev-formation-skeleton-shimmer 1.1s linear infinite;
}

.mydev-formation-skeleton-line {
  display: block;
  height: 12px;
}

.mydev-formation-skeleton-line-title {
  width: 68%;
  height: 15px;
}

.mydev-formation-skeleton-line-short {
  width: 52%;
}

.mydev-formation-skeleton-button {
  display: block;
  width: 100%;
  height: 42px;
  border-radius: 999px;
  margin-top: auto;
}

.mydev-formation-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.mydev-formation-pagination ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mydev-formation-pagination ul li::marker {
  content: '';
}

.mydev-formation-pagination ul li::before {
  content: none !important;
  display: none !important;
}

.mydev-formation-pagination a,
.mydev-formation-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 6px 12px;
  border: 1px solid var(--mydev-formation-border);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.mydev-formation-pagination .current {
  background: var(--mydev-formation-accent);
  color: #ffffff;
  border-color: var(--mydev-formation-accent);
}

.mydev-formation-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mydev-formation-popup[hidden] {
  display: none !important;
}

.mydev-formation-popup-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000 58%, transparent);
  backdrop-filter: blur(2px);
}

.mydev-formation-popup-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 740px);
  overflow: auto;
  background: var(--mydev-formation-surface);
  border-radius: calc(var(--mydev-formation-card-radius, 18px) + 2px);
  border: 1px solid var(--mydev-formation-border);
  padding: clamp(18px, 2.2vw, 28px);
  z-index: 1;
  box-shadow: var(--mydev-formation-shadow-medium);
}

.mydev-formation-popup-dialog h3 {
  margin: 0 38px 8px 0;
}

.mydev-formation-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--mydev-formation-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--mydev-formation-surface) 85%, white 15%);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--mydev-formation-heading);
}

.mydev-formation-popup-close:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--mydev-formation-ring);
}

.mydev-formation-popup-intro {
  margin: 0 0 14px;
  color: var(--mydev-formation-muted);
}

.mydev-formation-popup-form {
  display: grid;
  gap: 12px;
}

.mydev-formation-popup-field {
  display: grid;
  gap: 6px;
}

.mydev-formation-popup-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--mydev-formation-heading);
}

.mydev-formation-popup-actions {
  margin-top: 4px;
}

.mydev-formation-popup-feedback {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.mydev-formation-popup-feedback.is-success {
  color: #157638;
}

.mydev-formation-popup-feedback.is-error {
  color: #b42318;
}

body.mydev-formation-popup-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .mydev-formation-card-grid {
    grid-template-columns: repeat(min(2, var(--mydev-formation-card-columns, 3)), minmax(0, 1fr));
  }

  .mydev-formation-showcase .mydev-formation-showcase-grid {
    grid-template-columns: repeat(var(--mydev-formation-showcase-columns-tablet, 2), minmax(0, 1fr));
  }

  .mydev-formation-showcase .mydev-formation-showcase-track {
    grid-auto-columns: calc((100% - ((var(--mydev-formation-showcase-slides-tablet, 2) - 1) * var(--mydev-formation-showcase-gap, 24px))) / var(--mydev-formation-showcase-slides-tablet, 2));
  }
}

@media (max-width: 960px) {
  .mydev-formation-card-grid,
  .mydev-formation-single-grid,
  .mydev-formation-filters-search-row,
  .mydev-formation-filters-row,
  .mydev-formation-filters-row-advanced {
    grid-template-columns: 1fr;
  }

  .mydev-formation-showcase .mydev-formation-showcase-list-item,
  .mydev-formation-showcase .mydev-formation-showcase-list-item.no-thumb {
    grid-template-columns: 1fr;
  }

  .mydev-formation-filter-field-search {
    grid-column: auto;
  }

  .mydev-formation-sticky-stack {
    position: static;
  }
}

@media (max-width: 760px) {
  .mydev-formation-showcase .mydev-formation-showcase-grid {
    grid-template-columns: repeat(var(--mydev-formation-showcase-columns-mobile, 1), minmax(0, 1fr));
  }

  .mydev-formation-showcase .mydev-formation-showcase-track {
    grid-auto-columns: calc((100% - ((var(--mydev-formation-showcase-slides-mobile, 1) - 1) * var(--mydev-formation-showcase-gap, 24px))) / var(--mydev-formation-showcase-slides-mobile, 1));
  }

  .mydev-formation-card-actions {
    grid-template-columns: 1fr;
  }

  .mydev-formation-container {
    width: min(1240px, calc(100% - 24px));
  }

  .mydev-formation-filters,
  .mydev-formation-single-content,
  .mydev-formation-side-card,
  .mydev-formation-content-section,
  .mydev-formation-single-hero,
  .mydev-formation-card-body {
    padding: 16px;
  }

  .mydev-formation-showcase .mydev-formation-showcase-list-item {
    padding: 16px;
  }

  .mydev-formation-showcase .mydev-formation-showcase-list-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .mydev-formation-active-filters {
    align-items: stretch;
  }

  .mydev-formation-clear-filters {
    margin-left: 0;
    width: 100%;
  }

  .mydev-formation-filter-actions {
    flex-direction: column;
  }

  .mydev-formation-filter-actions .mydev-formation-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mydev-formation-catalogue-header,
  .mydev-formation-filters,
  .mydev-formation-card,
  .mydev-formation-single-hero,
  .mydev-formation-single-content,
  .mydev-formation-side-card,
  .mydev-formation-content-section {
    animation: mydev-formation-fade-in 0.46s ease both;
  }

  .mydev-formation-card:nth-child(2n) {
    animation-delay: 0.04s;
  }

  .mydev-formation-card:nth-child(3n) {
    animation-delay: 0.08s;
  }
}

@keyframes mydev-formation-fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mydev-formation-skeleton-shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mydev-formation-skeleton-block,
  .mydev-formation-skeleton-line,
  .mydev-formation-skeleton-button {
    animation: none;
  }
}

@keyframes mydev-formation-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Simple catalogue style preset */
.mydev-formation.mydev-formation-catalogue {
  --mydev-formation-catalogue-surface: #ffffff;
  --mydev-formation-catalogue-card: #f7f8fa;
  --mydev-formation-catalogue-border: color-mix(in srgb, var(--mydev-formation-text) 16%, #d9dee6);
  --mydev-formation-catalogue-title: var(--e-global-color-primary, #3f63ad);
  --mydev-formation-catalogue-text: var(--mydev-formation-text);
  --mydev-formation-catalogue-button: var(--e-global-color-primary, #3f63ad);
  --mydev-formation-catalogue-button-hover: color-mix(in srgb, var(--e-global-color-primary, #3f63ad) 86%, black 14%);
  --mydev-formation-catalogue-ring: color-mix(in srgb, var(--e-global-color-primary, #3f63ad) 22%, transparent);
  --mydev-formation-card-meta-icon-color: var(--e-global-color-secondary, #f28c4b);
  color: var(--mydev-formation-catalogue-text);
}

.mydev-formation.mydev-formation-single-wrap,
.mydev-formation.mydev-formation-related-wrap {
  --mydev-formation-catalogue-surface: #ffffff;
  --mydev-formation-catalogue-border: color-mix(in srgb, var(--mydev-formation-text) 16%, #d9dee6);
  --mydev-formation-catalogue-title: var(--e-global-color-primary, #3f63ad);
  --mydev-formation-catalogue-text: var(--mydev-formation-text);
  --mydev-formation-catalogue-button: var(--e-global-color-primary, #3f63ad);
  --mydev-formation-catalogue-button-hover: color-mix(in srgb, var(--e-global-color-primary, #3f63ad) 86%, black 14%);
  --mydev-formation-catalogue-ring: color-mix(in srgb, var(--e-global-color-primary, #3f63ad) 22%, transparent);
  --mydev-formation-card-meta-icon-color: var(--e-global-color-secondary, #f28c4b);
  color: var(--mydev-formation-catalogue-text);
}

.mydev-formation.mydev-formation-catalogue {
  background: transparent;
  border-radius: 10px;
  padding-inline: 0;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-catalogue-header,
.mydev-formation.mydev-formation-catalogue .mydev-formation-catalogue-title,
.mydev-formation.mydev-formation-catalogue .mydev-formation-related-header h2 {
  color: var(--mydev-formation-catalogue-title);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-catalogue-intro,
.mydev-formation.mydev-formation-catalogue .mydev-formation-card-text,
.mydev-formation.mydev-formation-catalogue .mydev-formation-card-meta,
.mydev-formation.mydev-formation-catalogue .mydev-formation-result-count {
  color: var(--mydev-formation-catalogue-text);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-result-count {
  background: var(--mydev-formation-catalogue-surface);
  border-color: var(--mydev-formation-catalogue-border);
  font-weight: 700;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filters {
  background: var(--mydev-formation-catalogue-surface);
  border: 1px solid var(--mydev-formation-catalogue-border);
  box-shadow: none;
  border-radius: 12px;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filters-advanced {
  border-top: 1px solid #e7ebf2;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filters-shell-summary {
  color: #374151;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-field label,
.mydev-formation.mydev-formation-catalogue .mydev-formation-filters-advanced-title {
  color: #374151;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-field select,
.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-field input {
  background: #ffffff;
  border-color: var(--mydev-formation-catalogue-border);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-field select:focus,
.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-field input:focus {
  box-shadow: 0 0 0 3px var(--mydev-formation-catalogue-ring);
  border-color: var(--mydev-formation-catalogue-button);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-chip {
  background: #ffffff;
  border-color: #cfd7e4;
  color: #374151;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-chip:hover,
.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-chip:focus-visible {
  background: #f3f6fa;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-filter-chip-remove {
  background: #e9eef6;
  color: #3f63ad;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-clear-filters {
  color: #3f63ad;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card {
  background: transparent;
  border: 1px solid var(--mydev-formation-catalogue-border);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card:hover {
  transform: translateY(-1px);
  border-color: #c7d0dc;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-thumb {
  background: color-mix(in srgb, var(--e-global-color-secondary, #f07d43) 20%, #fff 80%);
  border-bottom-color: var(--mydev-formation-catalogue-border);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-thumb img {
  transform: none;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card:hover .mydev-formation-card-thumb img {
  transform: none;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-body {
  background: transparent;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-grid-skeleton {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.92));
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-title,
.mydev-formation.mydev-formation-catalogue .mydev-formation-card-title a {
  color: var(--mydev-formation-catalogue-title);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-meta li {
  border-bottom-color: #e3e7ee;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-card-actions {
  grid-template-columns: 1fr;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-title,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section h2,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card h3,
.mydev-formation.mydev-formation-related-wrap .mydev-formation-related-header h2 {
  color: var(--mydev-formation-catalogue-title);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-subtitle,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-intro,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-content,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card {
  color: var(--mydev-formation-catalogue-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-single-title {
  color: #ffffff;
  text-align: center;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-single-subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin-inline: auto;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlights {
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlights li {
  background: var(--e-global-color-secondary, #f28c4b);
  border-color: color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 80%, black 20%);
  color: #ffffff;
  min-height: 44px;
  padding: 10px 14px;
  display: inline-grid;
  grid-template-columns: 24px auto auto;
  column-gap: 8px;
  row-gap: 0;
  white-space: nowrap;
  justify-items: start;
  align-items: center;
  line-height: 1.1;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlight-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  --pf-icon-stroke-width: 2.1;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-meta-item .mydev-formation-card-meta-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  margin-top: 0;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-meta-item .mydev-formation-card-meta-icon .pixfort-icon,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-meta-item .mydev-formation-card-meta-icon svg {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .pixfort-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  font-size: 24px !important;
  display: block;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlight-label,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlight-value {
  display: inline-flex;
  align-items: center;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-content,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card {
  background: #ffffff;
  border: 1px solid var(--mydev-formation-catalogue-border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--mydev-formation-catalogue-button) 10%, #ffffff 90%),
    color-mix(in srgb, #ffffff 94%, var(--mydev-formation-catalogue-button) 6%)
  );
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel {
  background: color-mix(in srgb, var(--mydev-formation-catalogue-button) 5%, #ffffff 95%);
  border-color: color-mix(in srgb, var(--mydev-formation-catalogue-button) 24%, transparent);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-intro {
  border-left-color: var(--mydev-formation-catalogue-button);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-doc-list a {
  color: var(--mydev-formation-catalogue-title);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-doc-list a.mydev-formation-doc-button {
  color: #ffffff;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-button.mydev-formation-button-primary,
.mydev-formation.mydev-formation-related-wrap .mydev-formation-button.mydev-formation-button-primary {
  background: var(--mydev-formation-button-primary-bg);
  border-color: var(--mydev-formation-button-primary-border);
  color: var(--mydev-formation-button-primary-text);
  box-shadow: none;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-button.mydev-formation-button-primary:hover,
.mydev-formation.mydev-formation-related-wrap .mydev-formation-button.mydev-formation-button-primary:hover {
  background: var(--mydev-formation-button-primary-hover-bg);
  border-color: var(--mydev-formation-button-primary-hover-border);
  color: var(--mydev-formation-button-primary-hover-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-button.mydev-formation-button-secondary,
.mydev-formation.mydev-formation-related-wrap .mydev-formation-button.mydev-formation-button-secondary {
  background: var(--mydev-formation-button-secondary-bg);
  border-color: var(--mydev-formation-button-secondary-border);
  color: var(--mydev-formation-button-secondary-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-button.mydev-formation-button-secondary:hover,
.mydev-formation.mydev-formation-related-wrap .mydev-formation-button.mydev-formation-button-secondary:hover {
  background: var(--mydev-formation-button-secondary-hover-bg);
  border-color: var(--mydev-formation-button-secondary-hover-border);
  color: var(--mydev-formation-button-secondary-hover-text);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-button.mydev-formation-button-primary {
  background: var(--mydev-formation-button-primary-bg);
  border-color: var(--mydev-formation-button-primary-border);
  color: var(--mydev-formation-button-primary-text);
  box-shadow: none;
  width: 100%;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-button.mydev-formation-button-primary:hover {
  background: var(--mydev-formation-button-primary-hover-bg);
  border-color: var(--mydev-formation-button-primary-hover-border);
  color: var(--mydev-formation-button-primary-hover-text);
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-button.mydev-formation-button-secondary {
  background: var(--mydev-formation-button-secondary-bg);
  border-color: var(--mydev-formation-button-secondary-border);
  color: var(--mydev-formation-button-secondary-text);
  width: 100%;
}

.mydev-formation.mydev-formation-catalogue .mydev-formation-button.mydev-formation-button-secondary:hover {
  background: var(--mydev-formation-button-secondary-hover-bg);
  border-color: var(--mydev-formation-button-secondary-hover-border);
  color: var(--mydev-formation-button-secondary-hover-text);
}

/* V2 polish layer: single page */
.mydev-formation.mydev-formation-single-wrap {
  --mydev-formation-single-heading: color-mix(in srgb, var(--mydev-formation-catalogue-title) 88%, #10213f 12%);
  --mydev-formation-single-text: var(--mydev-formation-catalogue-text);
  --mydev-formation-single-soft: #f6f8fc;
  --mydev-formation-single-border: color-mix(in srgb, var(--mydev-formation-catalogue-border) 82%, #dbe4f3 18%);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero {
  padding: clamp(118px, 15vw, 178px) 0 clamp(56px, 8vw, 92px);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -120px auto;
  width: min(560px, 64vw);
  height: min(560px, 64vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
  z-index: 0;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-single-title {
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: clamp(2rem, 3vw, 3rem);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-single-subtitle {
  max-width: 72ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-single-hero .mydev-formation-hero-highlights li {
  border-radius: 999px;
  background: var(--e-global-color-secondary, #f28c4b);
  border-color: color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 78%, #1f2f4d 22%);
  box-shadow: 0 8px 16px rgba(8, 17, 35, 0.16);
  font-size: 0.8rem;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-sticky-stack {
  gap: 18px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card {
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  border-color: var(--mydev-formation-single-border);
  color: var(--mydev-formation-single-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-button-primary {
  min-height: 46px;
  position: relative;
  border-radius: 999px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-button-primary::after {
  content: "→";
  margin-left: 8px;
  font-weight: 800;
  line-height: 1;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-cta-lead {
  margin-bottom: 14px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-doc-button {
  min-height: 44px;
  border-radius: 999px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section {
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  border-color: var(--mydev-formation-single-border);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section h2 {
  font-size: clamp(1.06rem, 1.15vw, 1.2rem);
  border-bottom-color: color-mix(in srgb, var(--mydev-formation-catalogue-border) 70%, #dce4f2 30%);
  color: var(--mydev-formation-single-heading);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body p {
  margin: 0 0 0.82em;
  padding: 0;
  text-indent: 0;
  color: var(--mydev-formation-single-text);
  line-height: 1.7;
  text-wrap: pretty;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body :where(h1, h2, h3, h4, h5, h6) {
  margin: 1.05em 0 0.5em;
  padding: 0;
  text-indent: 0;
  color: var(--mydev-formation-single-heading);
  line-height: 1.25;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h1,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h2 {
  font-size: clamp(1rem, 1vw, 1.1rem);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h3 {
  font-size: clamp(0.9rem, 0.82vw, 1rem);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h4,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h5,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body h6 {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body :where(ul, ol) {
  margin: 0.5em 0 0.95em;
  padding-left: 1.2rem;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body :where(ul, ol) li {
  margin: 0.28em 0;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body ul:not(.mydev-formation-styled-list) {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 14px;
  display: grid;
  gap: 8px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body ul:not(.mydev-formation-styled-list) > li {
  position: relative;
  padding-left: 28px;
  margin: 0;
  line-height: 1.55;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-body ul:not(.mydev-formation-styled-list) > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.77em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--e-global-color-secondary, #f28c4b);
  border: 1px solid color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 82%, #ffffff 18%);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 80%, #ffffff 20%);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-styled-list {
  gap: 10px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-styled-list li {
  color: var(--mydev-formation-single-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-styled-list li::before {
  background: var(--e-global-color-secondary, #f28c4b);
  border-color: color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 82%, #ffffff 18%);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 80%, #ffffff 20%);
  top: 0.77em;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-summary::-webkit-details-marker {
  display: none;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-summary h2 {
  margin: 0;
  border-bottom: 0;
  padding: 0;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--mydev-formation-single-heading);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease;
  margin-right: 2px;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section[open] .mydev-formation-content-section-summary::after {
  transform: rotate(-135deg);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel {
  color: #ffffff;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta {
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 92%, #d76f30 8%),
      color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 76%, #c15e23 24%)
    );
  border-color: color-mix(in srgb, var(--e-global-color-secondary, #f28c4b) 64%, #a74e1b 36%);
  box-shadow: 0 16px 32px rgba(184, 92, 31, 0.24);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta h3 {
  color: #ffffff;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-cta-lead,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-title,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel label {
  color: #ffffff;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-button-primary {
  background: var(--mydev-formation-button-primary-bg);
  border-color: var(--mydev-formation-button-primary-border);
  color: var(--mydev-formation-button-primary-text);
  box-shadow: 0 10px 20px rgba(16, 42, 93, 0.25);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-button-primary:hover,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card-cta .mydev-formation-button-primary:focus-visible {
  background: var(--mydev-formation-button-primary-hover-bg);
  border-color: var(--mydev-formation-button-primary-hover-border);
  color: var(--mydev-formation-button-primary-hover-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #ffffff;
  color: var(--mydev-formation-single-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-title {
  color: var(--mydev-formation-catalogue-title);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel .mydev-formation-popup-intro,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel label {
  color: var(--mydev-formation-single-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel input,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel textarea,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel select {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--mydev-formation-catalogue-border) 82%, #e4ebf7 18%);
  color: var(--mydev-formation-single-text);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel input::placeholder,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel textarea::placeholder {
  color: color-mix(in srgb, var(--mydev-formation-single-text) 55%, #94a3b8 45%);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel input:focus,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel textarea:focus,
.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel select:focus {
  background: #ffffff;
  border-color: var(--mydev-formation-catalogue-button);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mydev-formation-catalogue-button) 24%, transparent);
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-inline-cta-panel .mydev-formation-button-primary {
  width: 100%;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-section-subtitle {
  color: var(--mydev-formation-single-heading);
  font-size: clamp(0.9rem, 0.82vw, 1rem);
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.32;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-meta-item-label {
  letter-spacing: 0.04em;
  font-size: 0.76rem;
}

.mydev-formation.mydev-formation-single-wrap .mydev-formation-meta-item-value {
  color: var(--mydev-formation-single-heading);
}

@media (prefers-reduced-motion: no-preference) {
  .mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card,
  .mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }

  .mydev-formation.mydev-formation-single-wrap .mydev-formation-side-card:hover,
  .mydev-formation.mydev-formation-single-wrap .mydev-formation-content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mydev-formation.mydev-formation-catalogue .mydev-formation-catalogue-header,
  .mydev-formation.mydev-formation-catalogue .mydev-formation-filters,
  .mydev-formation.mydev-formation-catalogue .mydev-formation-card {
    animation: none;
  }
}

.mydev-formation-archive-header {
  color: var(--mydev-formation-heading);
  margin-block-end: 1.25rem;
}

.mydev-formation-archive-title {
  color: inherit;
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: var(--mydev-formation-heading-font-weight);
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

.mydev-formation-archive-intro {
  color: var(--mydev-formation-text);
  margin-block-start: 0.65rem;
  max-width: 72ch;
}

.mydev-formation-archive-intro > :last-child {
  margin-bottom: 0;
}

.mydev-formation-tax-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  margin-block-end: clamp(30px, 4vw, 52px);
}

.mydev-formation-tax-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--mydev-formation-archive-hero-image, linear-gradient(135deg, color-mix(in srgb, var(--mydev-formation-accent) 92%, #111827 8%), color-mix(in srgb, var(--mydev-formation-heading) 74%, var(--mydev-formation-accent) 26%)));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}

.mydev-formation-tax-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.35));
  z-index: -1;
}

.mydev-formation-tax-hero-inner {
  text-align: center;
  padding-block: clamp(86px, 9vw, 120px) clamp(60px, 7vw, 94px);
}

.mydev-formation-tax-kicker {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.mydev-formation-tax-hero h1 {
  margin: 0;
  color: #ffffff !important;
  font-family: var(--mydev-formation-heading-font-family);
  font-weight: 900;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05;
}

.mydev-formation-tax-description {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.7vw, 18px);
}

.mydev-formation-tax-description > :last-child {
  margin-bottom: 0;
}
