:root {
  --ntc-navy: #0f172a;
  --ntc-blue: #0f3d5e;
  --ntc-teal: #1d7874;
  --ntc-gold: #f59e0b;
  --ntc-cloud: #f4f7fb;
  --ntc-paper: #ffffff;
  --ntc-slate: #475569;
  --ntc-border: #dbe3ef;
  --ntc-shadow: 0 18px 50px rgba(15, 23, 42, 0.11);
  --ntc-radius: 22px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ntc-cloud);
  color: var(--ntc-navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a { text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
img { max-width: 100%; height: auto; }

.ntc-topbar {
  background: var(--ntc-navy);
  color: #e2e8f0;
  font-size: 0.92rem;
}

.ntc-topbar-inner {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.ntc-topbar a {
  color: #fff;
  font-weight: 700;
}

.ntc-site-header {
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--ntc-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.ntc-site-header .wp-block-columns {
  margin: 0;
}

.ntc-site-header .wp-block-site-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0;
}

.ntc-site-header .wp-block-site-title a {
  color: var(--ntc-blue);
  text-decoration: none;
}

.ntc-site-header .wp-block-site-tagline {
  color: var(--ntc-slate);
  margin: 0;
  font-size: 0.85rem;
}

.ntc-brand {
  gap: 0.15rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0;
}

.ntc-site-header .wp-block-navigation a {
  color: var(--ntc-navy);
  font-weight: 700;
  text-decoration: none;
}

.ntc-site-header .wp-block-navigation a:hover {
  color: var(--ntc-teal);
}

.ntc-shortlist-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--ntc-border);
  border-radius: 999px;
  padding: .7rem .9rem;
  color: var(--ntc-navy);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.ntc-shortlist-link [data-ntc-count] {
  display: inline-grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 .35rem;
  background: var(--ntc-gold);
  border-radius: 999px;
  color: #111827;
}

.ntc-main { min-height: 55vh; }

.ntc-section {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.ntc-section h1,
.ntc-section h2,
.ntc-page-hero h1 {
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.ntc-section h1 {
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  max-width: 950px;
  margin: 0 0 1.2rem;
}

.ntc-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 0;
}

.ntc-section-lead,
.ntc-hero-copy {
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 780px;
}

.ntc-section > .ntc-section-lead,
.ntc-catalog-band .ntc-section-lead {
  color: var(--ntc-slate);
  margin-left: auto;
  margin-right: auto;
}

.ntc-eyebrow {
  color: var(--ntc-gold);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 0.83rem;
  margin-bottom: .75rem;
}

.ntc-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(29, 120, 116, .55), transparent 28rem),
    linear-gradient(135deg, #0f172a 0%, #0f3d5e 58%, #1d7874 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ntc-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 45rem;
  height: 45rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.ntc-hero .wp-block-columns {
  position: relative;
  z-index: 1;
}

.ntc-hero-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 32px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--ntc-shadow);
  backdrop-filter: blur(8px);
}

.ntc-stat {
  background: rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  margin-bottom: .85rem;
  border: 1px solid rgba(255,255,255,.16);
}

.ntc-stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.ntc-stat span {
  color: #dbeafe;
}

.ntc-hero-search {
  margin-top: 1rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.1rem;
  color: var(--ntc-navy);
}

.ntc-hero-search label {
  display: block;
  font-weight: 900;
  margin-bottom: .55rem;
}

.ntc-hero-search div {
  display: flex;
  gap: .5rem;
}

.ntc-hero-search input,
.ntc-catalog-search input,
.ntc-contact-form input,
.ntc-contact-form textarea,
.ntc-contact-form select {
  width: 100%;
  border: 1px solid var(--ntc-border);
  border-radius: 999px;
  padding: .85rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--ntc-navy);
}

.ntc-contact-form textarea {
  border-radius: 18px;
  min-height: 130px;
}

.ntc-hero-search button,
.ntc-catalog-search button,
.ntc-contact-form button,
.ntc-primary-button .wp-block-button__link,
.ntc-card-actions .ntc-view-course,
.ntc-card-actions .ntc-request-course {
  background: var(--ntc-gold);
  color: #111827;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.ntc-outline-button .wp-block-button__link {
  border-color: rgba(255,255,255,.65) !important;
  color: #fff !important;
}

.ntc-catalog-band {
  background: #fff;
}

.ntc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.ntc-category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: var(--ntc-radius);
  padding: 1.3rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 28px rgba(15,23,42,.1);
  isolation: isolate;
}

.ntc-category-tile::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 12rem;
  height: 12rem;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  z-index: -1;
}

.ntc-category-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--ntc-shadow);
}

.ntc-category-tile strong {
  font-size: 1.12rem;
  line-height: 1.15;
  margin-bottom: .4rem;
}

.ntc-category-tile span {
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: .92rem;
}

.ntc-course-shop {
  margin-top: 2rem;
}

.ntc-course-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ntc-course-sidebar {
  position: sticky;
  top: 116px;
  background: #fff;
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius);
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.ntc-course-sidebar h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.ntc-course-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ntc-course-menu li {
  border-bottom: 1px solid #edf2f7;
}

.ntc-course-menu li:last-child { border-bottom: 0; }

.ntc-course-menu a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  color: var(--ntc-navy);
  text-decoration: none;
  font-weight: 800;
}

.ntc-course-menu a:hover,
.ntc-course-menu a.is-active {
  color: var(--ntc-teal);
}

.ntc-course-menu small {
  color: var(--ntc-slate);
  font-weight: 700;
}

.ntc-catalog-search {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.2rem;
  background: #fff;
  padding: .75rem;
  border-radius: 999px;
  border: 1px solid var(--ntc-border);
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.ntc-catalog-search input {
  border: 0;
}

.ntc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.ntc-course-card {
  background: #fff;
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ntc-course-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ntc-shadow);
}

.ntc-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.ntc-card-media img,
.ntc-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ntc-card-body {
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.ntc-badge-row {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
}

.ntc-category-badge {
  display: inline-flex;
  border-radius: 999px;
  background: #e6fffb;
  color: #0f766e;
  padding: .35rem .65rem;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ntc-price {
  font-weight: 900;
  color: var(--ntc-blue);
  font-size: 1.12rem;
}

.ntc-course-card h3 {
  font-size: 1.09rem;
  line-height: 1.22;
  margin: 0;
}

.ntc-course-card h3 a {
  color: var(--ntc-navy);
  text-decoration: none;
}

.ntc-course-card h3 a:hover {
  color: var(--ntc-teal);
}

.ntc-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  color: var(--ntc-slate);
  font-size: .88rem;
  font-weight: 700;
}

.ntc-card-meta span {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 999px;
  padding: .32rem .55rem;
}

.ntc-card-excerpt {
  color: var(--ntc-slate);
  font-size: .94rem;
  margin: 0;
  flex: 1;
}

.ntc-card-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}

.ntc-card-actions a,
.ntc-card-actions button {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.ntc-view-course {
  background: var(--ntc-blue) !important;
  color: #fff !important;
}

.ntc-save-course {
  border: 1px solid var(--ntc-border);
  background: #fff;
  color: var(--ntc-navy);
  border-radius: 999px;
  padding: .78rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.ntc-save-course.is-saved {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.ntc-course-empty {
  background: #fff;
  padding: 2rem;
  border-radius: var(--ntc-radius);
  border: 1px solid var(--ntc-border);
}

.ntc-about-band {
  background:
    radial-gradient(circle at 100% 0%, rgba(245,158,11,.18), transparent 25rem),
    #0f172a;
  color: #fff;
}

.ntc-about-band p {
  color: #dbeafe;
}

.ntc-about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.ntc-about-card-grid div,
.ntc-values .wp-block-column,
.ntc-post-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--ntc-radius);
  padding: 1.2rem;
}

.ntc-about-card-grid strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: .4rem;
}

.ntc-about-card-grid span {
  color: #dbeafe;
}

.ntc-page-hero {
  background:
    linear-gradient(135deg, rgba(15,61,94,.95), rgba(29,120,116,.95)),
    var(--ntc-blue);
  color: #fff;
}

.ntc-page-hero .ntc-section-lead {
  color: #dbeafe;
}

.ntc-values {
  background: #fff;
}

.ntc-values .wp-block-column {
  color: var(--ntc-navy);
  background: #f8fafc;
  border: 1px solid var(--ntc-border);
}

.ntc-cta {
  background: linear-gradient(135deg, #0f3d5e, #1d7874);
  color: #fff;
}

.ntc-cta p { color: #dbeafe; }

.ntc-contact-form {
  background: #fff;
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--ntc-shadow);
}

.ntc-contact-form .ntc-field {
  margin-bottom: 1rem;
}

.ntc-contact-form label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 900;
}

.ntc-contact-form button {
  width: 100%;
}

.ntc-form-notice {
  padding: 1rem;
  border-radius: 16px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
  margin-bottom: 1rem;
}

.ntc-form-error {
  background: #fef2f2;
  color: #b91c1c;
}

.ntc-single {
  max-width: 920px;
}

.ntc-single-image img {
  border-radius: var(--ntc-radius);
  box-shadow: var(--ntc-shadow);
}

.ntc-course-details-table table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.ntc-course-details-table th,
.ntc-course-details-table td {
  border: 1px solid var(--ntc-border);
  padding: .85rem 1rem;
  text-align: left;
}

.ntc-course-details-table th {
  width: 34%;
  background: #f8fafc;
}

.ntc-site-footer {
  background: var(--ntc-navy);
  color: #e2e8f0;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.ntc-site-footer h3,
.ntc-site-footer h4 {
  color: #fff;
}

.ntc-site-footer a {
  color: #fff;
}

.ntc-site-footer ul {
  padding-left: 1.2rem;
}

.ntc-footer-line {
  border-color: rgba(255,255,255,.18) !important;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .ntc-grid,
  .ntc-featured-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .ntc-category-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .ntc-course-layout {
    grid-template-columns: 1fr;
  }
  .ntc-course-sidebar {
    position: static;
  }
}

@media (max-width: 780px) {
  .ntc-topbar-inner,
  .ntc-catalog-search,
  .ntc-hero-search div {
    flex-direction: column;
    align-items: stretch;
  }
  .ntc-site-header {
    position: relative;
  }
  .ntc-header-columns {
    gap: 0 !important;
  }
  .ntc-category-grid,
  .ntc-grid,
  .ntc-featured-grid,
  .ntc-about-card-grid {
    grid-template-columns: 1fr;
  }
  .ntc-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .ntc-card-actions a,
  .ntc-card-actions button {
    min-width: 100%;
  }
}

/* Fixed primary navigation: prevents demo/shop pages from stretching the header. */
.ntc-primary-navigation,
.ntc-primary-navigation__container,
.ntc-site-header .wp-block-navigation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.45rem);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.ntc-primary-navigation ul,
.ntc-primary-navigation__container,
.ntc-site-header .wp-block-navigation__container {
  list-style: none;
}

.ntc-primary-navigation a,
.ntc-site-header .wp-block-navigation a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  white-space: nowrap;
}

@media (min-width: 782px) {
  .ntc-site-header .ntc-header-columns {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 781px) {
  .ntc-topbar-inner,
  .ntc-site-header .ntc-header-columns {
    gap: 0.75rem;
  }

  .ntc-site-header .wp-block-column {
    flex-basis: 100% !important;
  }

  .ntc-brand {
    align-items: center;
    text-align: center;
  }

  .ntc-shortlist-link {
    width: auto;
    margin: 0 auto 1rem;
  }
}


/* NexttCareer LMS classic-theme integration */
:root {
  --ntc-logo-blue: #006bff;
  --ntc-deep-blue: #001f68;
}

body.admin-bar .ntc-site-header-wrapper { top: 32px; }
.ntc-container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.ntc-site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.ntc-site-header-wrapper .ntc-topbar {
  background: #0b1326;
}
.ntc-topbar-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.ntc-main-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--ntc-border);
  backdrop-filter: blur(10px);
}
.ntc-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.ntc-brand-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--ntc-navy);
  text-decoration: none;
  min-width: 0;
}
.ntc-header-logo img,
.ntc-header-logo .custom-logo {
  display: block;
  width: auto;
  max-width: 84px;
  max-height: 72px;
  object-fit: contain;
}
.ntc-brand-copy strong {
  display: block;
  color: var(--ntc-deep-blue);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.ntc-brand-copy span {
  display: block;
  color: var(--ntc-slate);
  font-size: .86rem;
  line-height: 1.25;
}
.ntc-primary-menu {
  margin-left: auto;
}
.ntc-primary-menu ul,
.ntc-primary-menu .menu {
  display: flex;
  align-items: center;
  gap: .3rem .9rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.ntc-primary-menu a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  padding: .7rem .8rem;
  border-radius: 999px;
  display: inline-flex;
}
.ntc-primary-menu a:hover,
.ntc-primary-menu .current-menu-item > a,
.ntc-primary-menu .current_page_item > a {
  color: var(--ntc-logo-blue);
  background: #eff6ff;
}
.ntc-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ntc-logo-blue);
  color: #fff !important;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: .9rem 1.1rem;
  box-shadow: 0 10px 22px rgba(0,107,255,.22);
  white-space: nowrap;
}
.ntc-shortlist-link {
  width: auto;
  padding: .78rem 1rem;
}
.ntc-main {
  background: var(--ntc-cloud);
}
.ntc-content-area > .wp-block-group.alignfull,
.ntc-content-area > .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
.ntc-content-area {
  overflow: hidden;
}
.ntc-home-hero-image-wrap {
  background: #fff;
  padding: 0;
  margin: 0;
}
.ntc-home-hero-image {
  margin: 0 auto !important;
  width: 100%;
  max-width: none !important;
}
.ntc-home-hero-image img,
img.ntc-home-hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.ntc-welcome-panel {
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--ntc-border);
}
.ntc-welcome-panel .wp-block-columns {
  align-items: center;
  gap: 2rem;
}
.ntc-quick-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.ntc-quick-stat-row div {
  background: #f8fafc;
  border: 1px solid var(--ntc-border);
  border-radius: 18px;
  padding: 1rem;
}
.ntc-quick-stat-row strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ntc-deep-blue);
  line-height: 1;
}
.ntc-quick-stat-row span {
  color: var(--ntc-slate);
  font-weight: 700;
  font-size: .88rem;
}
.ntc-page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.ntc-page-shell .ntc-content-area {
  background: #fff;
  border-radius: var(--ntc-radius);
  box-shadow: var(--ntc-shadow);
  overflow: hidden;
}
.ntc-page-shell .ntc-content-area > *:not(.alignfull) {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ntc-page-shell .ntc-content-area > p,
.ntc-page-shell .ntc-content-area > h1,
.ntc-page-shell .ntc-content-area > h2,
.ntc-page-shell .ntc-content-area > h3,
.ntc-page-shell .ntc-content-area > ul,
.ntc-page-shell .ntc-content-area > ol,
.ntc-page-shell .ntc-content-area > figure,
.ntc-page-shell .ntc-content-area > .wp-block-buttons {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.ntc-course-single-hero {
  background: linear-gradient(135deg, #0b1326, #0f3d5e 60%, #006bff);
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.ntc-course-single-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 980px;
  margin: 0 0 1rem;
}
.ntc-course-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}
.ntc-course-single-meta span {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .55rem .8rem;
  color: #fff;
  font-weight: 800;
}
.ntc-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}
.ntc-single-card,
.ntc-single-side-card {
  background: #fff;
  border: 1px solid var(--ntc-border);
  border-radius: var(--ntc-radius);
  box-shadow: var(--ntc-shadow);
  overflow: hidden;
}
.ntc-single-card img {
  width: 100%;
  display: block;
}
.ntc-single-card-content {
  padding: clamp(1.3rem, 3vw, 2.2rem);
}
.ntc-single-side-card {
  padding: 1.3rem;
  position: sticky;
  top: 118px;
}
.ntc-single-side-card h2 {
  margin-top: 0;
}
.ntc-side-detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--ntc-border);
  padding: .8rem 0;
}
.ntc-side-detail strong { color: var(--ntc-slate); }
.ntc-side-detail span { font-weight: 900; color: var(--ntc-navy); text-align: right; }
.ntc-side-actions {
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
}
.ntc-footer {
  background: #0b1326;
  color: #cbd5e1;
  padding: 3rem 0 1.4rem;
}
.ntc-footer a { color: #fff; text-decoration: none; }
.ntc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
.ntc-footer-logo img { max-height: 86px; width: auto; background: #fff; border-radius: 16px; }
.ntc-footer h2, .ntc-footer h3 { color: #fff; margin-top: 0; }
.ntc-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.ntc-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.ntc-catalog-search input { min-width: 0; }
.ntc-contact-form { background: #fff; }
.ntc-breadcrumb-link { color: #dbeafe; font-weight: 900; text-decoration: none; }

@media (max-width: 980px) {
  body.admin-bar .ntc-site-header-wrapper { top: 46px; }
  .ntc-header-inner { align-items: flex-start; flex-wrap: wrap; padding: .8rem 0; }
  .ntc-primary-menu { order: 3; width: 100%; margin-left: 0; }
  .ntc-primary-menu ul, .ntc-primary-menu .menu { justify-content: center; }
  .ntc-header-cta, .ntc-shortlist-link { margin-left: auto; }
  .ntc-single-layout, .ntc-footer-grid { grid-template-columns: 1fr; }
  .ntc-single-side-card { position: static; }
}
@media (max-width: 700px) {
  .ntc-brand-copy span { display: none; }
  .ntc-header-logo img, .ntc-header-logo .custom-logo { max-width: 68px; max-height: 62px; }
  .ntc-header-cta { width: 100%; }
  .ntc-shortlist-link { width: 100%; }
  .ntc-topbar-inner { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .ntc-quick-stat-row { grid-template-columns: 1fr; }
  .ntc-primary-menu a { padding: .55rem .62rem; font-size: .92rem; }
}
