/*
Theme Name: Silverbridge Partners
Theme URI: https://silverbridgepartners.com/
Author: Silverbridge Partners
Description: A modern, white WordPress theme for Silverbridge Partners with a refinery hero, responsive layouts, and security-minded template handling.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: silverbridge
Tags: custom-logo, custom-menu, featured-images, full-width-template, threaded-comments
*/

:root {
  --sb-ink: #17212f;
  --sb-muted: #667085;
  --sb-line: #d9e1ea;
  --sb-soft: #f4f7fa;
  --sb-white: #ffffff;
  --sb-blue: #274c77;
  --sb-teal: #1f7a76;
  --sb-gold: #c79343;
  --sb-shadow: 0 24px 70px rgba(23, 33, 47, 0.12);
  --sb-radius: 8px;
  --sb-max: 1180px;
  --sb-sidebar: 320px;
  --sb-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  color: var(--sb-ink);
  background: var(--sb-white);
  font-family: var(--sb-font);
  font-size: 16px;
  line-height: 1.6;
}

.site-main,
.content-area {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 122, 118, 0.35);
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: var(--sb-white);
  background: var(--sb-blue);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
  box-shadow: 0 8px 24px rgba(23, 33, 47, 0.04);
}

.site-header__inner,
.site-footer__inner,
.container {
  width: min(calc(100% - 40px), var(--sb-max));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-branding img,
.custom-logo {
  width: 188px;
  max-height: 92px;
  object-fit: contain;
  object-position: center top;
}

.site-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-menu,
.primary-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #29384a;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.primary-menu a:hover {
  color: var(--sb-blue);
  background: var(--sb-soft);
}

.primary-menu__account {
  min-width: 0;
}

.site-user-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  max-width: 100%;
  padding: 0 12px;
  overflow: hidden;
  color: #17212f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
  background: #f6f8fb;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 6px;
}

.site-user-name:hover,
.site-user-name:focus {
  color: var(--sb-blue);
  background: var(--sb-soft);
}

.primary-menu a.site-logout-link {
  color: var(--sb-blue);
  border: 1px solid rgba(39, 76, 119, 0.18);
}

.primary-menu a.site-logout-link:hover {
  color: var(--sb-white);
  background: var(--sb-blue);
}

.header-cta,
.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--sb-white);
  font-weight: 800;
  text-decoration: none;
  background: var(--sb-blue);
  border: 1px solid var(--sb-blue);
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover,
.button:hover,
.wp-block-button__link:hover {
  background: #1f3d60;
  box-shadow: 0 14px 28px rgba(39, 76, 119, 0.2);
  transform: translateY(-1px);
}

.button--light {
  color: var(--sb-blue);
  background: var(--sb-white);
  border-color: var(--sb-white);
}

.button--ghost {
  color: var(--sb-ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--sb-line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--sb-ink);
  background: var(--sb-white);
  border: 1px solid var(--sb-line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.sidebar-market {
  display: none;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }
}

@media (min-width: 981px) {
  body {
    padding-left: var(--sb-sidebar);
  }

  .site-header {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--sb-sidebar);
    border-right: 1px solid rgba(217, 225, 234, 0.9);
    border-bottom: 0;
    box-shadow: 12px 0 32px rgba(23, 33, 47, 0.06);
  }

  .site-header__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 24px 18px 24px;
    margin: 0;
    gap: 38px;
  }

  body.admin-bar .site-header__inner {
    height: calc(100vh - 32px);
    min-height: calc(100vh - 32px);
  }

  .site-branding {
    justify-content: center;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(217, 225, 234, 0.75);
  }

  .site-branding a {
    justify-content: center;
    width: 100%;
    height: 238px;
    overflow: visible;
  }

  .site-branding img,
  .custom-logo {
    width: min(100%, 286px);
    max-height: 238px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .site-nav {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 28px;
  }

  .primary-menu,
  .primary-menu ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .primary-menu a {
    position: relative;
    justify-content: flex-start;
    width: 100%;
    min-height: 50px;
    padding: 0 34px 0 12px;
    color: #17212f;
    font-size: 0.95rem;
    font-weight: 750;
    border-radius: 8px;
  }

  .site-user-name {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .primary-menu a::after {
    position: absolute;
    right: 12px;
    color: var(--sb-teal);
    font-size: 1.2rem;
    line-height: 1;
    content: "";
  }

  .primary-menu a.has-arrow::after {
    content: "\203a";
  }

  .primary-menu a:hover {
    color: var(--sb-blue);
    background: #f6f8fb;
  }

  .header-cta {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    margin-top: auto;
    font-size: 0.84rem;
    border-radius: 8px;
  }

  .sidebar-market {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    color: #344054;
  }

  .sidebar-market time {
    display: block;
    padding-bottom: 6px;
    margin-bottom: 9px;
    color: #29384a;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    border-bottom: 2px solid #3d4854;
  }

  .sidebar-market__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 13px;
  }

  .sidebar-market__item {
    min-width: 0;
    line-height: 1.12;
  }

  .sidebar-market__item b,
  .sidebar-market__item strong,
  .sidebar-market__item small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sidebar-market__item b {
    color: var(--sb-blue);
    font-size: 0.62rem;
    font-weight: 900;
  }

  .sidebar-market__item strong {
    margin-top: 3px;
    color: #17212f;
    font-size: 0.68rem;
    font-weight: 800;
  }

  .sidebar-market.is-loading .sidebar-market__item strong {
    color: var(--sb-muted);
    font-size: 0.58rem;
    letter-spacing: 0;
  }

  .sidebar-market__item small {
    margin-top: 3px;
    font-size: 0.58rem;
    font-weight: 900;
  }

  .sidebar-market__item small.is-up {
    color: #198f67;
  }

  .sidebar-market__item small.is-down {
    color: #c54141;
  }

  body.pdf-library-top-header {
    padding-left: 0;
  }

  body.pdf-library-top-header .site-header {
    position: sticky;
    top: 0;
    bottom: auto;
    left: auto;
    width: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 225, 234, 0.9);
    box-shadow: 0 8px 24px rgba(23, 33, 47, 0.04);
  }

  body.admin-bar.pdf-library-top-header .site-header {
    top: 32px;
  }

  body.pdf-library-top-header .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--sb-max));
    height: auto;
    min-height: 82px;
    padding: 0;
    margin-inline: auto;
    gap: 24px;
  }

  body.admin-bar.pdf-library-top-header .site-header__inner {
    height: auto;
    min-height: 82px;
  }

  body.pdf-library-top-header .site-branding {
    width: auto;
    padding: 0;
    border-bottom: 0;
  }

  body.pdf-library-top-header .site-branding a {
    width: auto;
    height: auto;
    overflow: visible;
  }

  body.pdf-library-top-header .site-branding img,
  body.pdf-library-top-header .custom-logo {
    width: 188px;
    max-height: 92px;
    object-position: center top;
  }

  body.pdf-library-top-header .site-nav {
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 28px;
  }

  body.pdf-library-top-header .primary-menu,
  body.pdf-library-top-header .primary-menu ul {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 8px;
  }

  body.pdf-library-top-header .primary-menu a {
    justify-content: center;
    width: auto;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: 6px;
  }

  body.pdf-library-top-header .primary-menu a::after,
  body.pdf-library-top-header .primary-menu a.has-arrow::after {
    content: none;
  }

  body.pdf-library-top-header .sidebar-market {
    display: none;
  }

  .western-hero,
  .western-hero__inner {
    min-height: 100vh;
  }

  .hero,
  .hero__inner {
    min-height: 100vh;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--sb-ink);
  background-position: center bottom;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 40%, rgba(255, 255, 255, 0.18) 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.86) 100%);
}

.hero__inner {
  width: min(calc(100% - 40px), var(--sb-max));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sb-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--sb-gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.9rem, 6.8vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #344054;
  font-size: clamp(1.05rem, 2.3vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 64px;
  overflow: hidden;
  color: var(--sb-ink);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--sb-radius);
  box-shadow: var(--sb-shadow);
}

.hero__stat {
  min-height: 112px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.hero__stat strong {
  display: block;
  color: var(--sb-blue);
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero__stat span {
  display: block;
  margin-top: 6px;
  color: var(--sb-muted);
  font-size: 0.9rem;
}

.hero--oilfield {
  color: var(--sb-white);
  background-position: center;
}

.hero--oilfield::before {
  background:
    linear-gradient(90deg, rgba(10, 17, 26, 0.18) 0%, rgba(10, 17, 26, 0.22) 42%, rgba(10, 17, 26, 0.78) 100%),
    linear-gradient(180deg, rgba(10, 17, 26, 0.04) 0%, rgba(10, 17, 26, 0.6) 100%);
}

.hero--oilfield .hero__content {
  max-width: 650px;
  margin-left: auto;
  text-shadow: 0 2px 22px rgba(10, 17, 26, 0.36);
}

.hero--oilfield .eyebrow,
.hero--oilfield p {
  color: rgba(255, 255, 255, 0.9);
}

.hero--oilfield .hero__stats {
  margin-left: auto;
}

.western-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  color: var(--sb-white);
  background: #101820;
}

.western-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(1.08) saturate(1.18) contrast(1.04);
  object-fit: cover;
  object-position: center center;
}

.western-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0) 0%, rgba(16, 24, 32, 0.04) 36%, rgba(16, 24, 32, 0.62) 72%, rgba(16, 24, 32, 0.84) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0) 0%, rgba(16, 24, 32, 0.12) 62%, rgba(16, 24, 32, 0.34) 100%);
}

.western-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: min(calc(100% - 40px), var(--sb-max));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 72px 0;
}

.western-hero__content {
  width: min(680px, 100%);
  margin-left: auto;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.western-hero .western-hero__kicker {
  display: table;
  align-items: center;
  margin: 0 auto 22px;
  padding-bottom: 8px;
  transform: translateX(-10px);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  border-bottom: 3px solid var(--sb-gold);
  text-transform: uppercase;
}

.western-hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.85rem, 5.2vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.western-hero h1 span {
  display: block;
}

.western-hero p {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

@media (min-width: 981px) {
  .western-hero,
  .western-hero__inner {
    min-height: 100vh;
  }
}

.section--simple {
  padding-top: 84px;
}

.simple-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.market-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 26px;
}

.market-price {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--sb-line);
  border-left: 5px solid var(--sb-gold);
  border-radius: var(--sb-radius);
  box-shadow: 0 16px 34px rgba(23, 33, 47, 0.08);
}

.market-price span,
.market-price small {
  display: block;
}

.market-price span {
  color: var(--sb-muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-price strong {
  display: block;
  margin-top: 8px;
  color: var(--sb-ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.market-price small {
  margin-top: 10px;
  color: var(--sb-muted);
  font-size: 0.95rem;
}

.market-prices--notice {
  display: block;
  padding: 16px 18px;
  color: var(--sb-muted);
  background: #fff7e8;
  border: 1px solid #f0d8aa;
  border-radius: var(--sb-radius);
}

.market-prices--notice p {
  margin: 0;
}

.simple-process {
  padding: 82px 0;
  color: var(--sb-white);
  background: #17212f;
}

.simple-process__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.simple-process h2,
.simple-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.simple-process__steps {
  display: grid;
  gap: 18px;
}

.simple-process__steps div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sb-radius);
}

.simple-process__steps strong,
.simple-process__steps span {
  display: block;
}

.simple-process__steps strong {
  margin-bottom: 6px;
  color: var(--sb-white);
  font-size: 1.05rem;
}

.simple-process__steps span {
  color: rgba(255, 255, 255, 0.76);
}

.simple-cta {
  padding: 70px 0;
  background: var(--sb-soft);
}

.simple-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.simple-cta__inner > div {
  max-width: 740px;
}

.section {
  padding: 92px 0;
}

.section.section--simple {
  padding-top: 84px;
}

.section--soft {
  background: var(--sb-soft);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--sb-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.interests-page h1,
.entry-title {
  margin: 0;
  color: var(--sb-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-header p {
  margin: 0;
  color: var(--sb-muted);
  font-size: 1.05rem;
}

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

.capability {
  min-height: 260px;
  padding: 26px;
  background: var(--sb-white);
  border: 1px solid var(--sb-line);
  border-radius: var(--sb-radius);
}

.capability__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--sb-blue);
  font-weight: 900;
  background: #edf3f8;
  border-radius: 6px;
}

.capability h3,
.product-card h2,
.product-card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  color: var(--sb-ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.capability p,
.product-card p,
.contact-panel p {
  margin: 0;
  color: var(--sb-muted);
}

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

.interests-page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 46%, #ffffff 100%);
}

.section.section--simple.interests-page {
  padding-top: 44px;
  padding-bottom: 52px;
}

.interests-page .container {
  width: min(calc(100% - 40px), 1120px);
}

.interests-page__intro {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.interests-page__heading {
  margin: 0;
  color: var(--sb-ink);
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.interests-page__intro p:not(.section-kicker) {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--sb-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.interests-page__intro .section-kicker {
  margin-bottom: 8px;
  color: var(--sb-gold);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.interest-card {
  position: relative;
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  color: var(--sb-ink);
  background: var(--sb-white);
  border: 1px solid rgba(23, 33, 47, 0.12);
  border-radius: var(--sb-radius);
  box-shadow: 0 22px 54px rgba(23, 33, 47, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.interest-card::before {
  position: absolute;
  content: "";
  inset: 0 0 auto 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--sb-gold), var(--sb-teal));
}

.interest-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  background: #eef2f5;
}

.interest-card--empty {
  padding: 34px;
}

.interest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(23, 33, 47, 0.18);
}

.interest-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 14px 11px;
  max-width: 100%;
  color: var(--sb-ink);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
}

.interest-card--empty h2 {
  padding: 0;
}

.product-card {
  overflow: hidden;
  background: var(--sb-white);
  border: 1px solid var(--sb-line);
  border-radius: var(--sb-radius);
  box-shadow: 0 16px 36px rgba(23, 33, 47, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body {
  padding: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.split__image {
  overflow: hidden;
  border-radius: var(--sb-radius);
  box-shadow: var(--sb-shadow);
}

.split__image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--sb-muted);
}

.check-list li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--sb-white);
  font-size: 0.75rem;
  font-weight: 900;
  content: "✓";
  background: var(--sb-teal);
  border-radius: 50%;
}

.contact-band {
  color: var(--sb-white);
  background: linear-gradient(135deg, #17212f 0%, #274c77 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.contact-band h2,
.contact-band p {
  color: var(--sb-white);
}

.contact-band p {
  max-width: 660px;
  margin: 18px 0 0;
  opacity: 0.88;
}

.contact-panel {
  padding: 28px;
  color: var(--sb-ink);
  background: var(--sb-white);
  border-radius: var(--sb-radius);
}

.contact-panel a {
  color: var(--sb-blue);
  font-weight: 800;
}

.content-area {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 72px 0;
}

.entry-header {
  margin-bottom: 28px;
}

.entry-meta,
.entry-footer {
  color: var(--sb-muted);
  font-size: 0.94rem;
}

.entry-content {
  color: #344054;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content img {
  border-radius: var(--sb-radius);
}

.posts-list {
  display: grid;
  gap: 34px;
}

.post-summary {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--sb-line);
}

.post-summary h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.12;
}

.pagination {
  margin-top: 42px;
}

.site-footer {
  color: #dce5ee;
  background: #111925;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.site-footer p {
  margin: 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu a {
  color: #dce5ee;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--sb-white);
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    box-shadow: var(--sb-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .primary-menu,
  .primary-menu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-menu a,
  .site-user-name,
  .header-cta {
    justify-content: center;
    width: 100%;
  }

  .section-header,
  .split,
  .contact-grid,
  .simple-process__grid {
    grid-template-columns: 1fr;
  }

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

  .western-hero__content {
    margin-left: 0;
  }

  .capability-grid,
  .interest-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .site-footer__inner,
  .container,
  .hero__inner,
  .content-area {
    width: min(calc(100% - 28px), var(--sb-max));
  }

  .site-header__inner {
    min-height: 72px;
  }

  .western-hero,
  .hero {
    min-height: calc(100vh - 72px);
  }

  .western-hero__inner {
    width: min(calc(100% - 28px), var(--sb-max));
    min-height: calc(100vh - 72px);
    padding: 56px 0;
  }

  .western-hero__shade {
    background:
      linear-gradient(90deg, rgba(16, 24, 32, 0.5) 0%, rgba(16, 24, 32, 0.22) 48%, rgba(16, 24, 32, 0.62) 100%),
      linear-gradient(180deg, rgba(16, 24, 32, 0.04) 0%, rgba(16, 24, 32, 0.76) 100%);
  }

  .western-hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.65rem);
    line-height: 1.06;
  }

  .hero__inner {
    padding: 74px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero__stats,
  .market-prices,
  .capability-grid,
  .interest-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .interest-card {
    min-height: 180px;
  }

  .section {
    padding: 68px 0;
  }

  .contact-panel {
    padding: 22px;
  }

  .simple-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
