@font-face {
  font-family: "Raysun Manrope";
  src: url("/wp-content/plugins/raysun-newsroom-live-v10/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500 800;
}

@font-face {
  font-family: "Raysun Inter";
  src: url("/wp-content/plugins/raysun-newsroom-live-v10/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  color-scheme: light;
  --navy-950: #071d37;
  --navy-900: #0a2748;
  --navy-800: #10375f;
  --blue-700: #145da8;
  --blue-600: #1d70c9;
  --orange-600: #ee651d;
  --orange-500: #ff751f;
  --ink: #0c1b2b;
  --ink-soft: #4d5d6d;
  --line: #cfd6dd;
  --line-dark: #9da9b5;
  --paper: #ffffff;
  --paper-soft: #f4f6f7;
  --paper-warm: #f7f6f3;
  --focus: #006ed1;
  --font-ui: "Raysun Manrope", Arial, sans-serif;
  --font-body: "Raysun Inter", Arial, sans-serif;
  --font-editorial: Georgia, "Times New Roman", serif;
  --container: 1400px;
  --reading: 760px;
  --header-height: 72px;
  --radius: 0px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-header: 30;
  --z-progress: 40;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
[role="button"],
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus), white 22%);
  outline-offset: 4px;
}

::selection {
  background: #d8eafb;
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--navy-950);
  color: white;
  font: 700 13px/1 var(--font-ui);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

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

/* Existing-site header treatment */
.site-header {
  position: relative;
  z-index: var(--z-header);
  height: var(--header-height);
  border-bottom: 1px solid #e5e9ed;
  background: rgba(255, 255, 255, .98);
}

.header-inner {
  width: min(calc(100% - 56px), 1720px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
}

.site-brand img {
  width: 100%;
  max-height: 45px;
  object-fit: contain;
  object-position: left center;
}

.site-logo-white {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  height: 100%;
  gap: clamp(16px, 1.55vw, 31px);
}

.primary-nav ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li {
  display: flex;
  height: 100%;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--navy-900);
  font: 600 12px/1 var(--font-ui);
  letter-spacing: .012em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-600);
  transition: transform .25s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.primary-nav .is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-control,
.language-current {
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: default;
  font: 600 13px/1 var(--font-ui);
}

.header-cta,
.button,
.load-more-button,
.share-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  font: 800 12px/1 var(--font-ui);
  letter-spacing: .02em;
  transition: color .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}

.header-cta,
.button--primary,
.button-primary {
  background: var(--orange-500);
  color: var(--navy-950);
}

.header-cta:hover,
.button--primary:hover,
.button-primary:hover {
  background: #ff863d;
}

.header-cta:active,
.button:active,
.load-more-button:active,
.share-button:active {
  transform: translateY(1px) scale(.99);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy-950);
  font: 700 12px/1 var(--font-ui);
}

/* Newsroom */
.site-main,
.news-main {
  min-height: 60vh;
}

.news-hero {
  display: block;
  min-height: 0;
  border-bottom: 1px solid var(--line);
}

.news-hero-inner {
  display: grid;
  grid-template-columns: minmax(360px, 2fr) minmax(0, 3fr);
  width: 100%;
  max-width: none;
}

.hero-story {
  min-width: 0;
  background: var(--paper-soft);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px clamp(42px, 5vw, 86px) 72px max(32px, calc((100vw - min(100vw - 64px, var(--container))) / 2));
  background: var(--paper);
}

.eyebrow {
  margin: 0 0 24px;
  color: #b8450f;
  font: 800 12px/1.1 var(--font-ui);
  letter-spacing: .075em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 22px;
  background: currentColor;
}

.display-title {
  max-width: 530px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: clamp(46px, 4.25vw, 72px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
}

.hero-description {
  max-width: 425px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-story-region {
  min-width: 0;
  background: var(--paper-soft);
}

.story-card,
.latest-card,
.related-card {
  position: relative;
  min-width: 0;
  background: var(--paper);
}

.story-link,
.latest-card > a,
.related-card > a {
  display: block;
  height: 100%;
}

.story-media,
.latest-card__media,
.related-card__media {
  position: relative;
  overflow: hidden;
  background: #dce2e7;
}

.story-media picture,
.story-media img,
.latest-card__media picture,
.latest-card__media img,
.related-card__media picture,
.related-card__media img {
  width: 100%;
  height: 100%;
}

.story-media img,
.latest-card__media img,
.related-card__media img {
  object-fit: cover;
  transition: transform .42s var(--ease);
}

.story-card:hover .story-media img,
.latest-card:hover .latest-card__media img,
.related-card:hover .related-card__media img {
  transform: scale(1.02);
}

.story-card--hero {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
}

.story-card--hero .story-media {
  aspect-ratio: 2 / 1;
}

.story-card--hero .story-content {
  position: relative;
  max-width: 900px;
  padding: 18px clamp(32px, 4vw, 70px) 22px;
}

.story-card--hero .story-content::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 43px;
  left: clamp(16px, 2vw, 32px);
  width: 1px;
  background: var(--line-dark);
}

.story-meta,
.article-meta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 0 0 12px;
  color: #637280;
  font: 700 11px/1.3 var(--font-ui);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-category,
.article-category {
  color: var(--blue-700);
}

.story-date::before,
.article-meta-list > * + *::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  margin-right: 16px;
  vertical-align: -1px;
  background: var(--line-dark);
}

.story-title,
.latest-card__title,
.related-card__title {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -.015em;
}

.story-card--hero .story-title {
  max-width: 820px;
  font-size: clamp(25px, 2vw, 36px);
  line-height: 1.12;
}

.story-card--hero .story-meta {
  margin-bottom: 8px;
}

.story-card--hero .story-summary {
  margin-top: 6px;
  line-height: 1.45;
}

.story-card--hero .text-link {
  margin-top: 10px;
}

.story-summary,
.latest-card__summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--blue-700);
  font: 800 11px/1 var(--font-ui);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  font-size: 16px;
  transition: transform .2s var(--ease);
}

.story-card:hover .text-link::after,
.latest-card:hover .text-link::after,
.related-card:hover .text-link::after {
  transform: translateX(3px);
}

.section {
  padding: 78px 0;
}

.section--compact {
  padding-top: 58px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr);
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-heading h1 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--navy-950);
  font: 800 clamp(17px, 1.35vw, 22px)/1.15 var(--font-ui);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.section-rule {
  grid-column: 2;
  grid-row: 1;
  height: 1px;
  background: var(--line-dark);
}

.section-heading > p {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 36px;
}

.featured-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.story-card--main .story-media {
  aspect-ratio: 4 / 3;
}

.story-card--main .story-content {
  padding: 22px 0 0;
}

.story-card--main .story-title {
  font-size: clamp(28px, 2.25vw, 40px);
  line-height: 1.12;
}

.story-card--secondary {
  border-top: 1px solid var(--line);
}

.story-card--secondary > .story-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-card--secondary .story-media {
  min-height: 0;
  height: auto;
  aspect-ratio: 3.1 / 1;
}

.story-card--secondary .story-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: 12px 0 8px;
}

.story-card--secondary .story-meta {
  margin-bottom: 8px;
}

.story-card--secondary .story-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(19px, 1.2vw, 22px);
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-card--secondary .story-summary {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-card--secondary .text-link {
  margin-top: 10px;
}

.search-panel {
  padding-top: 10px;
}

.news-search > label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-950);
  font: 700 13px/1.4 var(--font-ui);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.search-form label {
  min-width: 0;
}

.search-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
}

.search-form input::placeholder {
  color: #6c7884;
  opacity: 1;
}

.search-form:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--focus), transparent 80%);
}

.search-submit {
  min-width: 108px;
  border: 0;
  background: var(--navy-950);
  color: white;
  cursor: pointer;
  font: 800 12px/1 var(--font-ui);
}

.category-tabs {
  display: flex;
  gap: 28px;
  margin-top: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--line);
}

.category-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 14px 1px 16px;
  color: #4e5c69;
  white-space: nowrap;
  font: 700 11px/1 var(--font-ui);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.category-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-600);
  transition: transform .2s var(--ease);
}

.category-tab:hover,
.category-tab.is-active,
.category-tab[aria-current="page"] {
  color: var(--navy-950);
}

.category-tab.is-active::after,
.category-tab[aria-current="page"]::after {
  transform: scaleX(1);
}

.latest-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.latest-toolbar h2 {
  margin: 0;
  color: var(--navy-950);
  font: 800 clamp(17px, 1.35vw, 22px)/1.15 var(--font-ui);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.latest-status {
  margin: 0;
  color: #667584;
  font-size: 14px;
}

.latest-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}

.latest-card {
  border-top: 1px solid var(--line);
}

.latest-card__media,
.latest-card .story-media {
  aspect-ratio: 16 / 10;
}

.latest-card__content,
.latest-card .story-content {
  padding-top: 18px;
}

.latest-card__title,
.latest-card .story-title {
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.14;
}

.latest-card__summary,
.latest-card .story-summary {
  min-height: 51px;
  font-size: 14px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.load-more-button {
  min-width: 280px;
  min-height: 50px;
  border-color: var(--navy-800);
  background: transparent;
  color: var(--navy-900);
}

.load-more-button:hover:not(:disabled) {
  background: var(--navy-950);
  color: white;
}

.load-more-button:disabled {
  border-color: var(--line);
  color: #74808b;
  cursor: default;
}

.state-panel {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink-soft);
  text-align: center;
}

.state-panel h2,
.state-panel h3,
.state-panel h1 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.state-panel p {
  margin: 0;
}

.state-panel button {
  margin-top: 18px;
}

.state-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.state-panel-actions .state-retry,
.state-panel-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 18px;
  border: 1px solid var(--navy-900);
  background: var(--navy-900);
  color: white;
  font: 800 12px/1 var(--font-ui);
}

.state-panel-actions a {
  background: transparent;
  color: var(--navy-900);
}

.skeleton {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: #e6eaed;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .48);
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .skeleton::after {
    animation: skeleton-pulse 1.4s ease-in-out infinite alternate;
  }
}

@keyframes skeleton-pulse {
  to { opacity: 1; }
}

.knowledge-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 76px;
  background: var(--navy-950);
  color: white;
  isolation: isolate;
}

.knowledge-section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 55%;
  z-index: -1;
  background: url("/wp-content/plugins/raysun-newsroom-live-v10/TEMP_PLACEHOLDER_NEWS_HOME_13_ENGINEERING_DESKTOP_1600x900.webp") center / cover no-repeat;
  opacity: .32;
}

.knowledge-header {
  max-width: 520px;
  margin-bottom: 42px;
}

.knowledge-header h2 {
  margin: 0;
  font: 800 clamp(18px, 1.4vw, 23px)/1.2 var(--font-ui);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.knowledge-header h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 18px;
  background: var(--orange-500);
}

.knowledge-header p {
  margin: 18px 0 0;
  color: #c9d5e1;
}

.knowledge-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.knowledge-item {
  position: relative;
  min-height: 240px;
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.knowledge-item + .knowledge-item {
  padding-left: 0;
}

.knowledge-item:last-child {
  border-right: 0;
}

.knowledge-link {
  position: relative;
  min-height: inherit;
  padding: 26px 24px 18px 0;
}

.knowledge-item + .knowledge-item .knowledge-link {
  padding-left: 24px;
}

.knowledge-index {
  display: block;
  margin-bottom: 30px;
  color: #f1f5f8;
  font: 400 30px/1 var(--font-editorial);
}

.knowledge-title {
  display: block;
  max-width: 190px;
  color: white;
  font-family: var(--font-editorial);
  font-size: 20px;
  line-height: 1.18;
}

.knowledge-item .text-link {
  position: absolute;
  bottom: 18px;
  left: 0;
  color: #c9d8e6;
}

.knowledge-item + .knowledge-item .text-link {
  left: 24px;
}

.project-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: var(--paper-warm);
  isolation: isolate;
}

.project-cta::after {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  z-index: -1;
  background: url("/wp-content/plugins/raysun-newsroom-live-v10/TEMP_PLACEHOLDER_NEWS_ARTICLE_10_BODY_01_1600x1000.webp") center / cover no-repeat;
  opacity: .22;
  filter: saturate(.25) contrast(.8) brightness(1.22);
}

.project-cta__content {
  max-width: 630px;
}

.project-cta-inner {
  min-height: 290px;
  display: flex;
  align-items: center;
}

.project-cta .eyebrow {
  margin-bottom: 18px;
}

.project-cta .eyebrow::after {
  display: none;
}

.project-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.project-cta p {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button--secondary,
.button-secondary {
  border-color: var(--navy-900);
  background: rgba(255, 255, 255, .78);
  color: var(--navy-950);
}

.button--secondary:hover,
.button-secondary:hover {
  background: var(--navy-950);
  color: white;
}

/* Existing-site footer content, kept visually subordinate */
.site-footer {
  background: var(--navy-950);
  color: #d4deE8;
}

.footer-inner {
  width: min(calc(100% - 64px), 1540px);
  margin-inline: auto;
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(5, minmax(130px, 1fr));
  gap: 34px;
}

.footer-brand img {
  width: 170px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 260px;
  margin: 18px 0 0;
  color: #aebdca;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: white;
  font: 800 12px/1.2 var(--font-ui);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #b8c5d1;
  font-size: 12px;
  line-height: 1.45;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #93a6b8;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

/* Single Article */
.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-progress);
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.reading-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-600);
}

@supports (animation-timeline: scroll()) {
  .reading-progress::after {
    animation: reading-progress linear both;
    animation-timeline: scroll(root block);
  }
}

@keyframes reading-progress {
  to { transform: scaleX(1); }
}

.article-page {
  background: var(--paper);
}

.article-loading {
  min-height: 65vh;
  display: grid;
  place-items: center;
}

.article-loading[hidden],
.article-shell[hidden],
.article-error[hidden] {
  display: none !important;
}

.article-breadcrumb-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

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

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  color: #627180;
  white-space: nowrap;
  font-size: 12px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 11px;
  color: #9ba6af;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  color: #627180;
  white-space: nowrap;
  font-size: 12px;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin-right: 11px;
  color: #9ba6af;
}

.breadcrumb-list li:last-child {
  max-width: min(52vw, 620px);
  overflow: hidden;
  color: var(--navy-950);
  text-overflow: ellipsis;
}

.article-header {
  padding: 72px 0 50px;
}

.category-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.category-header .container {
  max-width: 1060px;
}

.category-description {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.category-count {
  margin: 22px 0 0;
  color: var(--blue-700);
  font: 800 12px/1.4 var(--font-ui);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.article-header__inner {
  max-width: 1060px;
  margin-inline: auto;
}

.article-header-inner {
  max-width: 1060px;
  margin-inline: auto;
}

.article-header h1 {
  max-width: 1020px;
  margin: 16px 0 0;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.article-summary {
  max-width: 800px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.article-header__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-button {
  min-height: 42px;
  border-color: var(--navy-900);
  background: transparent;
  color: var(--navy-950);
}

.share-button:hover {
  background: var(--navy-950);
  color: white;
}

.article-hero {
  width: min(calc(100% - 64px), 1600px);
  margin: 0 auto;
  background: #dce2e7;
}

.article-hero-picture,
.article-hero-picture img {
  width: 100%;
}

.article-hero-picture img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, var(--reading)) minmax(220px, 280px);
  justify-content: center;
  gap: clamp(34px, 4vw, 74px);
  width: min(calc(100% - 64px), 1400px);
  margin: 0 auto;
  padding: 74px 0 84px;
}

.toc-rail,
.article-sidebar {
  align-self: start;
  position: sticky;
  top: 26px;
}

.toc-title,
.sidebar-title {
  margin: 0 0 18px;
  color: var(--navy-950);
  font: 800 12px/1.2 var(--font-ui);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.toc-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  list-style: none;
}

.toc-list li {
  position: relative;
}

.toc-list a {
  display: block;
  padding: 8px 0 8px 18px;
  color: #657482;
  font-size: 12px;
  line-height: 1.45;
}

.toc-list li.is-child a {
  padding-left: 32px;
  font-size: 11px;
}

.toc-list a:hover,
.toc-list a.is-active {
  color: var(--navy-950);
}

.toc-list a.is-active::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -1px;
  width: 3px;
  background: var(--orange-600);
}

.toc-mobile-wrap {
  display: none;
}

.article-prose-column {
  min-width: 0;
}

.article-prose {
  max-width: var(--reading);
  color: #25384a;
  font-size: 17px;
  line-height: 1.82;
}

.article-prose > :first-child {
  margin-top: 0;
}

.article-prose h2 {
  margin: 64px 0 20px;
  padding-top: 3px;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.024em;
}

.article-prose h3 {
  margin: 38px 0 12px;
  color: var(--navy-950);
  font: 800 20px/1.3 var(--font-ui);
  letter-spacing: -.01em;
}

.article-prose p {
  margin: 0 0 23px;
}

.article-prose strong {
  color: var(--navy-950);
}

.article-prose a {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-prose ul,
.article-prose ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 24px;
}

.article-prose li::marker {
  color: var(--orange-600);
}

.article-prose blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange-600);
  background: var(--paper-soft);
  color: var(--navy-900);
  font-family: var(--font-editorial);
  font-size: 23px;
  line-height: 1.48;
}

.wp-block-table,
.article-prose .table-wrap,
.article-table-region {
  max-width: 100%;
  margin: 34px 0;
  overflow-x: auto;
  border-top: 2px solid var(--navy-950);
}

.article-table-caption {
  padding: 0 0 12px;
  color: var(--navy-900);
  font: 800 13px/1.45 var(--font-ui);
  text-align: left;
}

.article-prose table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.article-prose th,
.article-prose td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.article-prose th {
  background: var(--paper-soft);
  color: var(--navy-950);
  font-family: var(--font-ui);
  font-weight: 800;
}

.article-inline-figure {
  width: min(100%, 960px);
  margin: 44px 0;
}

.article-inline-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dce2e7;
}

.article-inline-figure figcaption {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid var(--orange-600);
  color: #687786;
  font-size: 12px;
  line-height: 1.55;
}

.article-sidebar__panel {
  padding: 24px;
  border-top: 3px solid var(--orange-600);
  background: var(--paper-soft);
}

.article-sidebar__panel + .article-sidebar__panel {
  margin-top: 24px;
}

.article-sidebar__panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.article-sidebar__panel h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font: 800 12px/1.2 var(--font-ui);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.article-sidebar__panel .button {
  width: 100%;
  margin-top: 18px;
}

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

.machine-item a,
.machine-item {
  display: block;
  color: var(--navy-900);
  font: 700 12px/1.45 var(--font-ui);
}

.machine-item a:hover {
  color: var(--blue-700);
}

.article-related {
  padding: 72px 0 78px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.related-card {
  border-top: 2px solid var(--navy-950);
}

.related-card__media,
.related-card .story-media,
.related-card-picture,
.related-card-image-link {
  aspect-ratio: 16 / 10;
}

.related-card-picture,
.related-card-picture img,
.related-card-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.related-card-picture img {
  height: 100%;
  object-fit: cover;
  transition: transform .42s var(--ease);
}

.related-card:hover .related-card-picture img {
  transform: scale(1.02);
}

.related-card__content,
.related-card .story-content,
.related-card-content {
  padding: 18px 0 0;
  background: var(--paper-soft);
}

.related-card__title,
.related-card .story-title,
.related-card-title {
  margin: 8px 0 0;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.related-card-category,
.related-card-date {
  display: inline-block;
  margin: 0 12px 0 0;
  color: var(--blue-700);
  font: 800 10px/1.3 var(--font-ui);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.related-card-date {
  color: #657482;
}

.related-card-summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-card-link,
.article-cta-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 14px;
  color: var(--blue-700);
  font: 800 11px/1 var(--font-ui);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.related-title {
  margin: 0 0 32px;
  color: var(--navy-950);
  font: 800 clamp(17px, 1.35vw, 22px)/1.15 var(--font-ui);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.article-inline-cta {
  margin: 52px 0;
  padding: 30px;
  border-top: 3px solid var(--orange-600);
  background: var(--paper-soft);
}

.article-inline-cta h2 {
  margin-top: 0;
}

.article-project-cta {
  padding: 70px 0;
  background: var(--navy-950);
  color: white;
}

.article-project-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.article-project-cta h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.article-project-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c0cfdd;
}

.article-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(calc(100% - 64px), 1400px);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.article-nav-link {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-nav-link + .article-nav-link {
  border-left: 1px solid var(--line);
  text-align: right;
}

.article-nav-link span {
  color: #697887;
  font: 800 10px/1 var(--font-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-nav-link strong {
  display: block;
  margin-top: 11px;
  color: var(--navy-950);
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
}

/* Responsive */
@media (max-width: 1260px) {
  .header-inner {
    grid-template-columns: 168px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .site-brand {
    width: 150px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a {
    font-size: 10.5px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 10.5px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .footer-column:nth-of-type(n + 4) {
    margin-top: 18px;
  }

  .article-layout {
    grid-template-columns: minmax(170px, 210px) minmax(0, var(--reading));
  }

  .article-sidebar {
    position: static;
    grid-column: 2;
  }

  .article-sidebar__panel {
    display: inline-block;
    width: calc(50% - 14px);
    vertical-align: top;
  }

  .article-sidebar__panel + .article-sidebar__panel {
    margin: 0 0 0 24px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 66px;
  }

  .container,
  .footer-inner,
  .article-layout,
  .article-prev-next {
    width: min(calc(100% - 48px), var(--container));
  }

  .header-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .language-control,
  .language-current,
  .header-actions,
  .header-cta {
    display: none;
  }

  .primary-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: auto;
    padding: 10px 18px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-dark);
    background: var(--paper);
  }

  .primary-nav.is-open ul {
    display: grid;
    gap: 0;
  }

  .primary-nav.is-open li,
  .primary-nav.is-open a {
    width: 100%;
    height: auto;
  }

  .primary-nav.is-open a {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .primary-nav.is-open li:last-child a {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .news-hero,
  .news-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-hero-inner {
    display: grid;
  }

  .hero-copy {
    min-height: 500px;
    padding: 68px 24px 64px;
  }

  .hero-copy > * {
    width: min(100%, 720px);
    margin-right: auto;
    margin-left: auto;
  }

  .story-card--hero {
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .story-card--hero .story-content {
    padding: 30px 56px 42px;
  }

  .story-card--hero .story-content::before {
    left: 30px;
  }

  .featured-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .featured-secondary {
    gap: 32px;
  }

  .latest-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-item:nth-child(2n) {
    border-right: 0;
  }

  .knowledge-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

  .knowledge-section::before {
    left: 40%;
  }

  .article-header__inner,
  .article-header-inner {
    width: min(100%, 880px);
  }

  .article-layout {
    display: block;
    max-width: var(--reading);
  }

  .toc-rail {
    display: none;
  }

  .toc-mobile-wrap {
    display: block;
    margin-bottom: 34px;
    border: 1px solid var(--line);
  }

  .toc-mobile-wrap summary {
    padding: 16px 18px;
    cursor: pointer;
    color: var(--navy-950);
    font: 800 12px/1.2 var(--font-ui);
    letter-spacing: .045em;
    text-transform: uppercase;
  }

  .toc-mobile-wrap .toc-list {
    margin: 0 18px 18px;
  }

  .article-sidebar {
    margin-top: 46px;
  }

  .article-sidebar__panel {
    display: block;
    width: 100%;
  }

  .article-sidebar__panel + .article-sidebar__panel {
    margin: 24px 0 0;
  }
}

@media (max-width: 767px) {
  .container,
  .footer-inner,
  .article-layout,
  .article-prev-next,
  .article-hero {
    width: calc(100% - 40px);
  }

  .section {
    padding: 58px 0;
  }

  .hero-copy {
    min-height: 430px;
    padding: 58px 20px 52px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .display-title {
    max-width: 410px;
    font-size: clamp(42px, 13vw, 60px);
    line-height: 1.02;
  }

  .hero-description {
    margin-top: 26px;
    font-size: 15px;
  }

  .story-card--hero .story-media {
    aspect-ratio: 4 / 5;
  }

  .story-card--hero .story-content {
    padding: 26px 26px 36px 40px;
  }

  .story-card--hero .story-content::before {
    top: 28px;
    bottom: 38px;
    left: 20px;
  }

  .story-card--hero .story-title {
    font-size: 28px;
  }

  .section-heading {
    gap: 15px;
  }

  .section-heading h2,
  .latest-toolbar h2 {
    font-size: 17px;
  }

  .story-card--main .story-media {
    aspect-ratio: 4 / 3;
  }

  .story-card--main .story-title {
    font-size: 31px;
  }

  .story-card--secondary > .story-link {
    display: block;
    height: auto;
  }

  .story-card--secondary .story-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .story-card--secondary .story-content {
    padding: 20px 0 6px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-submit {
    min-height: 46px;
  }

  .category-tabs {
    margin-right: -20px;
    padding-right: 20px;
  }

  .latest-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .latest-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .latest-card__media,
  .latest-card .story-media {
    aspect-ratio: 4 / 3;
  }

  .load-more-button {
    width: 100%;
    min-width: 0;
  }

  .knowledge-section {
    padding: 58px 0 62px;
  }

  .knowledge-section::before {
    inset: 42% 0 0;
    background: url("/wp-content/plugins/raysun-newsroom-live-v10/TEMP_PLACEHOLDER_NEWS_HOME_13_ENGINEERING_MOBILE_1200x900.webp") center / cover no-repeat;
    opacity: .28;
  }

  .knowledge-list {
    grid-template-columns: 1fr;
  }

  .knowledge-item,
  .knowledge-item + .knowledge-item {
    min-height: 168px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-right: 0;
  }

  .knowledge-item .knowledge-link,
  .knowledge-item + .knowledge-item .knowledge-link {
    padding: 22px 44px 22px 0;
  }

  .knowledge-item:first-child {
    border-top: 0;
  }

  .knowledge-index {
    margin-bottom: 18px;
  }

  .knowledge-item .text-link,
  .knowledge-item + .knowledge-item .text-link {
    right: 0;
    bottom: 26px;
    left: auto;
    margin: 0;
  }

  .project-cta {
    padding-bottom: 340px;
  }

  .project-cta::after {
    inset: auto 0 0;
    height: 310px;
    background: url("/wp-content/plugins/raysun-newsroom-live-v10/TEMP_PLACEHOLDER_NEWS_ARTICLE_10_BODY_01_1600x1000.webp") center / cover no-repeat;
    opacity: .2;
  }

  .project-cta h2 {
    font-size: 43px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .footer-inner {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .article-header {
    padding: 52px 0 38px;
  }

  .article-header h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .article-summary {
    font-size: 17px;
  }

  .article-header__footer,
  .article-header-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero-picture img {
    aspect-ratio: 4 / 5;
  }

  .article-layout {
    padding: 48px 0 64px;
  }

  .article-prose {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-prose h2 {
    margin-top: 52px;
    font-size: 34px;
  }

  .article-prose h3 {
    font-size: 19px;
  }

  .article-inline-figure {
    margin: 36px 0;
  }

  .article-project-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .article-project-cta h2 {
    font-size: 42px;
  }

  .article-prev-next {
    grid-template-columns: 1fr;
  }

  .article-nav-link + .article-nav-link {
    border-left: 0;
    text-align: left;
  }
}

@media (max-width: 479px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .site-brand {
    width: 142px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .story-meta {
    gap: 8px 10px;
  }

  .story-date::before {
    margin-right: 10px;
  }
}

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

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

  .story-media img,
  .latest-card__media img,
  .related-card__media img {
    transform: none !important;
  }
}
