:root {
  --ctcce-text: #1f2933;
  --ctcce-text-soft: #4b5563;
  --ctcce-muted: #6b7280;
  --ctcce-line: #d8e0e6;
  --ctcce-line-soft: #edf1f4;
  --ctcce-surface: #ffffff;
  --ctcce-surface-soft: #f7fafb;
  --ctcce-accent: #2f7f86;
  --ctcce-accent-dark: #245f65;
  --ctcce-accent-soft: #e8f3f4;
  --ctcce-shadow: 0 16px 36px rgba(31, 41, 51, 0.07);
}

.ctcce-theme-green {
  --ctcce-accent: #2f7f86;
  --ctcce-accent-dark: #245f65;
  --ctcce-accent-soft: #e8f3f4;
}

.ctcce-theme-purple {
  --ctcce-accent: #40007f;
  --ctcce-accent-dark: #2f005f;
  --ctcce-accent-soft: #f1e8fb;
}

body .pix-page-loading-bg,
body .pix-page-loading-bg::before,
body .pix-page-loading-bg::after,
body .pix-loading-circ-path,
body .pix-loading-circ {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body {
  overflow: auto !important;
}

.pix-cookie-banner.pix-closed {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ctcce-anchor-alias {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 120px;
}

body.ctcce-request-display .pix-header-desktop .slide-in-container,
body.ctcce-themes-display .pix-header-desktop .slide-in-container,
body.ctcce-hub-display .pix-header-desktop .slide-in-container,
body.ctcce-legacy-display .pix-header-desktop .slide-in-container {
  overflow: visible !important;
}

.ctcce-portal-wrap {
  box-sizing: border-box;
  max-width: 1120px;
  margin: 36px auto 90px;
  padding: 0 24px;
  color: var(--ctcce-text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}

.ctcce-portal-wrap *,
.ctcce-portal-wrap *::before,
.ctcce-portal-wrap *::after {
  box-sizing: border-box;
}

.ctcce-page-head,
.ctcce-detail-hero {
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ctcce-line);
}

.ctcce-eyebrow,
.ctcce-card-kicker {
  margin: 0 0 10px;
  color: var(--ctcce-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ctcce-portal-title {
  max-width: 900px;
  margin: 0;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.ctcce-portal-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--ctcce-text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ctcce-catalog-list {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.ctcce-training-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  min-width: 0;
}

.ctcce-training-card:hover {
  border-color: var(--ctcce-accent);
  box-shadow: 0 16px 32px rgba(31, 41, 51, 0.07);
  transform: translateY(-2px);
}

.ctcce-training-image {
  display: block;
  width: 220px;
  height: 100%;
  min-height: 220px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ctcce-surface-soft);
}

.ctcce-training-image img,
.ctcce-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctcce-training-card h3 {
  max-width: 820px;
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ctcce-training-card h3 a {
  color: inherit;
  text-decoration: none;
}

.ctcce-training-card h3 a:hover {
  color: var(--ctcce-accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ctcce-training-card p {
  max-width: 720px;
  margin: 0;
  color: var(--ctcce-text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.ctcce-training-card-main {
  min-width: 0;
}

.ctcce-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 22px;
  padding: 0;
  border: 0;
}

.ctcce-card-facts div,
.ctcce-fact {
  display: grid;
  gap: 4px;
}

.ctcce-card-facts div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 6px;
  background: var(--ctcce-surface-soft);
}

.ctcce-card-facts dt,
.ctcce-fact span {
  color: var(--ctcce-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ctcce-card-facts dd,
.ctcce-fact strong {
  margin: 0;
  color: var(--ctcce-text);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
}

.ctcce-training-card .ctcce-button {
  margin-top: 2px;
}

.ctcce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ctcce-accent);
  border-radius: 6px;
  background: var(--ctcce-accent);
  color: #ffffff !important;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ctcce-button:hover,
.ctcce-button:focus {
  border-color: var(--ctcce-accent-dark);
  background: var(--ctcce-accent-dark);
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.ctcce-button-secondary {
  background: #ffffff;
  color: var(--ctcce-accent-dark) !important;
}

.ctcce-button-secondary:hover,
.ctcce-button-secondary:focus {
  background: var(--ctcce-accent-soft);
  color: var(--ctcce-accent-dark) !important;
}

.ctcce-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ctcce-formations-hub {
  max-width: 1120px;
}

.ctcce-hub-section {
  margin: 0 0 54px;
}

.ctcce-hub-section-head {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ctcce-hub-section-head h3,
.ctcce-hub-contact-band h3 {
  margin: 0;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-hub-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ctcce-hub-formation-card {
  display: grid;
  grid-template-rows: 230px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
}

.ctcce-hub-card-image {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--ctcce-surface-soft);
}

.ctcce-hub-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctcce-hub-formation-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 24px;
}

.ctcce-hub-formation-card h4,
.ctcce-hub-tile h4 {
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.ctcce-hub-formation-card h4 a {
  color: inherit;
  text-decoration: none;
}

.ctcce-hub-formation-card h4 a:hover,
.ctcce-hub-formation-card h4 a:focus {
  color: var(--ctcce-accent-dark);
  text-decoration: none;
}

.ctcce-hub-formation-card p,
.ctcce-hub-tile p,
.ctcce-hub-contact-band p {
  margin: 0;
  color: var(--ctcce-text-soft);
  line-height: 1.68;
}

.ctcce-hub-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 20px 0;
}

.ctcce-hub-card-facts div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 6px;
  background: var(--ctcce-surface-soft);
}

.ctcce-hub-card-facts dt,
.ctcce-hub-card-facts dd {
  margin: 0;
}

.ctcce-hub-card-facts dt {
  color: var(--ctcce-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ctcce-hub-card-facts dd {
  color: var(--ctcce-text);
  font-weight: 800;
  line-height: 1.4;
}

.ctcce-hub-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ctcce-hub-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--ctcce-line);
  border-left: 4px solid var(--ctcce-accent);
  border-radius: 8px;
  background: #ffffff;
}

.ctcce-hub-tile p {
  margin-bottom: 22px;
}

.ctcce-hub-tile .ctcce-button,
.ctcce-hub-tile .ctcce-status-pill {
  margin-top: auto;
}

.ctcce-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 6px;
  background: var(--ctcce-accent-soft);
  color: var(--ctcce-accent-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-hub-contact-band {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-top: 1px solid var(--ctcce-line);
  border-bottom: 1px solid var(--ctcce-line);
}

.ctcce-hub-contact-band > div {
  max-width: 720px;
}

.ctcce-hub-contact-band h3 {
  margin-bottom: 10px;
}

.ctcce-request-head {
  margin-bottom: 28px;
}

.ctcce-request-page {
  padding-top: 54px;
}

.ctcce-request-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 52px;
}

.ctcce-request-intro p {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--ctcce-accent);
  border-radius: 8px;
  background: var(--ctcce-surface-soft);
  color: var(--ctcce-text-soft);
  line-height: 1.72;
}

.ctcce-request-item-grid,
.ctcce-request-theme-grid {
  display: grid;
  gap: 12px;
}

.ctcce-request-item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctcce-request-item-grid span,
.ctcce-request-theme-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ctcce-text);
  font-weight: 800;
  line-height: 1.38;
}

.ctcce-request-theme-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ctcce-request-theme-grid span {
  border-left: 4px solid var(--ctcce-accent);
}

.ctcce-request-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ctcce-text-soft);
  line-height: 1.7;
}

.ctcce-request-trust {
  margin: 0 0 54px;
  padding: 24px 28px;
  border-top: 1px solid var(--ctcce-line);
  border-bottom: 1px solid var(--ctcce-line);
}

.ctcce-request-trust p:last-child {
  margin: 0;
  color: var(--ctcce-text-soft);
  line-height: 1.72;
}

.ctcce-request-form-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  scroll-margin-top: 120px;
  padding: 30px;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
}

.ctcce-request-form-band h3 {
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-request-form-band p {
  margin: 0;
  color: var(--ctcce-text-soft);
  line-height: 1.72;
}

.ctcce-request-form {
  min-width: 0;
}

.ctcce-request-form form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.ctcce-request-form p {
  margin: 0;
}

.ctcce-request-form label {
  display: grid;
  gap: 6px;
  color: var(--ctcce-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.ctcce-request-form input,
.ctcce-request-form select,
.ctcce-request-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ctcce-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ctcce-text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.ctcce-request-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ctcce-request-form input[type="submit"] {
  width: auto;
  min-height: 46px;
  padding: 12px 18px;
  border-color: var(--ctcce-accent);
  background: var(--ctcce-accent);
  color: #ffffff;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.ctcce-request-form input[type="submit"]:hover,
.ctcce-request-form input[type="submit"]:focus {
  border-color: var(--ctcce-accent-dark);
  background: var(--ctcce-accent-dark);
}

.ctcce-themes-page {
  padding-top: 54px;
}

.ctcce-themes-head {
  margin-bottom: 30px;
}

.ctcce-themes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 54px;
}

.ctcce-theme-square {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  aspect-ratio: 1 / 1;
  padding: 24px;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
  overflow: hidden;
}

.ctcce-theme-square::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--ctcce-accent);
}

.ctcce-theme-square-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 2px solid var(--ctcce-accent);
  border-radius: 50%;
  background: var(--ctcce-accent-soft);
}

.ctcce-theme-square h3 {
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ctcce-theme-square p {
  margin: 0;
  color: var(--ctcce-text-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.ctcce-themes-cta {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-top: 1px solid var(--ctcce-line);
  border-bottom: 1px solid var(--ctcce-line);
}

.ctcce-themes-cta > div {
  max-width: 760px;
}

.ctcce-themes-cta h3 {
  margin: 0 0 10px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-themes-cta p:last-child {
  margin: 0;
  color: var(--ctcce-text-soft);
  line-height: 1.68;
}

.ctcce-legacy-page {
  padding-top: 54px;
}

.ctcce-legacy-section {
  margin: 0 0 54px;
}

.ctcce-module-status {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 54px;
  padding: 28px;
  border: 1px solid var(--ctcce-line);
  border-left: 5px solid var(--ctcce-accent);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
}

.ctcce-module-status > div {
  max-width: 760px;
}

.ctcce-module-status h3 {
  margin: 0 0 10px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-module-status p:last-child {
  margin: 0;
  color: var(--ctcce-text-soft);
  line-height: 1.68;
}

.ctcce-legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ctcce-legacy-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--ctcce-line);
  border-left: 5px solid var(--ctcce-accent);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.ctcce-legacy-card h4 {
  margin: 18px 0 18px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ctcce-legacy-card dl {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
}

.ctcce-legacy-card dl div {
  min-width: 0;
}

.ctcce-legacy-card dt,
.ctcce-legacy-card dd {
  margin: 0;
}

.ctcce-legacy-card dt {
  color: var(--ctcce-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ctcce-legacy-card dd {
  color: var(--ctcce-text-soft);
  font-weight: 700;
  line-height: 1.45;
}

.ctcce-legacy-reference-list {
  display: grid;
  gap: 12px;
}

.ctcce-legacy-reference-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--ctcce-line-soft);
  border-left: 5px solid var(--ctcce-accent);
  border-radius: 8px;
  background: #ffffff;
}

.ctcce-legacy-reference-list h4 {
  margin: 0;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.ctcce-legacy-reference-list p {
  margin: 0;
  color: var(--ctcce-text-soft);
  font-weight: 700;
  line-height: 1.45;
}

.ctcce-home-formations-section {
  margin: 0;
  padding: 76px 0 86px;
  background: #ffffff;
}

.ctcce-home-formations {
  margin-top: 0;
  margin-bottom: 0;
}

.ctcce-home-formations .ctcce-page-head {
  margin-bottom: 30px;
}

.ctcce-home-formations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ctcce-home-formation-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--ctcce-line);
  border-left: 5px solid var(--ctcce-accent);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.055);
}

.ctcce-home-formation-panel h3 {
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.25;
}

.ctcce-home-formation-panel p:not(.ctcce-card-kicker) {
  margin: 0 0 22px;
  color: var(--ctcce-text-soft);
  line-height: 1.68;
}

.ctcce-home-formation-panel .ctcce-button {
  margin-top: auto;
}

.ctcce-home-formations-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ctcce-line);
}

.ctcce-home-formations-links a {
  color: var(--ctcce-accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.ctcce-home-formations-links a:hover,
.ctcce-home-formations-links a:focus {
  color: var(--ctcce-accent);
  text-decoration: none;
}

.ctcce-training-detail {
  display: block;
}

.ctcce-training-detail .ctcce-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.ctcce-detail-image {
  height: 230px;
  border-radius: 8px;
}

.ctcce-detail-hero .ctcce-button {
  margin-top: 0;
}

.ctcce-detail-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 42px;
  padding: 0;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: var(--ctcce-surface);
  box-shadow: 0 10px 26px rgba(31, 41, 51, 0.04);
}

.ctcce-detail-body {
  min-width: 0;
}

.ctcce-detail-summary .ctcce-fact {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--ctcce-line-soft);
}

.ctcce-detail-summary .ctcce-fact:last-child {
  border-right: 0;
}

.ctcce-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 42px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--ctcce-line-soft);
}

.ctcce-section:first-child {
  padding-top: 6px;
}

.ctcce-section h3 {
  position: sticky;
  top: 18px;
  margin: 0;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.ctcce-section-note {
  margin: 8px 0 0;
  color: var(--ctcce-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.ctcce-rich-text {
  color: var(--ctcce-text-soft);
  max-width: 760px;
}

.ctcce-rich-text p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.82;
}

.ctcce-rich-text p:last-child {
  margin-bottom: 0;
}

.ctcce-line-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ctcce-text-soft);
}

.ctcce-structured-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctcce-structured-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 8px;
  background: var(--ctcce-surface-soft);
  color: var(--ctcce-text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.ctcce-check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ctcce-accent);
  box-shadow: 0 0 0 5px var(--ctcce-accent-soft);
}

.ctcce-main-objective {
  margin: 0 0 18px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.55;
}

.ctcce-program-flow {
  display: grid;
  gap: 18px;
}

.ctcce-program-group {
  padding: 18px 20px;
  border: 1px solid var(--ctcce-line-soft);
  border-left: 4px solid var(--ctcce-accent);
  border-radius: 8px;
  background: var(--ctcce-surface-soft);
}

.ctcce-program-group h4 {
  margin: 0 0 12px;
  color: var(--ctcce-text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.ctcce-program-group ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ctcce-text-soft);
}

.ctcce-program-group li {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.72;
}

.ctcce-program-group li:last-child {
  margin-bottom: 0;
}

.ctcce-calendar-accordion {
  border: 1px solid var(--ctcce-line-soft);
  border-radius: 8px;
  background: var(--ctcce-surface-soft);
}

.ctcce-calendar-accordion summary {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--ctcce-text);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.45;
}

.ctcce-calendar-accordion summary strong {
  color: var(--ctcce-accent-dark);
  font-size: 0.88rem;
  white-space: nowrap;
}

.ctcce-calendar-accordion[open] summary {
  border-bottom: 1px solid var(--ctcce-line-soft);
}

.ctcce-calendar-list {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding-left: 0;
  list-style: none;
}

.ctcce-calendar-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--ctcce-accent);
  background: var(--ctcce-surface-soft);
}

.ctcce-trainers-list {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-left: 0;
  list-style: none;
}

.ctcce-trainers-list li {
  padding: 10px 0 10px 16px;
  border-left: 2px solid var(--ctcce-line);
}

.ctcce-price-table {
  display: grid;
  border-top: 1px solid var(--ctcce-line);
}

.ctcce-price-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ctcce-line-soft);
}

.ctcce-price-row span {
  color: var(--ctcce-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ctcce-price-row strong {
  color: var(--ctcce-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.ctcce-callout {
  padding: 20px 22px;
  border-left: 4px solid var(--ctcce-accent);
  border-radius: 0 8px 8px 0;
  background: var(--ctcce-accent-soft);
  color: var(--ctcce-text-soft);
}

.ctcce-callout p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.ctcce-callout p:last-child {
  margin-bottom: 0;
}

.ctcce-detail-footer {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--ctcce-line);
}

.ctcce-notice,
.ctcce-empty-state {
  padding: 18px 20px;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: var(--ctcce-surface-soft);
  color: var(--ctcce-text-soft);
}

.ctcce-portal-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ctcce-portal-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--ctcce-line);
  border-radius: 8px;
  background: var(--ctcce-surface);
  color: var(--ctcce-text);
  text-decoration: none;
}

.ctcce-portal-card:hover {
  border-color: var(--ctcce-accent);
  text-decoration: none;
}

@media (max-width: 980px) {
  .ctcce-catalog-list,
  .ctcce-training-card,
  .ctcce-hub-featured-grid,
  .ctcce-training-detail .ctcce-detail-hero {
    grid-template-columns: 1fr;
  }

  .ctcce-hub-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctcce-request-intro,
  .ctcce-request-form-band,
  .ctcce-themes-cta,
  .ctcce-module-status {
    grid-template-columns: 1fr;
  }

  .ctcce-request-item-grid,
  .ctcce-request-theme-grid,
  .ctcce-themes-grid,
  .ctcce-legacy-grid,
  .ctcce-home-formations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctcce-hub-section-head,
  .ctcce-hub-contact-band,
  .ctcce-themes-cta,
  .ctcce-module-status {
    align-items: flex-start;
  }

  .ctcce-training-image {
    width: 100%;
    min-height: 0;
    height: 220px;
  }

  .ctcce-detail-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ctcce-detail-summary .ctcce-fact:nth-child(2n) {
    border-right: 0;
  }

  .ctcce-detail-summary .ctcce-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ctcce-line-soft);
  }

  .ctcce-section {
    display: block;
  }

  .ctcce-section h3 {
    position: static;
    margin-bottom: 16px;
    font-size: 1.24rem;
  }

  .ctcce-training-card .ctcce-button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body.ctcce-request-display .pix-main-intro .pix-sliding-headline,
  body.ctcce-themes-display .pix-main-intro .pix-sliding-headline,
  body.ctcce-hub-display .pix-main-intro .pix-sliding-headline,
  body.ctcce-legacy-display .pix-main-intro .pix-sliding-headline {
    display: block !important;
    font-size: 2.1rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  body.ctcce-request-display .pix-main-intro .pix-intro-container,
  body.ctcce-themes-display .pix-main-intro .pix-intro-container,
  body.ctcce-hub-display .pix-main-intro .pix-intro-container,
  body.ctcce-legacy-display .pix-main-intro .pix-intro-container {
    padding-top: 110px !important;
    padding-bottom: 72px !important;
  }

  .ctcce-portal-wrap {
    width: min(calc(100vw - 44px), 350px);
    max-width: min(calc(100vw - 44px), 350px);
    margin: 30px 0 64px calc(50vw - 50% - 15px);
    padding: 0;
    font-size: 16px;
    overflow-x: hidden;
  }

  .ctcce-page-head,
  .ctcce-catalog-list,
  .ctcce-training-card,
  .ctcce-training-card-main,
  .ctcce-hub-featured-grid,
  .ctcce-hub-formation-card,
  .ctcce-hub-tile-grid,
  .ctcce-hub-tile,
  .ctcce-hub-contact-band,
  .ctcce-request-intro,
  .ctcce-request-form-band,
  .ctcce-request-item-grid,
  .ctcce-request-theme-grid,
  .ctcce-request-trust,
  .ctcce-themes-grid,
  .ctcce-theme-square,
  .ctcce-themes-cta,
  .ctcce-module-status,
  .ctcce-legacy-grid,
  .ctcce-legacy-card,
  .ctcce-legacy-reference-list,
  .ctcce-home-formations-grid,
  .ctcce-home-formation-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ctcce-portal-title {
    max-width: 100%;
    font-size: 1.52rem;
    line-height: 1.12;
    white-space: normal !important;
    word-break: break-word;
  }

  .ctcce-training-card h3,
  .ctcce-training-card p,
  .ctcce-card-facts dd {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .ctcce-training-card {
    gap: 22px;
    padding: 22px;
  }

  .ctcce-hub-section {
    margin-bottom: 42px;
  }

  .ctcce-hub-section-head,
  .ctcce-hub-contact-band {
    display: grid;
    gap: 18px;
  }

  .ctcce-hub-section-head h3,
  .ctcce-hub-contact-band h3 {
    font-size: 1.22rem;
  }

  .ctcce-hub-featured-grid,
  .ctcce-hub-tile-grid,
  .ctcce-request-intro,
  .ctcce-request-item-grid,
  .ctcce-request-theme-grid,
  .ctcce-request-form-band,
  .ctcce-hub-card-facts,
  .ctcce-themes-grid,
  .ctcce-legacy-grid,
  .ctcce-legacy-reference-list article,
  .ctcce-home-formations-grid {
    grid-template-columns: 1fr;
  }

  .ctcce-hub-formation-card {
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .ctcce-hub-formation-card > div,
  .ctcce-hub-tile,
  .ctcce-hub-contact-band,
  .ctcce-request-form-band,
  .ctcce-request-trust,
  .ctcce-theme-square,
  .ctcce-themes-cta,
  .ctcce-module-status,
  .ctcce-legacy-card,
  .ctcce-home-formation-panel {
    padding: 22px;
  }

  .ctcce-request-intro p {
    padding: 18px 20px;
  }

  .ctcce-request-page {
    padding-top: 34px;
    padding-right: 14px;
  }

  .ctcce-request-form-band {
    scroll-margin-top: 96px;
  }

  .ctcce-themes-page {
    padding-top: 34px;
    padding-right: 14px;
  }

  .ctcce-legacy-page {
    padding-top: 34px;
    padding-right: 14px;
  }

  .ctcce-themes-grid {
    gap: 14px;
  }

  .ctcce-legacy-grid,
  .ctcce-legacy-reference-list {
    gap: 14px;
  }

  .ctcce-home-formations-section {
    padding: 58px 0 64px;
  }

  .ctcce-home-formations {
    padding-right: 14px;
  }

  .ctcce-home-formations-grid {
    gap: 14px;
  }

  .ctcce-home-formation-panel {
    min-height: 0;
  }

  .ctcce-home-formations-links {
    display: grid;
    gap: 10px;
  }

  .ctcce-theme-square {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .ctcce-themes-cta,
  .ctcce-module-status {
    display: grid;
    gap: 18px;
  }

  .ctcce-request-form input[type="submit"] {
    width: 100%;
  }

  .ctcce-training-image {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    height: 190px;
  }

  .ctcce-detail-summary {
    grid-template-columns: 1fr;
  }

  .ctcce-detail-summary .ctcce-fact,
  .ctcce-detail-summary .ctcce-fact:nth-child(2n),
  .ctcce-detail-summary .ctcce-fact:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--ctcce-line-soft);
  }

  .ctcce-detail-summary .ctcce-fact:last-child {
    border-bottom: 0;
  }

  .ctcce-card-facts {
    gap: 12px;
  }

  .ctcce-card-facts div {
    width: 100%;
  }

  .ctcce-button {
    width: 100%;
    white-space: normal;
  }

  .ctcce-action-row {
    display: grid;
    gap: 10px;
  }

  .ctcce-calendar-accordion summary {
    display: grid;
    gap: 8px;
  }

  .ctcce-price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
