/* =========================================================
   SaturaCorp Holdings — Corporate Stylesheet
   Period reference: Japanese mega-corp websites c. 2008–2012
   (Mitsubishi, Itochu, Marubeni, Hitachi, NEC era)
   ========================================================= */

/* ---------- Reset (modest, period-correct) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { background: #e6e8ec; }
body {
  margin: 0;
  font-family: Verdana, "Lucida Grande", "Hiragino Kaku Gothic ProN",
               "Meiryo", "MS PGothic", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: #2a2f3a;
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #134d8c; text-decoration: underline; }
a:hover { color: #c41e26; text-decoration: underline; }
a:focus-visible { outline: 2px solid #c41e26; outline-offset: 1px; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: bold; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; }
.vh { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ---------- Utility bar ---------- */
.utilbar {
  background: #f2f3f5;
  border-bottom: 1px solid #c8ccd2;
  font-size: 11px;
}
.utilbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 26px;
  flex-wrap: wrap;
  gap: 6px;
}
.utilbar ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.utilbar li + li::before {
  content: "|";
  color: #b0b6bd;
  margin-right: 8px;
}
.utilbar a {
  color: #45506a;
  text-decoration: none;
}
.utilbar a:hover { text-decoration: underline; color: #c41e26; }
.utilbar__lang a[aria-current="page"] { color: #c41e26; font-weight: bold; }
.utilbar__search form { display: flex; gap: 0; align-items: center; }
.utilbar__search input {
  font: inherit;
  font-size: 11px;
  padding: 2px 4px;
  border: 1px solid #9ea4ad;
  background: #fff;
  width: 150px;
  height: 18px;
}
.utilbar__search button {
  font: inherit;
  font-size: 11px;
  padding: 2px 8px;
  height: 20px;
  border: 1px solid #4d6082;
  border-left: none;
  background: linear-gradient(#fafbfd, #d9dee6);
  color: #1f2a3d;
  cursor: pointer;
}

/* ---------- Masthead ---------- */
.masthead {
  background:
    linear-gradient(#ffffff 0%, #eef2f7 55%, #d8dee8 100%);
  border-bottom: 1px solid #b6bdc8;
  box-shadow: inset 0 -1px 0 #ffffff;
}
.masthead__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1c2230;
}
.brand:hover { color: #1c2230; }
.brand__mark { flex: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.01em;
  color: #1c2230;
}
.brand__sub {
  font-size: 10px;
  color: #5a6377;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.brand__jp { color: #8a4b4f; }

/* Stock ticker */
.ticker {
  font-size: 10px;
  border: 1px solid #b6bdc8;
  background: #ffffff;
  width: 580px;
  table-layout: fixed;
}
.ticker__header,
.ticker__price,
.ticker__delta,
.ticker__time {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker__time { white-space: normal; }   /* allow the long source line to wrap if needed */
.ticker th {
  background: linear-gradient(#3b5476, #243958);
  color: #fff;
  font-size: 10px;
  text-align: left;
  padding: 3px 6px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.ticker__jp { color: #d2dbeb; font-weight: normal; font-size: 9px; margin-left: 6px; }
.ticker td {
  padding: 4px 6px;
  border-top: 1px solid #e3e6ec;
}
.ticker__price {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #1c2230;
}
.ticker__delta { text-align: right; font-weight: bold; }
.ticker__delta--up { color: #c41e26; } /* red = up in Japanese convention */
.ticker__time {
  font-size: 9px;
  color: #6c7484;
  background: #f7f8fa;
  font-style: italic;
}

/* ---------- Primary navigation ---------- */
.primary-nav {
  background: linear-gradient(#34496a, #1f3358);
  border-top: 1px solid #4f6589;
  border-bottom: 2px solid #c41e26;
}
.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
}
.primary-nav li { flex: 1 1 0; min-width: 110px; }
.primary-nav li + li { border-left: 1px solid #4a608a; }
.primary-nav a {
  display: block;
  padding: 8px 10px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  border-top: 2px solid transparent;
  transition: background 0.1s linear;
}
.primary-nav a b {
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.primary-nav a em {
  display: block;
  font-style: normal;
  font-size: 9px;
  color: #c5d3e7;
  margin-top: 1px;
  letter-spacing: 0.06em;
}
.primary-nav a:hover {
  background: linear-gradient(#46618a, #2a4571);
  border-top-color: #c41e26;
}
.primary-nav a:hover em { color: #fff; }

/* Sub-nav (dense secondary links) */
.subnav {
  background: linear-gradient(#f5f6f8, #e2e6ec);
  border-bottom: 1px solid #c8ccd2;
  font-size: 11px;
}
.subnav__inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.subnav li {
  padding: 5px 10px;
  border-right: 1px solid #d0d4dc;
}
.subnav li:first-child { padding-left: 0; }
.subnav a {
  color: #2c3a52;
  text-decoration: none;
}
.subnav a:hover { color: #c41e26; text-decoration: underline; }
.subnav__new { background: #fff7e6; }

.badge-new {
  display: inline-block;
  background: #c41e26;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  padding: 1px 5px;
  margin-right: 4px;
  letter-spacing: 0.05em;
  vertical-align: 1px;
  border-radius: 1px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, #dde3ec 0%, #c9d2df 100%);
  border-bottom: 1px solid #aab3c2;
  padding: 20px 0 24px;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.hero__panel {
  background: #ffffff;
  border: 1px solid #aeb6c4;
  padding: 22px 26px;
  position: relative;
  background-image:
    linear-gradient(135deg, #ffffff 0%, #ffffff 70%, #eef2f8 100%);
}
.hero__panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(#c41e26, #8b1318);
}
.hero__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c41e26;
  font-weight: bold;
}
.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
  color: #1c2230;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.hero__jp {
  margin: 0 0 14px;
  font-size: 12px;
  color: #6a7388;
  letter-spacing: 0.04em;
}
.hero__lede {
  font-size: 12px;
  line-height: 1.7;
  color: #3a4154;
  margin: 0 0 16px;
  max-width: 50ch;
}
.hero__cta { margin: 0; }
.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #4d6082;
  margin-right: 6px;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: linear-gradient(#c41e26, #8b1318);
  color: #ffffff;
  border-color: #6e1014;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}
.btn--primary:hover { background: linear-gradient(#d3262e, #a3171c); color: #fff; }
.btn--ghost {
  background: linear-gradient(#fafbfd, #d9dee6);
  color: #1f2a3d;
}
.btn--ghost:hover { background: linear-gradient(#ffffff, #c5cdda); color: #c41e26; }

/* Hero side panel (KPIs) */
.hero__pillars {
  background: #ffffff;
  border: 1px solid #aeb6c4;
  padding: 0;
}
.panel__heading {
  background: linear-gradient(#3b5476, #243958);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  margin: 0;
  border-bottom: 1px solid #1c2e4a;
}
.panel__heading em {
  font-style: normal;
  color: #c5d3e7;
  font-size: 10px;
  font-weight: normal;
  margin-left: 6px;
  letter-spacing: 0.06em;
}
.kpis {
  margin: 0;
  padding: 6px 12px 4px;
  display: grid;
  grid-template-columns: 1fr;
}
.kpis > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dotted #c8ccd2;
}
.kpis > div:last-child { border-bottom: 0; }
.kpis dt {
  font-size: 11px;
  color: #4a546a;
}
.kpis dd {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #1c2230;
  font-variant-numeric: tabular-nums;
}
.panel__foot {
  margin: 0;
  padding: 6px 12px 10px;
  font-size: 11px;
  text-align: right;
}
.panel__foot a { color: #134d8c; }

/* ---------- Grid row: news + IR ---------- */
.grid-row { background: #ffffff; padding: 20px 0; }
.grid-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}

.panel {
  background: #ffffff;
  border: 1px solid #b6bdc8;
}
.panel__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(#f5f6f8, #dfe4ec);
  border-bottom: 1px solid #b6bdc8;
  padding: 5px 12px;
}
.panel__bar--alt {
  background: linear-gradient(#3b5476, #243958);
  border-bottom-color: #1c2e4a;
}
.panel__bar h2 {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #1c2230;
  margin: 0;
  padding-left: 10px;
  position: relative;
}
.panel__bar h2::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 14px;
  background: #c41e26;
}
.panel__bar h2 em {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  color: #5a6377;
  margin-left: 6px;
  letter-spacing: 0.06em;
}
.panel__bar--alt h2 { color: #fff; }
.panel__bar--alt h2::before { background: #ffffff; }
.panel__bar--alt h2 em { color: #c5d3e7; }
.panel__bar-actions {
  margin: 0;
  font-size: 11px;
  color: #5a6377;
}
.panel__bar-actions a { color: #134d8c; }

/* News tabs */
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #c8ccd2;
  background: #f7f8fa;
  font-size: 11px;
}
.news-tabs li {
  padding: 5px 12px;
  border-right: 1px solid #d8dce3;
  color: #45506a;
  cursor: default;
}
.news-tabs li[aria-selected="true"] {
  background: #ffffff;
  color: #c41e26;
  font-weight: bold;
  border-top: 2px solid #c41e26;
  margin-top: -1px;
  padding-top: 4px;
}

/* News table */
.news-table { width: 100%; font-size: 12px; }
.news-table td {
  padding: 7px 10px;
  border-bottom: 1px dotted #c8ccd2;
  vertical-align: top;
}
.news-table tr:last-child td { border-bottom: 0; }
.news-table tr:hover td { background: #fafbfc; }
.news-table__date {
  width: 78px;
  white-space: nowrap;
  color: #5a6377;
  font-variant-numeric: tabular-nums;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}
.news-table__tag { width: 70px; }

.tag {
  display: inline-block;
  font-size: 10px;
  padding: 1px 6px;
  border: 1px solid;
  font-weight: bold;
  letter-spacing: 0.04em;
  min-width: 56px;
  text-align: center;
}
.tag--ir { color: #134d8c; border-color: #134d8c; background: #eaf2fa; }
.tag--press { color: #5d3b8a; border-color: #5d3b8a; background: #f1edf8; }
.tag--prod { color: #1f6b3a; border-color: #1f6b3a; background: #ebf5ee; }
.tag--csr { color: #7a5b00; border-color: #a8801f; background: #fcf6e3; }
.tag--notice { color: #6a6f7a; border-color: #6a6f7a; background: #f1f2f4; }

/* IR quick links */
.ir-quick {
  background: #fff;
  padding: 4px 0;
}
.ir-quick li {
  border-bottom: 1px dotted #c8ccd2;
  font-size: 12px;
}
.ir-quick li:last-child { border-bottom: 0; }
.ir-quick a {
  display: block;
  padding: 7px 12px 7px 14px;
  text-decoration: none;
  color: #1f2a3d;
  position: relative;
}
.ir-quick a:hover { background: #fafbfc; color: #c41e26; }
.ir-quick__ico {
  color: #c41e26;
  margin-right: 6px;
  font-size: 9px;
}
.ir-quick small {
  color: #6c7484;
  font-size: 10px;
}

/* IR tabular */
.ir-tabular {
  border-top: 1px solid #d6dae2;
  padding: 10px 12px 12px;
  background: #f9fafc;
}
.ir-tabular h3 {
  font-size: 11px;
  color: #1c2230;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.ir-tabular table {
  width: 100%;
  font-size: 11px;
  background: #fff;
  border: 1px solid #c8ccd2;
}
.ir-tabular th, .ir-tabular td {
  padding: 4px 6px;
  border-bottom: 1px solid #e3e6ec;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ir-tabular thead th {
  background: linear-gradient(#eef1f6, #dde3ec);
  color: #1c2230;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.ir-tabular tbody th[scope="row"] {
  text-align: left;
  font-weight: normal;
  color: #45506a;
  background: #f7f8fa;
}
.num--up { color: #1f6b3a; font-weight: bold; }
.num--down { color: #c41e26; font-weight: bold; }
.ir-tabular__note {
  font-size: 10px;
  color: #6c7484;
  margin: 6px 0 0;
  font-style: italic;
}

/* IR library preview (Research & Insights block in the sidebar) */
.ir-library-preview {
  border-top: 1px solid #d6dae2;
  padding: 10px 12px 8px;
  background: #f9fafc;
}
.ir-library-preview h3 {
  font-size: 11px;
  color: #1c2230;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}
.ir-library-preview h3 em {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  color: #6c7484;
  margin-left: 6px;
}
.ir-library-preview .ir-quick {
  background: transparent;
  padding: 0;
}
.ir-library-preview .ir-quick li {
  border-bottom: 1px dotted #d6dae2;
}
.ir-library-preview .ir-quick a {
  padding: 6px 4px;
  line-height: 1.4;
}
.ir-quick__meta {
  display: block;
  margin-top: 2px;
  margin-left: 17px;
  color: #6c7484;
  font-size: 10px;
}
.ir-library-preview__more {
  margin: 8px 0 0;
  font-size: 11px;
  text-align: right;
}
.ir-library-preview__more a {
  color: #134d8c;
  text-decoration: none;
}
.ir-library-preview__more a:hover {
  color: #c41e26;
  text-decoration: underline;
}

/* ---------- Businesses ---------- */
.businesses {
  background: linear-gradient(#f5f6f8, #e7ebf1);
  border-top: 1px solid #c8ccd2;
  border-bottom: 1px solid #c8ccd2;
  padding: 24px 0 28px;
}
.section-head {
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #c41e26;
}
.section-head h2,
.section-head__h {
  font-size: 18px;
  color: #1c2230;
  letter-spacing: 0.01em;
  font-family: Georgia, "Times New Roman", serif;
}
.section-head h2 em,
.section-head__h em {
  font-style: normal;
  font-family: Verdana, sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #5a6377;
  margin-left: 8px;
  letter-spacing: 0.06em;
}
.section-head p {
  font-size: 12px;
  color: #45506a;
  margin: 4px 0 0;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #c8ccd2;
  border: 1px solid #c8ccd2;
}
.biz-grid > li {
  background: #ffffff;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f3f5f9 100%);
}
.biz-grid h3 {
  font-size: 12px;
  font-weight: bold;
  color: #1c2230;
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #dee2ea;
}
.biz-grid h3 em {
  font-style: normal;
  font-size: 10px;
  color: #6c7484;
  font-weight: normal;
  display: inline-block;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.biz-num {
  display: inline-block;
  background: #1f3358;
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  padding: 1px 5px;
  margin-right: 6px;
  letter-spacing: 0.04em;
  vertical-align: 1px;
}
.biz-grid p {
  margin: 0 0 10px;
  font-size: 11px;
  color: #45506a;
  flex: 1;
}
.biz-grid a {
  font-size: 11px;
  color: #134d8c;
  text-decoration: none;
}
.biz-grid a:hover { color: #c41e26; text-decoration: underline; }

/* ---------- Group Companies & Affiliates ---------- */
.affiliates {
  background: #f7f8fb;
  border-top: 1px solid #c8ccd2;
  border-bottom: 1px solid #c8ccd2;
  padding: 18px 0 22px;
}
.affiliates .section-head {
  margin-bottom: 12px;
}
.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: #c8ccd2;
  border: 1px solid #c8ccd2;
  margin-top: 10px;
}
.affiliates-grid > li {
  background: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f3f5f9 100%);
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  min-height: 130px;
}
.affiliates-grid h3 {
  font-size: 11px;
  font-weight: bold;
  color: #1c2230;
  margin: 0 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #dee2ea;
}
.affiliates-grid p {
  margin: 0 0 8px;
  font-size: 10.5px;
  color: #45506a;
  line-height: 1.5;
  flex: 1;
}
.affiliates-grid a {
  font-size: 10.5px;
  color: #134d8c;
  text-decoration: none;
}
.affiliates-grid a:hover { color: #c41e26; text-decoration: underline; }

/* ---------- Promo strip ---------- */
.promos {
  background: #ffffff;
  border-bottom: 1px solid #c8ccd2;
  padding: 14px 0 18px;
}
.promos__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.promo {
  display: block;
  text-decoration: none;
  color: #1c2230;
  background: #ffffff;
  border: 1px solid #b6bdc8;
  padding: 10px 12px 12px;
  background-image: linear-gradient(180deg, #fafbfd 0%, #ffffff 30%, #eef2f8 100%);
  position: relative;
  min-height: 110px;
}
.promo:hover {
  border-color: #c41e26;
  color: #1c2230;
}
.promo:hover .promo__title { color: #c41e26; }
.promo__tag {
  display: inline-block;
  font-size: 10px;
  background: #1f3358;
  color: #fff;
  padding: 1px 6px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.promo__title {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.35;
}
.promo__meta {
  display: block;
  font-size: 10px;
  color: #6c7484;
}

/* ---------- Values / message ---------- */
.values {
  background: linear-gradient(#eef2f8, #dde3ec);
  border-top: 1px solid #c8ccd2;
  padding: 24px 0 28px;
}
.values__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.values__msg {
  background: #ffffff;
  border: 1px solid #aeb6c4;
  padding: 18px 22px 20px;
}
.values__msg h2 { margin-bottom: 10px; }
.values__sig-name {
  margin: 6px 0 0;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: bold;
  color: #1c2230;
  font-style: italic;
}
.values__sig-title {
  font-size: 10px;
  color: #6c7484;
  margin: 0 0 12px;
}
.values__msg blockquote {
  margin: 0;
  padding: 10px 14px;
  border-left: 3px solid #c41e26;
  background: #fafbfc;
  font-size: 12px;
  color: #2c3a52;
}
.values__msg blockquote p { margin: 0 0 8px; }
.values__msg blockquote p:last-child { margin-bottom: 0; }
.values__msg blockquote em { color: #8b1318; font-style: italic; }
.values__msg > p:last-of-type { font-size: 11px; margin: 10px 0 0; }

.values__pillars {
  background: #ffffff;
  border: 1px solid #aeb6c4;
  padding: 14px 18px 16px;
}
.values__pillars h3 {
  font-size: 13px;
  color: #1c2230;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 2px solid #c41e26;
  letter-spacing: 0.02em;
}
.values__pillars h3 em {
  font-style: normal;
  font-size: 10px;
  font-weight: normal;
  color: #5a6377;
  margin-left: 6px;
}
.pillars { counter-reset: pill; }
.pillars > li {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dotted #c8ccd2;
}
.pillars > li:last-child { border-bottom: 0; }
.pillars__kanji {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(#c41e26, #8b1318);
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
  font-size: 24px;
  font-weight: bold;
}
.pillars strong {
  font-size: 13px;
  color: #1c2230;
  align-self: end;
}
.pillars p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #45506a;
  line-height: 1.55;
}

/* ---------- Global network ---------- */
.network {
  background: #ffffff;
  padding: 22px 0 26px;
}
.network-table {
  width: 100%;
  font-size: 11px;
  border: 1px solid #c8ccd2;
}
.network-table thead th {
  background: linear-gradient(#3b5476, #243958);
  color: #fff;
  padding: 6px 10px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.04em;
  border-right: 1px solid #4a608a;
}
.network-table tbody th[scope="row"] {
  text-align: left;
  font-weight: bold;
  color: #1c2230;
  background: #f7f8fa;
  padding: 6px 10px;
  border-right: 1px solid #dde2ea;
}
.network-table td {
  padding: 6px 10px;
  border-bottom: 1px solid #e3e6ec;
  border-right: 1px solid #e3e6ec;
  color: #2c3a52;
  font-variant-numeric: tabular-nums;
}
.network-table tbody tr:hover td { background: #fafbfc; }
.network-table__total th, .network-table__total td {
  background: #eef2f8 !important;
  font-weight: bold;
  color: #1c2230;
  border-top: 2px solid #c41e26;
}

/* ---------- Compliance notices ---------- */
.compliance {
  background: linear-gradient(#fffaf2, #fcf1de);
  border-top: 1px solid #e6cda0;
  border-bottom: 1px solid #e6cda0;
  padding: 20px 0 22px;
}
.compliance h2 {
  font-size: 14px;
  color: #6b4400;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #d8b97a;
  font-family: Georgia, serif;
}
.compliance h2 em {
  font-style: normal;
  font-family: Verdana, sans-serif;
  font-size: 10px;
  color: #8a7038;
  font-weight: normal;
  margin-left: 6px;
}
.compliance__list { display: grid; gap: 10px; }
.compliance__list > li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e6cda0;
  padding: 10px 14px;
}
.compliance__icon {
  font-size: 18px;
  color: #c41e26;
  line-height: 1;
  padding-top: 2px;
}
.compliance__list strong {
  display: block;
  font-size: 12px;
  color: #1c2230;
  margin-bottom: 4px;
}
.compliance__list p {
  margin: 0;
  font-size: 11px;
  color: #45506a;
  line-height: 1.6;
}

/* ---------- Legal page ---------- */
.legal-page {
  background: #ffffff;
  padding: 18px 0 24px;
}
.legal-page .section-head { margin-bottom: 12px; }
.legal-back { margin: 0 0 14px; font-size: 11px; }
.legal-back a { color: #134d8c; text-decoration: none; }
.legal-back a:hover { color: #c41e26; text-decoration: underline; }
.legal-back--bottom {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid #dee2ea;
}
.legal-toc {
  background: #f7f8fb;
  border: 1px solid #c8ccd2;
  padding: 10px 14px;
  margin: 0 0 18px;
}
.legal-toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
  padding: 0;
}
.legal-toc li { list-style: none; }
.legal-toc a {
  font-size: 11px;
  color: #134d8c;
  text-decoration: none;
}
.legal-toc a::before { content: "› "; color: #c41e26; }
.legal-toc a:hover { color: #c41e26; text-decoration: underline; }
.legal-section {
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e5e8ee;
  scroll-margin-top: 16px;
}
.legal-section:last-of-type { border-bottom: 0; }
.legal-section h3 {
  color: #1f3358;
  font-size: 14px;
  margin: 0 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid #1f3358;
  letter-spacing: 0.04em;
}
.legal-section p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #2a2f3a;
}
.legal-section a { color: #134d8c; }
.legal-section a:hover { color: #c41e26; }
.legal-table {
  width: 100%;
  margin: 10px 0 12px;
  border: 1px solid #c8ccd2;
  font-size: 11px;
}
.legal-table thead th {
  background: linear-gradient(#3b5476, #243958);
  color: #fff;
  text-align: left;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.legal-table td {
  padding: 5px 8px;
  border-top: 1px solid #e3e6ec;
}
.legal-table td:first-child {
  width: 140px;
  color: #45506a;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(#1f3358, #14213d);
  color: #c6cfe0;
  padding: 22px 0 0;
  font-size: 11px;
}
.footer__inner { padding-bottom: 0; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 20px;
}
.footer h4 {
  font-size: 11px;
  color: #ffffff;
  margin: 0 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #3a4d72;
  letter-spacing: 0.04em;
}
.footer h4 em {
  font-style: normal;
  font-weight: normal;
  font-size: 9px;
  color: #8b9cbb;
  margin-left: 4px;
}
.footer ul li {
  margin-bottom: 4px;
  line-height: 1.45;
}
.footer ul a {
  color: #c6cfe0;
  text-decoration: none;
  font-size: 11px;
}
.footer ul a:hover { color: #ffffff; text-decoration: underline; }
.footer ul a::before {
  content: "› ";
  color: #c41e26;
}

.footer__connect {
  border-top: 1px solid #3a4d72;
  background: #1a2c4f;
  padding: 12px 0;
}
.footer__connect h4 {
  font-size: 10px;
  color: #ffffff;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__connect h4 em {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  color: #8b9cbb;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.footer__connect ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  padding: 0;
  margin: 0;
}
.footer__connect li {
  margin-bottom: 0;
  line-height: 2;
}
.footer__connect a {
  color: #c6cfe0;
  text-decoration: none;
  font-size: 11px;
}
.footer__connect a::before { content: ""; }
.footer__connect a:hover { color: #ffffff; text-decoration: underline; }

.footer__legal {
  border-top: 1px solid #3a4d72;
  background: #14213d;
  padding: 12px 0 14px;
  margin-top: 4px;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dotted #3a4d72;
}
.footer__legal-links li { line-height: 1.6; }
.footer__legal-links a {
  color: #8b9cbb;
  font-size: 10px;
  text-decoration: none;
}
.footer__legal-links a:hover { color: #ffffff; text-decoration: underline; }
.footer__copy {
  margin: 0;
  font-size: 10px;
  color: #8b9cbb;
  line-height: 1.7;
}
.footer__copy em { color: #b5a06c; font-style: italic; }


/* ---------- Functional legacy controls ---------- */
body.font-small { zoom: 0.92; }
body.font-large { zoom: 1.14; }
html { scroll-behavior: smooth; }
.utilbar__font {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.utilbar__font button {
  font-family: inherit;
  line-height: 1;
  color: #45506a;
  background: linear-gradient(#ffffff, #e5e8ed);
  border: 1px solid #aab1bb;
  padding: 1px 4px;
  min-width: 19px;
  height: 17px;
  cursor: pointer;
}
.utilbar__font button[data-font="small"] { font-size: 10px; }
.utilbar__font button[data-font="normal"] { font-size: 12px; }
.utilbar__font button[data-font="large"] { font-size: 14px; }
.utilbar__font button:hover,
.utilbar__font button[aria-current="page"] {
  color: #c41e26;
  border-color: #9b1a1f;
  background: #fff;
}
.utilbar__lang a[aria-current="page"] { text-decoration: underline; }
.site-message {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  border: 1px solid #b7bcc5;
  border-top: 3px solid #c41e26;
  background: #fffdf5;
  box-shadow: 0 3px 12px rgba(25, 34, 48, 0.2);
  padding: 10px 12px;
  font-size: 12px;
  color: #2a2f3a;
}
.site-message strong { color: #9b1a1f; }
.site-message button {
  float: right;
  margin-left: 10px;
  border: 1px solid #8b94a1;
  background: linear-gradient(#ffffff, #e7ebf1);
  color: #1f2a3d;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

/* ---------- Back to top ---------- */
.totop {
  position: fixed;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(#3b5476, #243958);
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 10px;
  border: 1px solid #1c2e4a;
  letter-spacing: 0.06em;
}
.totop:hover { background: linear-gradient(#46618a, #2a4571); color: #fff; }

/* ---------- Responsive (light: keep dense look, but adapt below ~840px) ---------- */
@media (max-width: 880px) {
  .hero__inner,
  .grid-row__inner,
  .values__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .biz-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .affiliates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promos__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .masthead__ticker { width: 100%; }
  .ticker { width: 100%; }
}

@media (max-width: 560px) {
  .utilbar__inner { font-size: 10px; }
  .utilbar__search input { width: 110px; }
  .brand__name { font-size: 22px; }
  .primary-nav li { flex: 1 1 50%; min-width: 50%; }
  .primary-nav li + li { border-left: 0; }
  .primary-nav li:nth-child(even) { border-left: 1px solid #4a608a; }
  .biz-grid { grid-template-columns: minmax(0, 1fr); }
  .affiliates-grid { grid-template-columns: minmax(0, 1fr); }
  .promos__inner { grid-template-columns: minmax(0, 1fr); }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__title { font-size: 24px; }
  .news-table__date { width: 64px; font-size: 11px; }
  .news-table__tag { width: 58px; }
  .subnav__inner ul { gap: 2px; }
}

@media print {
  .utilbar, .primary-nav, .subnav, .totop, .promos { display: none; }
  body { background: #fff; color: #000; }
  .masthead, .hero, .grid-row, .businesses, .values, .network, .compliance, .footer {
    background: #fff !important;
    color: #000;
  }
  a { color: #000; text-decoration: underline; }
}

/* Reduced motion (we have very little motion, but be polite) */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
