:root {
    --rs-ink: #0a2345;
    --rs-ink-deep: #061a35;
    --rs-cobalt: #1f63f4;
    --rs-cobalt-dark: #164bc2;
    --rs-paper: #f8f7f3;
    --rs-white: #ffffff;
    --rs-line: #d9dee6;
    --rs-muted: #647083;
    --rs-shadow: 0 16px 42px rgba(10, 35, 69, 0.10);
    --rs-container: 1240px;
    --rs-radius: 2px;
    --rs-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --gh-font-heading: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    --gh-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--rs-paper);
}

body {
    margin: 0;
    color: var(--rs-ink);
    background: var(--rs-paper);
    font-family: var(--gh-font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

::selection {
    color: var(--rs-white);
    background: var(--rs-cobalt);
}

:focus-visible {
    outline: 3px solid var(--rs-cobalt);
    outline-offset: 4px;
}

.rs-skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--rs-white);
    background: var(--rs-ink);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.rs-site-shell {
    min-width: 320px;
    overflow: clip;
}

.rs-container {
    width: min(calc(100% - 80px), var(--rs-container));
    margin: 0 auto;
}

.rs-container--narrow {
    width: min(calc(100% - 80px), 860px);
}

.rs-eyebrow {
    margin: 0;
    color: var(--rs-cobalt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.rs-eyebrow a {
    color: inherit;
}

.rs-eyebrow--light {
    color: #bcd2ff;
}

/* Header */
.rs-site-header {
    position: relative;
    z-index: 20;
    color: var(--rs-ink);
    background: var(--rs-white);
    border-bottom: 1px solid rgba(10, 35, 69, 0.10);
}

.rs-header__inner {
    display: flex;
    align-items: center;
    min-height: 84px;
    gap: 32px;
}

.rs-brand {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.rs-brand__image {
    width: auto;
    max-width: 210px;
    max-height: 54px;
    object-fit: contain;
}

.rs-brand__name {
    color: var(--rs-ink);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.rs-brand__name span {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.rs-brand__descriptor {
    margin-top: 8px;
    color: var(--rs-muted);
    font-size: 9px;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.rs-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.rs-navigation .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3.6vw, 52px);
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rs-navigation .nav li {
    margin: 0;
    padding: 0;
}

.rs-navigation .nav a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: var(--rs-ink);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.rs-navigation .nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--rs-cobalt);
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 220ms var(--rs-ease);
}

.rs-navigation .nav a:hover::after,
.rs-navigation .nav a:focus-visible::after,
.rs-navigation .nav-current a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.rs-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 22px;
}

.rs-language {
    color: var(--rs-muted);
    font-size: 13px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.rs-language span {
    padding: 0 4px;
    color: #aab2bd;
}

.rs-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid var(--rs-ink);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease;
}

.rs-header__contact:hover,
.rs-header__contact:focus-visible {
    color: var(--rs-white);
    background: var(--rs-ink);
}

.rs-menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rs-menu-toggle__label {
    font-size: 13px;
    font-weight: 600;
}

.rs-menu-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 23px;
}

.rs-menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
}

.rs-menu-toggle[aria-expanded="true"] .rs-menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.rs-menu-toggle[aria-expanded="true"] .rs-menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.rs-hero {
    background: var(--rs-paper);
}

.rs-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    min-height: min(720px, calc(100vh - 84px));
}

.rs-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 92px clamp(32px, 6vw, 108px) 86px 0;
}

.rs-hero__copy h1 {
    max-width: 660px;
    margin: 26px 0 24px;
    color: var(--rs-ink);
    font-size: clamp(44px, 5.2vw, 78px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.13;
    text-wrap: balance;
}

.rs-hero__subtitle {
    max-width: 530px;
    margin: 0;
    color: #4f5c6b;
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.65;
}

.rs-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
}

.rs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 49px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rs-button:hover {
    transform: translateY(-2px);
}

.rs-button--primary {
    color: var(--rs-white);
    background: var(--rs-cobalt);
}

.rs-button--primary:hover,
.rs-button--primary:focus-visible {
    background: var(--rs-cobalt-dark);
}

.rs-button--light {
    color: var(--rs-white);
    border-color: rgba(255, 255, 255, 0.75);
}

.rs-button--light:hover,
.rs-button--light:focus-visible {
    color: var(--rs-ink);
    background: var(--rs-white);
}

.rs-text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rs-ink);
    font-size: 14px;
    font-weight: 700;
}

.rs-text-link:hover,
.rs-text-link:focus-visible {
    color: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

.rs-hero__caption {
    margin: auto 0 0;
    color: #7a8490;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rs-hero__visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: linear-gradient(135deg, #192d47 0%, #607080 45%, #d1d4d1 100%);
}

.rs-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 26, 53, 0.28), transparent 44%), linear-gradient(0deg, rgba(6, 26, 53, 0.12), transparent 40%);
    content: "";
    pointer-events: none;
}

.rs-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.rs-hero__visual-label {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.87);
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.6;
    text-align: right;
}

.rs-hero__visual-label span:first-child {
    font-size: 13px;
    font-weight: 800;
}

/* Intro strip and sections */
.rs-trust-strip {
    position: relative;
    z-index: 2;
    margin: -1px auto 0;
    color: var(--rs-ink);
    background: var(--rs-white);
    border-top: 1px solid var(--rs-line);
    border-bottom: 1px solid var(--rs-line);
}

.rs-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.rs-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 112px;
    padding: 28px 34px;
    border-right: 1px solid var(--rs-line);
}

.rs-trust-item:first-child {
    padding-left: 0;
}

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

.rs-trust-item__index {
    color: var(--rs-cobalt);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rs-trust-item h2 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.rs-trust-item p {
    margin: 0;
    color: var(--rs-muted);
    font-size: 13px;
}

.rs-section {
    padding: clamp(88px, 10vw, 150px) 0;
}

.rs-section-heading {
    margin-bottom: 48px;
}

.rs-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 60px;
    align-items: end;
}

.rs-section-heading--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.rs-section-heading h2,
.rs-page-header h1 {
    margin: 15px 0 0;
    color: var(--rs-ink);
    font-size: clamp(34px, 4.3vw, 60px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.18;
}

.rs-section-heading__intro {
    max-width: 420px;
    margin: 0 0 5px;
    color: var(--rs-muted);
    font-size: 16px;
}

.rs-outline-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    padding: 10px 0;
    border-bottom: 1px solid var(--rs-ink);
    font-size: 13px;
    font-weight: 700;
}

.rs-outline-link:hover,
.rs-outline-link:focus-visible {
    color: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

.rs-outline-link--light {
    color: var(--rs-white);
    border-color: rgba(255, 255, 255, 0.66);
}

.rs-outline-link--light:hover,
.rs-outline-link--light:focus-visible {
    color: #bcd2ff;
    border-color: #bcd2ff;
}

.rs-section--capabilities {
    background: var(--rs-paper);
}

.rs-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rs-ink);
    border-bottom: 1px solid var(--rs-ink);
}

.rs-capability-card {
    position: relative;
    min-height: 290px;
    padding: 31px 34px 37px 0;
    border-right: 1px solid var(--rs-line);
}

.rs-capability-card + .rs-capability-card {
    padding-left: 34px;
}

.rs-capability-card:last-child {
    border-right: 0;
}

.rs-capability-card__number {
    display: block;
    margin-bottom: 50px;
    color: var(--rs-cobalt);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.rs-capability-card h3 {
    margin: 0 0 12px;
    color: var(--rs-ink);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.rs-capability-card p {
    max-width: 290px;
    margin: 0;
    color: var(--rs-muted);
    font-size: 14px;
}

.rs-capability-card__arrow {
    position: absolute;
    right: 30px;
    bottom: 31px;
    color: var(--rs-cobalt);
    font-size: 20px;
}

.rs-section--content,
.rs-section--knowledge {
    background: var(--rs-white);
}

.rs-section--solutions {
    color: var(--rs-white);
    background: var(--rs-ink);
}

.rs-section-heading--light h2 {
    color: var(--rs-white);
}

/* Cards */
.rs-card-grid {
    display: grid;
    gap: 20px;
}

.rs-card-grid--products,
.rs-card-grid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-card-grid--solutions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-content-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--rs-white);
    border: 1px solid var(--rs-line);
    transition: box-shadow 220ms var(--rs-ease), transform 220ms var(--rs-ease), border-color 220ms ease;
}

.rs-content-card:hover {
    border-color: rgba(31, 99, 244, 0.45);
    box-shadow: var(--rs-shadow);
    transform: translateY(-4px);
}

.rs-content-card--solution {
    background: #0f2f5a;
    border-color: rgba(255, 255, 255, 0.19);
}

.rs-content-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.65 / 1;
    overflow: hidden;
    background: #dce2e8;
}

.rs-content-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms var(--rs-ease);
}

.rs-content-card:hover .rs-content-card__media img {
    transform: scale(1.04);
}

.rs-content-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(10, 35, 69, 0.38);
    background: linear-gradient(135deg, #e3e7eb, #c6d0d9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.rs-content-card--solution .rs-content-card__media--placeholder {
    color: rgba(255, 255, 255, 0.57);
    background: linear-gradient(135deg, #164579, #35698b);
}

.rs-content-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 22px;
}

.rs-content-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.rs-card__label {
    color: var(--rs-cobalt);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.rs-content-card__meta time {
    color: #8993a1;
    font-size: 11px;
}

.rs-content-card h3 {
    margin: 0;
    color: var(--rs-ink);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.rs-content-card h3 a:hover,
.rs-content-card h3 a:focus-visible {
    color: var(--rs-cobalt);
}

.rs-content-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 12px 0 20px;
    color: var(--rs-muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rs-content-card__link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding-top: 8px;
    color: var(--rs-ink);
    border-bottom: 1px solid var(--rs-ink);
    font-size: 12px;
    font-weight: 700;
}

.rs-content-card__link:hover,
.rs-content-card__link:focus-visible {
    color: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

.rs-content-card--solution h3,
.rs-content-card--solution .rs-content-card__link {
    color: var(--rs-white);
}

.rs-content-card--solution h3 a:hover,
.rs-content-card--solution h3 a:focus-visible,
.rs-content-card--solution .rs-content-card__link:hover,
.rs-content-card--solution .rs-content-card__link:focus-visible {
    color: #bcd2ff;
    border-color: #bcd2ff;
}

.rs-content-card--solution p {
    color: rgba(255, 255, 255, 0.69);
}

.rs-content-card--solution .rs-content-card__meta time {
    color: rgba(255, 255, 255, 0.53);
}

.rs-empty-card {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    background: #eef1f3;
    border: 1px dashed #aab5c1;
}

.rs-empty-card h3 {
    margin: 16px 0 10px;
    color: var(--rs-ink);
    font-size: 22px;
    font-weight: 800;
}

.rs-empty-card p {
    max-width: 420px;
    margin: 0;
    color: var(--rs-muted);
    font-size: 13px;
}

.rs-empty-card__mark {
    position: absolute;
    right: 30px;
    bottom: 24px;
    color: rgba(31, 99, 244, 0.72);
    font-size: 28px;
    font-weight: 300;
}

.rs-empty-card--dark {
    color: var(--rs-white);
    background: #12345f;
    border-color: rgba(255, 255, 255, 0.35);
}

.rs-empty-card--dark h3 {
    color: var(--rs-white);
}

.rs-empty-card--dark p {
    color: rgba(255, 255, 255, 0.68);
}

/* Knowledge list */
.rs-knowledge-list {
    border-top: 1px solid var(--rs-line);
}

.rs-knowledge-item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 40px;
    gap: 32px;
    align-items: center;
    min-height: 150px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rs-line);
}

.rs-knowledge-item__date {
    color: var(--rs-muted);
    font-size: 12px;
}

.rs-knowledge-item__content h3 {
    margin: 6px 0 4px;
    color: var(--rs-ink);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rs-knowledge-item__content h3 a:hover,
.rs-knowledge-item__content h3 a:focus-visible {
    color: var(--rs-cobalt);
}

.rs-knowledge-item__content p:last-child {
    display: -webkit-box;
    overflow: hidden;
    max-width: 680px;
    margin: 0;
    color: var(--rs-muted);
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rs-knowledge-item__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--rs-cobalt);
    border: 1px solid var(--rs-line);
    border-radius: 50%;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.rs-knowledge-item__arrow:hover,
.rs-knowledge-item__arrow:focus-visible {
    color: var(--rs-white);
    background: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

/* Archive and article */
.rs-archive {
    min-height: 60vh;
}

.rs-page-header {
    max-width: 760px;
    margin: 0 0 66px;
}

.rs-page-header h1 {
    margin-top: 17px;
}

.rs-page-header > p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--rs-muted);
    font-size: 17px;
}

.rs-page-header--tag,
.rs-page-header--author {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--rs-line);
}

.rs-author-avatar {
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.rs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 58px;
}

.rs-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rs-pagination a,
.rs-pagination .page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    padding: 5px 10px;
    border: 1px solid var(--rs-line);
    font-size: 12px;
}

.rs-pagination a:hover,
.rs-pagination a:focus-visible {
    color: var(--rs-white);
    background: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

.rs-article {
    max-width: 860px;
    margin: 0 auto;
}

.rs-article__header {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.rs-article__header h1 {
    margin: 18px 0 0;
    color: var(--rs-ink);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.18;
}

.rs-article__excerpt {
    margin: 24px auto 0;
    color: var(--rs-muted);
    font-size: 17px;
}

.rs-article__meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--rs-muted);
    font-size: 12px;
}

.rs-article__feature {
    margin: 0 0 64px;
}

.rs-article__feature img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.rs-article__feature figcaption {
    margin-top: 10px;
    color: var(--rs-muted);
    font-size: 12px;
    text-align: center;
}

.gh-content {
    color: #253a53;
    font-size: 17px;
    line-height: 1.9;
}

.gh-content > * {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.gh-content .kg-width-wide {
    width: min(calc(100vw - 48px), 1100px);
    margin-right: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content .kg-width-full {
    width: 100vw;
    margin-right: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.gh-content > * + * {
    margin-top: 1.35em;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
    color: var(--rs-ink);
    font-weight: 800;
    line-height: 1.3;
}

.gh-content h2 {
    margin-top: 2.4em;
    font-size: 32px;
    letter-spacing: -0.03em;
}

.gh-content h3 {
    margin-top: 2em;
    font-size: 25px;
}

.gh-content a {
    color: var(--rs-cobalt-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.gh-content blockquote {
    margin-right: 0;
    margin-left: 0;
    padding: 12px 28px;
    color: var(--rs-ink);
    border-left: 3px solid var(--rs-cobalt);
    font-size: 20px;
}

.gh-content img {
    height: auto;
}

.gh-content figure {
    margin-right: 0;
    margin-left: 0;
}

.gh-content figcaption {
    color: var(--rs-muted);
    font-size: 12px;
    text-align: center;
}

.gh-content pre {
    overflow-x: auto;
    padding: 20px;
    color: #e9f1ff;
    background: var(--rs-ink-deep);
    font-size: 14px;
    line-height: 1.6;
}

.gh-content code {
    padding: 2px 5px;
    color: var(--rs-ink);
    background: #e8edf4;
    font-size: 0.9em;
}

.gh-content pre code {
    padding: 0;
    color: inherit;
    background: transparent;
}

.gh-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.gh-content th,
.gh-content td {
    padding: 10px 12px;
    border: 1px solid var(--rs-line);
    text-align: left;
}

.rs-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid var(--rs-line);
    color: var(--rs-muted);
    font-size: 12px;
}

.rs-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rs-article__tags a {
    padding: 5px 10px;
    color: var(--rs-ink);
    border: 1px solid var(--rs-line);
}

.rs-article__tags a:hover,
.rs-article__tags a:focus-visible {
    color: var(--rs-white);
    background: var(--rs-cobalt);
    border-color: var(--rs-cobalt);
}

.rs-article__author {
    margin: 0;
}

.rs-article__author a {
    color: var(--rs-ink);
    font-weight: 700;
}

.rs-error {
    min-height: 60vh;
}

.rs-error h1 {
    margin: 18px 0;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.04em;
}

.rs-error p:not(.rs-eyebrow) {
    margin: 0 0 28px;
    color: var(--rs-muted);
}

/* Footer */
.rs-contact-band {
    color: var(--rs-white);
    background: var(--rs-ink);
}

.rs-contact-band__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.rs-contact-band h2 {
    margin: 14px 0 10px;
    color: var(--rs-white);
    font-size: clamp(28px, 3.8vw, 50px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.rs-contact-band p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.rs-footer-base {
    color: var(--rs-white);
    background: var(--rs-ink-deep);
}

.rs-footer-base__grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 33px;
    padding-bottom: 33px;
}

.rs-brand--footer .rs-brand__name {
    color: var(--rs-white);
    font-size: 15px;
}

.rs-footer-base__description {
    max-width: 340px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.rs-footer-base__meta {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    text-align: right;
}

.rs-footer-base__meta p {
    margin: 4px 0;
}

.rs-footer-base__meta a:hover,
.rs-footer-base__meta a:focus-visible {
    color: var(--rs-white);
}

@media (max-width: 1100px) {
    .rs-container {
        width: min(calc(100% - 56px), var(--rs-container));
    }

    .rs-header__inner {
        gap: 22px;
    }

    .rs-navigation .nav {
        gap: 22px;
    }

    .rs-header__actions {
        gap: 14px;
    }

    .rs-language {
        display: none;
    }

    .rs-hero__copy {
        padding-right: 50px;
    }

    .rs-trust-item {
        padding-right: 20px;
        padding-left: 20px;
    }

    .rs-trust-item:first-child {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .rs-container,
    .rs-container--narrow {
        width: min(calc(100% - 44px), var(--rs-container));
    }

    .rs-header__inner {
        position: relative;
        min-height: 72px;
        justify-content: space-between;
    }

    .rs-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .rs-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: block;
        max-height: 0;
        padding: 0 22px;
        overflow: hidden;
        visibility: hidden;
        background: var(--rs-white);
        box-shadow: 0 18px 24px rgba(10, 35, 69, 0.10);
        opacity: 0;
        transition: max-height 260ms var(--rs-ease), opacity 180ms ease, visibility 180ms ease, padding 260ms var(--rs-ease);
    }

    .rs-navigation.is-open {
        max-height: 440px;
        padding-top: 12px;
        padding-bottom: 16px;
        visibility: visible;
        opacity: 1;
    }

    .rs-navigation .nav {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .rs-navigation .nav li {
        border-bottom: 1px solid var(--rs-line);
    }

    .rs-navigation .nav li:last-child {
        border-bottom: 0;
    }

    .rs-navigation .nav a {
        display: block;
        padding: 13px 0;
    }

    .rs-header__actions {
        display: none;
    }

    .rs-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .rs-hero__copy {
        min-height: 520px;
        padding: 76px 0 68px;
    }

    .rs-hero__copy h1 {
        max-width: 720px;
        font-size: clamp(44px, 8vw, 68px);
    }

    .rs-hero__visual {
        min-height: min(62vw, 590px);
    }

    .rs-trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .rs-trust-item,
    .rs-trust-item:first-child {
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--rs-line);
    }

    .rs-trust-item:last-child {
        border-bottom: 0;
    }

    .rs-section-heading--split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rs-section-heading__intro {
        max-width: 600px;
    }

    .rs-capability-grid {
        grid-template-columns: 1fr;
    }

    .rs-capability-card,
    .rs-capability-card + .rs-capability-card {
        min-height: 230px;
        padding: 26px 0 30px;
        border-right: 0;
        border-bottom: 1px solid var(--rs-line);
    }

    .rs-capability-card:last-child {
        border-bottom: 0;
    }

    .rs-capability-card__number {
        margin-bottom: 28px;
    }

    .rs-card-grid--products,
    .rs-card-grid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-contact-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .rs-container,
    .rs-container--narrow {
        width: calc(100% - 36px);
    }

    .rs-brand__name {
        font-size: 16px;
    }

    .rs-brand__descriptor {
        display: none;
    }

    .rs-hero__copy {
        min-height: 490px;
        padding: 60px 0 52px;
    }

    .rs-hero__copy h1 {
        margin-top: 21px;
        font-size: clamp(39px, 12vw, 59px);
        letter-spacing: -0.07em;
    }

    .rs-hero__subtitle {
        font-size: 16px;
    }

    .rs-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 32px;
    }

    .rs-hero__visual {
        min-height: 72vw;
    }

    .rs-hero__visual-label {
        right: 15px;
        bottom: 14px;
        font-size: 8px;
    }

    .rs-section {
        padding: 76px 0;
    }

    .rs-section-heading {
        margin-bottom: 34px;
    }

    .rs-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .rs-section-heading h2,
    .rs-page-header h1 {
        font-size: 38px;
    }

    .rs-card-grid--products,
    .rs-card-grid--solutions,
    .rs-card-grid--archive {
        grid-template-columns: 1fr;
    }

    .rs-content-card__body {
        padding: 22px 20px 20px;
    }

    .rs-knowledge-item {
        grid-template-columns: 1fr 34px;
        gap: 10px 18px;
        padding: 24px 0;
    }

    .rs-knowledge-item__date {
        grid-column: 1 / -1;
    }

    .rs-knowledge-item__content {
        grid-column: 1;
    }

    .rs-knowledge-item__arrow {
        grid-column: 2;
        grid-row: 2;
    }

    .rs-page-header {
        margin-bottom: 42px;
    }

    .rs-article__header {
        margin-bottom: 42px;
    }

    .rs-article__header h1 {
        font-size: 39px;
    }

    .gh-content {
        font-size: 16px;
    }

    .gh-content h2 {
        font-size: 28px;
    }

    .rs-article__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .rs-contact-band__inner {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .rs-footer-base__grid {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .rs-footer-base__meta {
        text-align: left;
    }
}

/* --------------------------------------------------------------------------
   Reference home: 1536 x 1024 enterprise composition
   -------------------------------------------------------------------------- */
:root {
    --rs-container: 1340px;
}

.rs-enterprise-home {
    --rse-deep: #052353;
    --rse-ink: #0b234b;
    --rse-blue: #1768f5;
    --rse-line: #dce2e9;
    color: var(--rse-ink);
    background: #fff;
}

.rs-site-header {
    min-height: 68px;
    border-bottom-color: #e5e8ec;
}

.rs-header__inner {
    min-height: 68px;
    gap: 28px;
}

.rs-brand__name {
    color: #16447d;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.rs-brand__name span {
    font-weight: 700;
    letter-spacing: 0;
}

.rs-brand__descriptor {
    margin-top: 3px;
    color: #173862;
    font-size: 9px;
    letter-spacing: 0;
}

.rs-navigation .nav {
    gap: clamp(22px, 3.2vw, 48px);
}

.rs-navigation .nav a {
    padding: 6px 0;
    color: #0c1e3a;
    font-size: 14px;
    font-weight: 500;
}

.rs-header__actions {
    gap: 22px;
}

.rs-language {
    color: #162440;
    font-size: 13px;
}

.rs-header__contact {
    padding: 9px 16px;
    color: #16345e;
    border-color: #6f86a5;
    font-size: 13px;
}

.rs-header__contact:hover,
.rs-header__contact:focus-visible {
    color: #fff;
    background: #163d70;
}

/* Full-bleed Hero with the source image behind the copy. */
.rs-enterprise-hero {
    position: relative;
    height: 357px;
    min-height: 357px;
    overflow: hidden;
    color: #fff;
    background: #061c3b;
}

.rs-enterprise-hero__grid {
    position: relative;
    display: block;
    width: 100%;
    height: 357px;
    min-height: 357px;
}

.rs-enterprise-hero__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    min-height: 0;
    background: #061c3b;
}

.rs-enterprise-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 46%;
    filter: saturate(0.96) contrast(1.03);
}

.rs-enterprise-hero__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 20, 46, 0.94) 0%, rgba(3, 26, 55, 0.88) 26%, rgba(3, 26, 55, 0.48) 52%, rgba(3, 26, 55, 0.12) 78%, rgba(3, 26, 55, 0.2) 100%), linear-gradient(0deg, rgba(3, 19, 42, 0.26), transparent 60%);
}

.rs-enterprise-hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 54px 24px 0 max(28px, calc((100vw - var(--rs-container)) / 2));
    background: transparent;
}

.rs-enterprise-hero__copy .rs-eyebrow,
.rs-enterprise-hero__caption,
.rs-enterprise-hero__visual-label {
    display: none;
}

.rs-enterprise-hero__copy h1 {
    max-width: none;
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 3.05vw, 47px);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.24;
    white-space: nowrap;
}

.rs-enterprise-hero__subtitle {
    max-width: none;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 21px;
    line-height: 1.5;
}

.rs-enterprise-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 25px;
}

.rs-enterprise-hero__actions .rs-button {
    min-height: 48px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
}

.rs-enterprise-hero__actions .rs-button--primary {
    background: var(--rse-blue);
}

.rs-enterprise-hero__actions .rs-button--outline-light {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Four-item floating proof bar. */
.rs-enterprise-trust {
    position: relative;
    z-index: 3;
    height: 61px;
    margin-top: -54px;
}

.rs-enterprise-trust__grid {
    display: grid;
    height: 61px;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #dce4ed;
    box-shadow: 0 4px 12px rgba(9, 39, 76, 0.08);
}

.rs-enterprise-trust__item {
    display: flex;
    align-items: center;
    min-height: 59px;
    padding: 12px 24px;
    gap: 14px;
}

.rs-enterprise-trust__item:not(:last-child) {
    border-right: 1px solid #dce4ed;
}

.rs-enterprise-trust__icon {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    color: #075cc9;
    font-size: 15px;
}

.rs-enterprise-trust__item h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.rs-enterprise-trust__item p {
    display: none;
}

/* Products, applications and knowledge share the same narrow title rail. */
.rs-enterprise-section {
    padding: 0;
}

.rs-enterprise-section--products {
    height: 169px;
    padding: 22px 0 17px;
    background: #fff;
}

.rs-enterprise-section--solutions {
    height: 125px;
    padding: 4px 0 8px;
    background: #fff;
}

.rs-enterprise-section--knowledge {
    height: 85px;
    padding: 10px 0 8px;
    background: #fff;
}

.rs-enterprise-section--products .rs-enterprise-heading .rs-outline-link,
.rs-enterprise-section--solutions .rs-enterprise-heading .rs-outline-link {
    display: none;
}

.rs-enterprise-section__layout {
    display: grid;
    height: 100%;
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.rs-enterprise-heading {
    min-width: 0;
    margin: 0;
    padding-top: 4px;
}

.rs-enterprise-heading .rs-eyebrow {
    display: none;
}

.rs-enterprise-heading h2 {
    margin: 0;
    color: #0b234b;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.3;
}

.rs-enterprise-heading h2::after {
    display: block;
    width: 24px;
    height: 3px;
    margin-top: 8px;
    background: var(--rse-blue);
    content: "";
}

.rs-enterprise-heading .rs-outline-link {
    margin-top: 14px;
    padding: 0 0 3px;
    border-bottom-color: #6783a6;
    font-size: 11px;
    font-weight: 500;
}

.rs-enterprise-heading .rs-outline-link span {
    font-size: 14px;
}

.rs-enterprise-product-grid {
    display: grid;
    height: 130px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
}

.rs-enterprise-solution-grid {
    display: grid;
    height: 113px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.rs-enterprise-home .rs-content-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d6dee8;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(9, 38, 73, 0.08);
}

.rs-enterprise-home .rs-content-card--product {
    display: block;
    height: 130px;
    min-height: 130px;
}

.rs-enterprise-home .rs-content-card--product .rs-content-card__media {
    height: 89px;
    min-height: 89px;
    aspect-ratio: auto;
}

.rs-enterprise-home .rs-content-card--product .rs-content-card__body {
    display: block;
    height: 40px;
    padding: 8px 11px;
}

.rs-enterprise-home .rs-content-card--product .rs-content-card__meta,
.rs-enterprise-home .rs-content-card--product p,
.rs-enterprise-home .rs-content-card--product .rs-content-card__link {
    display: none;
}

.rs-enterprise-home .rs-content-card--product h3 {
    overflow: hidden;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-enterprise-home .rs-content-card--solution {
    position: relative;
    display: block;
    height: 113px;
    min-height: 113px;
    background: #103664;
    border-color: #103664;
}

.rs-enterprise-home .rs-content-card--solution .rs-content-card__media {
    height: 113px;
    aspect-ratio: auto;
}

.rs-enterprise-home .rs-content-card--solution .rs-content-card__media::after,
.rs-static-card--solution .rs-static-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 21, 49, 0.83), rgba(2, 21, 49, 0.05) 72%);
    content: "";
}

.rs-enterprise-home .rs-content-card--solution .rs-content-card__body {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: auto;
    padding: 0 14px 10px;
}

.rs-enterprise-home .rs-content-card--solution .rs-content-card__meta,
.rs-enterprise-home .rs-content-card--solution p,
.rs-enterprise-home .rs-content-card--solution .rs-content-card__link {
    display: none;
}

.rs-enterprise-home .rs-content-card--solution h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.rs-enterprise-home .rs-content-card--solution h3 a {
    color: inherit;
}

/* Static fallback cards retain the same visual footprint as real posts. */
.rs-static-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d6dee8;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(9, 38, 73, 0.08);
}

.rs-static-card--product {
    height: 130px;
}

.rs-static-card__media {
    position: relative;
    display: block;
    height: 89px;
    overflow: hidden;
    color: transparent;
    background-image: url("../images/enterprise-hero.png");
    background-repeat: no-repeat;
    background-size: 260% auto;
}

.rs-static-card__media span {
    display: none;
}

.rs-static-card__media--one { background-position: 18% 58%; filter: saturate(0.75) brightness(1.03); }
.rs-static-card__media--two { background-position: 31% 47%; filter: saturate(0.8) brightness(1.07); }
.rs-static-card__media--three { background-position: 45% 55%; filter: saturate(0.9) brightness(0.93); }
.rs-static-card__media--four { background-position: 61% 49%; filter: saturate(0.75) brightness(1.08); }
.rs-static-card__media--five { background-position: 73% 44%; filter: saturate(1.1) brightness(0.93); }
.rs-static-card__media--six { background-position: 89% 54%; filter: saturate(1.25) brightness(0.84); }

.rs-static-card h3 {
    overflow: hidden;
    margin: 8px 11px 0;
    color: #10294e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-static-card h3 a {
    color: inherit;
}

.rs-static-card__arrow {
    position: absolute;
    right: 9px;
    bottom: 8px;
    color: #0b3d7e;
    font-size: 17px;
    line-height: 1;
}

.rs-static-card--solution {
    height: 113px;
    background: #103664;
    border-color: #103664;
}

.rs-static-card--solution .rs-static-card__media {
    height: 113px;
    background-size: 210% auto;
}

.rs-static-card--solution .rs-static-card__media--auto { background-position: 72% 57%; filter: saturate(1.2) brightness(0.76); }
.rs-static-card--solution .rs-static-card__media--motor { background-position: 90% 47%; filter: saturate(0.9) brightness(0.85); }
.rs-static-card--solution .rs-static-card__media--five-g { background-position: 34% 39%; filter: saturate(0.82) brightness(0.94); }
.rs-static-card--solution .rs-static-card__media--factory { background-position: 53% 44%; filter: saturate(0.72) brightness(0.8); }

.rs-static-card--solution h3 {
    position: absolute;
    z-index: 1;
    right: 35px;
    bottom: 11px;
    left: 14px;
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.rs-static-card--solution h3 a {
    color: inherit;
}

.rs-static-card--solution .rs-static-card__arrow {
    z-index: 2;
    color: #fff;
}

/* One-line production process band. */
.rs-enterprise-service-band {
    height: 77px;
    padding: 0;
    color: #fff;
    background: var(--rse-deep);
}

.rs-enterprise-service-layout {
    display: grid;
    height: 77px;
    grid-template-columns: 185px minmax(0, 1fr) 142px;
    align-items: center;
    gap: 0;
}

.rs-enterprise-service-layout > h2 {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.22;
}

.rs-enterprise-service-steps {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    border: 0;
}

.rs-enterprise-service-steps li,
.rs-enterprise-service-steps li:first-child {
    position: relative;
    display: grid;
    min-height: 0;
    grid-template-columns: 25px minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    align-items: center;
    padding: 12px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rs-enterprise-service-steps li span {
    grid-row: 1 / -1;
    margin: 0;
    color: #9cc2ff;
    font-size: 20px;
    line-height: 1;
}

.rs-enterprise-service-steps li strong {
    align-self: end;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.rs-enterprise-service-steps li small {
    align-self: start;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.2;
}

.rs-enterprise-service-steps li:not(:last-child)::after {
    right: 8px;
    bottom: 28px;
    font-size: 14px;
}

.rs-enterprise-service-steps {
    list-style: none;
}

.rs-enterprise-service-layout > .rs-button {
    justify-self: end;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
}

/* Partner line. */
.rs-enterprise-ecosystem {
    height: 52px;
    background: #fff;
    border-bottom: 1px solid #dce3eb;
}

.rs-enterprise-ecosystem__inner {
    display: flex;
    height: 52px;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rs-enterprise-ecosystem__inner h2 {
    flex: 0 0 auto;
    margin: 0;
    color: #0b234b;
    font-size: 18px;
    font-weight: 800;
}

.rs-enterprise-ecosystem__items {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 13px;
    color: #162d50;
    font-size: 14px;
    font-weight: 500;
}

.rs-enterprise-ecosystem__items i {
    color: #45698e;
}

/* Compact three-column knowledge row. */
.rs-enterprise-knowledge-list {
    display: grid;
    height: 57px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
}

.rs-enterprise-knowledge-content {
    display: grid;
    height: 57px;
    grid-template-columns: minmax(0, 1fr) 155px;
    gap: 18px;
    align-items: center;
}

.rs-enterprise-knowledge-more {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #15365f;
    border: 1px solid #8ea2bc;
    font-size: 12px;
    font-weight: 500;
}

.rs-enterprise-knowledge-more span {
    font-size: 16px;
}

.rs-enterprise-knowledge-more:hover,
.rs-enterprise-knowledge-more:focus-visible {
    color: #fff;
    background: var(--rse-blue);
    border-color: var(--rse-blue);
}

.rs-enterprise-knowledge-item {
    display: grid;
    min-width: 0;
    height: 57px;
    grid-template-columns: 84px minmax(0, 1fr) 22px;
    gap: 10px;
    align-items: center;
    padding: 0;
    border-bottom: 0;
}

.rs-enterprise-knowledge-item__thumb {
    display: block;
    width: 84px;
    height: 54px;
    overflow: hidden;
    background-image: url("../images/enterprise-hero.png");
    background-repeat: no-repeat;
    background-size: 230% auto;
}

.rs-enterprise-knowledge-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-enterprise-knowledge-item__thumb--placeholder,
.rs-enterprise-knowledge-item__thumb--one { background-position: 25% 57%; }
.rs-enterprise-knowledge-item__thumb--two { background-position: 67% 45%; }
.rs-enterprise-knowledge-item__thumb--three { background-position: 92% 53%; }

.rs-enterprise-knowledge-item__content {
    min-width: 0;
}

.rs-enterprise-knowledge-item__content .rs-card__label,
.rs-enterprise-knowledge-item__content p {
    display: none;
}

.rs-enterprise-knowledge-item__content h3 {
    overflow: hidden;
    margin: 0;
    color: #0d2750;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-enterprise-knowledge-item__arrow {
    width: 21px;
    height: 21px;
    color: #123e7a;
    border: 0;
    border-radius: 0;
    font-size: 18px;
}

/* Visible viewport ends at the contact CTA on the reference. */
.rs-enterprise-home + .rs-site-footer .rs-contact-band {
    height: 84px;
    min-height: 84px;
    background: linear-gradient(105deg, #061c3c 0%, #073777 62%, #0b498a 100%);
}

.rs-enterprise-home + .rs-site-footer .rs-contact-band__inner {
    position: relative;
    display: flex;
    height: 84px;
    min-height: 84px;
    align-items: center;
    padding: 0;
    gap: 88px;
}

.rs-contact-band__badge {
    display: inline-flex;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1768f5;
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
}

.rs-enterprise-home + .rs-site-footer .rs-contact-band h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rs-enterprise-home + .rs-site-footer .rs-contact-band p:last-child {
    display: block;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.35;
}

.rs-enterprise-home + .rs-site-footer .rs-contact-band .rs-button {
    min-width: 163px;
    min-height: 39px;
    margin-left: auto;
    padding: 8px 16px;
    font-size: 12px;
}

@media (max-width: 900px) {
    .rs-enterprise-hero,
    .rs-enterprise-hero__grid {
        height: auto;
        min-height: 0;
    }

    .rs-enterprise-hero__grid {
        display: flex;
        flex-direction: column;
    }

    .rs-enterprise-hero__visual {
        position: absolute;
        min-height: 430px;
    }

    .rs-enterprise-hero__copy {
        min-height: 430px;
        padding: 58px 22px 52px;
    }

    .rs-enterprise-hero__copy h1 {
        font-size: clamp(34px, 7vw, 47px);
        white-space: normal;
    }

    .rs-enterprise-hero__subtitle {
        font-size: 17px;
    }

    .rs-enterprise-trust {
        height: auto;
        margin-top: 0;
    }

    .rs-enterprise-trust__grid {
        height: auto;
    }

    .rs-enterprise-section--products,
    .rs-enterprise-section--solutions,
    .rs-enterprise-section--knowledge {
        height: auto;
        padding: 54px 0 60px;
    }

    .rs-enterprise-section__layout {
        height: auto;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rs-enterprise-knowledge-content {
        height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rs-enterprise-knowledge-more {
        justify-self: start;
        padding: 8px 18px;
    }

    .rs-enterprise-heading {
        padding-top: 0;
    }

    .rs-enterprise-product-grid,
    .rs-enterprise-solution-grid,
    .rs-enterprise-knowledge-list {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-enterprise-product-grid {
        grid-auto-rows: 130px;
    }

    .rs-enterprise-solution-grid {
        grid-auto-rows: 113px;
    }

    .rs-enterprise-knowledge-list {
        grid-auto-rows: 57px;
    }

    .rs-enterprise-service-band,
    .rs-enterprise-service-layout {
        height: auto;
    }

    .rs-enterprise-service-layout {
        display: block;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .rs-enterprise-service-layout > h2 {
        margin-bottom: 24px;
    }

    .rs-enterprise-service-steps {
        height: auto;
        grid-template-columns: 1fr;
    }

    .rs-enterprise-service-steps li,
    .rs-enterprise-service-steps li:first-child {
        min-height: 70px;
        padding: 14px 0 14px 32px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .rs-enterprise-service-steps li span {
        position: absolute;
        left: 0;
    }

    .rs-enterprise-service-steps li:not(:last-child)::after {
        top: 27px;
        right: 3px;
        bottom: auto;
    }

    .rs-enterprise-service-layout > .rs-button {
        margin-top: 24px;
    }

    .rs-enterprise-ecosystem,
    .rs-enterprise-ecosystem__inner {
        height: auto;
        min-height: 0;
    }

    .rs-enterprise-ecosystem__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .rs-enterprise-ecosystem__items {
        justify-content: flex-start;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band,
    .rs-enterprise-home + .rs-site-footer .rs-contact-band__inner {
        height: auto;
        min-height: 0;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band .rs-button {
        margin-left: 0;
    }
}

@media (max-width: 620px) {
    .rs-enterprise-product-grid,
    .rs-enterprise-solution-grid,
    .rs-enterprise-knowledge-list {
        grid-template-columns: 1fr;
    }

    .rs-enterprise-hero__copy {
        min-height: 440px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .rs-enterprise-trust__grid {
        grid-template-columns: 1fr;
    }

    .rs-enterprise-ecosystem__items {
        gap: 8px;
        font-size: 12px;
    }

    .rs-enterprise-ecosystem__items i {
        display: none;
    }
}

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

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

/* Localized, source-verified content imagery. */
.rs-static-card__media--one {
    background-image: url("../images/source-content/epoxy-sealant.jpg");
    background-position: center;
    background-size: cover;
}

.rs-static-card__media--two {
    background-image: url("../images/source-content/pur-structural-adhesive.png");
    background-position: center;
    background-size: cover;
}

.rs-static-card__media--three {
    background-image: url("../images/source-content/epoxy-potting-compound.png");
    background-position: center;
    background-size: cover;
}

.rs-static-card__media--four {
    background-image: url("../images/source-content/thermal-management-material.jpg");
    background-position: center;
    background-size: cover;
}

.rs-static-card__media--five {
    background-image: url("../images/source-content/conformal-coating.jpg");
    background-position: center;
    background-size: cover;
}

.rs-static-card__media--six {
    background-image: url("../images/source-content/uv-adhesive.png");
    background-position: center;
    background-size: cover;
}

.rs-static-card--solution .rs-static-card__media--auto {
    background-image: url("../images/enterprise-hero.png");
    background-position: 72% 57%;
    background-size: 210% auto;
}

.rs-static-card--solution .rs-static-card__media--motor {
    background-image: url("../images/source-content/conformal-coating.jpg");
    background-position: center;
    background-size: cover;
}

.rs-static-card--solution .rs-static-card__media--five-g {
    background-image: url("../images/source-content/epoxy-potting-compound.png");
    background-position: center;
    background-size: cover;
}

.rs-static-card--solution .rs-static-card__media--factory {
    background-image: url("../images/source-content/thermal-management-material.jpg");
    background-position: center;
    background-size: cover;
}

.rs-enterprise-knowledge-item__thumb--one {
    background-image: url("../images/source-content/structural-bonding-faq.png");
    background-position: center;
    background-size: cover;
}

.rs-enterprise-knowledge-item__thumb--two {
    background-image: url("../images/source-content/adhesive-sealant-faq.jpg");
    background-position: center;
    background-size: cover;
}

.rs-enterprise-knowledge-item__thumb--three {
    background-image: url("../images/source-content/potting-material-faq.jpg");
    background-position: center;
    background-size: cover;
}

/* About and contact page templates. */
.rs-enterprise-detail-page {
    min-height: calc(100vh - 68px);
    padding: 72px 0 100px;
    color: #0b234b;
    background: #f5f7fa;
}

.rs-enterprise-detail-hero {
    max-width: 780px;
    padding-bottom: 42px;
    border-bottom: 1px solid #d7e0ea;
}

.rs-enterprise-detail-hero h1 {
    margin: 14px 0 12px;
    color: #0b234b;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.13;
}

.rs-enterprise-detail-hero > p:last-child {
    margin: 0;
    color: #52647c;
    font-size: 18px;
}

.rs-enterprise-detail-grid,
.rs-enterprise-contact-grid {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.rs-enterprise-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-enterprise-detail-panel {
    min-height: 210px;
    padding: 28px 30px 30px;
    background: #fff;
    border: 1px solid #dbe3ec;
}

.rs-enterprise-detail-panel--wide {
    grid-column: 1 / -1;
}

.rs-enterprise-detail-panel h2,
.rs-enterprise-contact-card h2 {
    margin: 14px 0 13px;
    color: #0b234b;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.rs-enterprise-detail-panel p:not(.rs-eyebrow),
.rs-enterprise-contact-card p:not(.rs-eyebrow) {
    max-width: 720px;
    margin: 0 0 11px;
    color: #52647c;
    font-size: 15px;
    line-height: 1.8;
}

.rs-enterprise-detail-list {
    margin: 18px 0 0;
    padding: 0;
    color: #52647c;
    font-size: 15px;
    line-height: 1.9;
    list-style: none;
}

.rs-enterprise-detail-list li {
    position: relative;
    padding-left: 20px;
}

.rs-enterprise-detail-list li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    background: #1768f5;
    content: "";
}

.rs-enterprise-detail-motto {
    color: #0b234b !important;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1.8 !important;
}

.rs-enterprise-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 19px;
}

.rs-enterprise-detail-chips a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 14px;
    color: #15365f;
    background: #f2f6fb;
    border: 1px solid #cbd9e8;
    font-size: 13px;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.rs-enterprise-detail-chips a:hover,
.rs-enterprise-detail-chips a:focus-visible {
    color: #fff;
    background: #1768f5;
    border-color: #1768f5;
}

.rs-enterprise-detail-custom {
    margin-top: 32px;
    padding: 34px 36px;
    background: #fff;
    border: 1px solid #dbe3ec;
}

.rs-enterprise-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-enterprise-contact-card {
    min-height: 270px;
    padding: 30px;
    background: #fff;
    border: 1px solid #dbe3ec;
}

.rs-enterprise-contact-card--primary {
    color: #fff;
    background: #062454;
    border-color: #062454;
}

.rs-enterprise-contact-card--primary h2,
.rs-enterprise-contact-card--primary p:not(.rs-eyebrow) {
    color: #fff;
}

.rs-enterprise-contact-card--primary h2 {
    margin-top: 28px;
    font-size: clamp(29px, 2.8vw, 42px);
    letter-spacing: 0.02em;
}

.rs-enterprise-contact-card--primary h2 a {
    color: inherit;
}

.rs-enterprise-contact-card--primary .rs-eyebrow {
    color: #a9c9ff;
}

.rs-enterprise-contact-card--primary .rs-button {
    margin-top: 23px;
}

.rs-enterprise-contact-card h2 {
    margin-top: 25px;
}

.rs-enterprise-contact-card a:not(.rs-button) {
    color: #174e9a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rs-enterprise-contact-card--primary h2 a:not(.rs-button) {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 900px) {
    .rs-enterprise-detail-page {
        padding: 54px 0 72px;
    }

    .rs-enterprise-detail-grid,
    .rs-enterprise-contact-grid {
        grid-template-columns: 1fr;
    }

    .rs-enterprise-detail-panel--wide {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .rs-enterprise-detail-hero h1 {
        font-size: 43px;
    }

    .rs-enterprise-detail-panel,
    .rs-enterprise-contact-card {
        min-height: 0;
        padding: 23px 20px 25px;
    }

    .rs-enterprise-detail-custom {
        padding: 24px 20px;
    }
}

/* Compact mobile composition (390px / 430px). */
@media (max-width: 620px) {
    .rs-site-header,
    .rs-header__inner {
        min-height: 68px;
    }

    .rs-header__inner {
        gap: 10px;
    }

    .rs-brand__name {
        font-size: 16px;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    .rs-brand__name span {
        letter-spacing: 0;
    }

    .rs-menu-toggle {
        min-width: 48px;
        min-height: 48px;
        justify-content: flex-end;
    }

    .rs-navigation {
        padding-right: 18px;
        padding-left: 18px;
    }

    .rs-enterprise-hero,
    .rs-enterprise-hero__grid {
        height: 380px;
        min-height: 380px;
    }

    .rs-enterprise-hero__visual {
        min-height: 380px;
    }

    .rs-enterprise-hero__copy {
        height: 380px;
        min-height: 0;
        padding: 42px 18px 28px;
    }

    .rs-enterprise-hero__copy h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.23;
        white-space: normal;
    }

    .rs-enterprise-hero__subtitle {
        max-width: 100%;
        margin-top: 9px;
        font-size: 16px;
        line-height: 1.5;
    }

    .rs-enterprise-hero__actions {
        gap: 10px;
        margin-top: 22px;
    }

    .rs-enterprise-hero__actions .rs-button {
        min-height: 44px;
        padding: 9px 15px;
        font-size: 13px;
    }

    .rs-enterprise-trust {
        height: 132px;
        margin-top: 0;
    }

    .rs-enterprise-trust__grid {
        height: 132px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-enterprise-trust__item,
    .rs-enterprise-trust__item:nth-child(-n + 2) {
        min-height: 65px;
        padding: 11px 12px;
        gap: 9px;
        border-right: 1px solid #dce4ed;
        border-bottom: 1px solid #dce4ed;
    }

    .rs-enterprise-trust__item:nth-child(even) {
        border-right: 0;
    }

    .rs-enterprise-trust__item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .rs-enterprise-trust__icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .rs-enterprise-trust__item h2 {
        font-size: 14px;
        white-space: nowrap;
    }

    .rs-enterprise-section--products,
    .rs-enterprise-section--solutions {
        padding: 28px 0 32px;
    }

    .rs-enterprise-section--knowledge {
        padding: 30px 0 34px;
    }

    .rs-enterprise-section__layout {
        gap: 18px;
    }

    .rs-enterprise-heading h2 {
        font-size: 28px;
    }

    .rs-enterprise-product-grid,
    .rs-enterprise-solution-grid {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .rs-enterprise-product-grid {
        grid-auto-rows: 130px;
    }

    .rs-enterprise-solution-grid {
        grid-auto-rows: 113px;
    }

    .rs-enterprise-home .rs-content-card--product,
    .rs-static-card--product {
        height: 130px;
        min-height: 130px;
    }

    .rs-enterprise-home .rs-content-card--product .rs-content-card__media,
    .rs-static-card--product .rs-static-card__media {
        height: 89px;
        min-height: 89px;
    }

    .rs-enterprise-home .rs-content-card--product h3,
    .rs-static-card--product h3 {
        padding-right: 22px;
        font-size: 13px;
    }

    .rs-enterprise-home .rs-content-card--solution,
    .rs-static-card--solution {
        height: 113px;
        min-height: 113px;
    }

    .rs-enterprise-home .rs-content-card--solution h3,
    .rs-static-card--solution h3 {
        right: 29px;
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rs-enterprise-service-band {
        height: auto;
    }

    .rs-enterprise-service-layout {
        display: block;
        height: auto;
        padding-top: 24px;
        padding-bottom: 26px;
    }

    .rs-enterprise-service-layout > h2 {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .rs-enterprise-service-steps {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .rs-enterprise-service-steps li,
    .rs-enterprise-service-steps li:first-child {
        min-height: 82px;
        grid-template-columns: 25px minmax(0, 1fr);
        grid-template-rows: 1fr 1fr;
        padding: 12px 10px 12px 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .rs-enterprise-service-steps li:nth-child(even) {
        border-right: 0;
    }

    .rs-enterprise-service-steps li:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }

    .rs-enterprise-service-steps li span {
        position: static;
        grid-row: 1 / -1;
        font-size: 18px;
    }

    .rs-enterprise-service-steps li strong {
        font-size: 13px;
    }

    .rs-enterprise-service-steps li small {
        font-size: 10px;
    }

    .rs-enterprise-service-steps li:not(:last-child)::after {
        top: 34px;
        right: 5px;
        bottom: auto;
        font-size: 12px;
    }

    .rs-enterprise-service-layout > .rs-button {
        min-height: 44px;
        margin-top: 16px;
        padding: 9px 16px;
    }

    .rs-enterprise-ecosystem__inner {
        gap: 9px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .rs-enterprise-ecosystem__inner h2 {
        font-size: 16px;
    }

    .rs-enterprise-ecosystem__items {
        display: flex;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 5px 9px;
        font-size: 11px;
        line-height: 1.35;
    }

    .rs-enterprise-ecosystem__items i {
        display: none;
    }

    .rs-enterprise-knowledge-content {
        gap: 16px;
    }

    .rs-enterprise-knowledge-list {
        height: auto;
        grid-template-columns: 1fr;
        grid-auto-rows: 57px;
        gap: 12px;
    }

    .rs-enterprise-knowledge-item {
        height: 57px;
        grid-template-columns: 74px minmax(0, 1fr) 22px;
        gap: 9px;
    }

    .rs-enterprise-knowledge-item__thumb {
        width: 74px;
        height: 54px;
    }

    .rs-enterprise-knowledge-item__content h3 {
        font-size: 13px;
    }

    .rs-enterprise-knowledge-more {
        width: max-content;
        min-height: 44px;
        padding: 9px 17px;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band__inner {
        gap: 14px;
        padding-top: 28px;
        padding-bottom: 30px;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .rs-enterprise-home + .rs-site-footer .rs-contact-band .rs-button {
        min-height: 44px;
        margin-left: 0;
    }

    .rs-footer-base__grid {
        gap: 18px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .rs-footer-base__meta {
        font-size: 11px;
        text-align: left;
    }

    .rs-enterprise-detail-page {
        min-height: 0;
        padding: 42px 0 58px;
    }

    .rs-enterprise-detail-hero {
        padding-bottom: 28px;
    }

    .rs-enterprise-detail-hero h1 {
        margin-top: 11px;
        font-size: 38px;
    }

    .rs-enterprise-detail-hero > p:last-child {
        font-size: 16px;
    }

    .rs-enterprise-detail-grid,
    .rs-enterprise-contact-grid {
        gap: 11px;
        margin-top: 20px;
    }

    .rs-enterprise-detail-panel,
    .rs-enterprise-contact-card {
        padding: 21px 18px 23px;
    }

    .rs-enterprise-detail-panel h2,
    .rs-enterprise-contact-card h2 {
        margin-top: 11px;
        font-size: 22px;
    }

    .rs-enterprise-detail-panel p:not(.rs-eyebrow),
    .rs-enterprise-contact-card p:not(.rs-eyebrow),
    .rs-enterprise-detail-list {
        font-size: 14px;
    }

    .rs-enterprise-detail-motto {
        font-size: 21px !important;
    }

    .rs-enterprise-detail-chips {
        gap: 8px;
        margin-top: 14px;
    }

    .rs-enterprise-detail-chips a {
        min-height: 44px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .rs-enterprise-contact-card--primary h2 {
        margin-top: 20px;
        font-size: 30px;
    }

    .rs-enterprise-contact-card--primary .rs-button {
        min-height: 44px;
        margin-top: 17px;
    }
}

@media (max-width: 430px) {
    .rs-enterprise-hero__copy h1 {
        font-size: 33px;
    }

    .rs-enterprise-hero__actions .rs-button {
        padding-right: 12px;
        padding-left: 12px;
    }

    .rs-enterprise-trust__item {
        padding-right: 9px;
        padding-left: 9px;
    }

    .rs-enterprise-trust__item h2 {
        font-size: 13px;
    }
}
