/*
  CSC Corporate Shared Styles
  Last Updated: 23 May 2026 @ 19:08:09Z UTC
  Copyright © 2026 Cook Services Company, LLC | All Rights Reserved.
*/
:root {
  --csc-bg: #f5f1e9;
  --csc-bg-soft: #fffaf1;
  --csc-ink: #172033;
  --csc-muted: #5e6676;
  --csc-line: rgba(23, 32, 51, 0.14);
  --csc-navy: #07172f;
  --csc-blue: #1d4ed8;
  --csc-gold: #c9972b;
  --csc-gold-soft: #f7df9e;
  --csc-card: rgba(255, 255, 255, 0.82);
  --csc-shadow: 0 22px 60px rgba(11, 20, 38, 0.14);
  --csc-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--csc-ink);
  background:
    radial-gradient(circle at top left, rgba(201, 151, 43, 0.22), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, var(--csc-bg) 40%, #eef2f7 100%);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--csc-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.csc-skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--csc-navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 1000;
}

.csc-skip-link:focus {
  top: 16px;
}

.csc-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.csc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--csc-line);
}

.csc-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.csc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--csc-ink);
  text-decoration: none;
  min-width: 0;
}

.csc-brand:hover {
  text-decoration: none;
}

.csc-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(201, 151, 43, 0.45);
  box-shadow: 0 14px 30px rgba(7, 23, 47, 0.12);
  padding: 5px;
}

.csc-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.csc-brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.csc-brand-tagline {
  margin-top: 4px;
  color: var(--csc-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.csc-nav-toggle {
  display: none;
  border: 1px solid var(--csc-line);
  background: #fff;
  color: var(--csc-ink);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
  cursor: pointer;
}

.csc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.csc-nav a {
  color: var(--csc-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.csc-nav a:hover,
.csc-nav a[aria-current="page"] {
  background: rgba(201, 151, 43, 0.15);
  color: #0f2143;
}

.csc-main {
  padding: 34px 0 72px;
}

.csc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 30px;
  align-items: center;
  min-height: 600px;
}

.csc-hero-copy {
  padding: 34px 0;
}

.csc-eyebrow {
  margin: 0 0 14px;
  color: #8a6515;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.csc-hero h1 {
  margin: 0;
  color: var(--csc-navy);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.csc-hero-lede {
  margin: 22px 0 0;
  color: #354156;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  max-width: 700px;
}

.csc-hero-actions,
.csc-card-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.csc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.csc-button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.csc-button-primary {
  background: linear-gradient(135deg, var(--csc-navy), #16396f);
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 23, 47, 0.22);
}

.csc-button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--csc-navy);
  border-color: var(--csc-line);
}

.csc-hero-media {
  position: relative;
  min-height: 580px;
}

.csc-image-stack {
  position: relative;
  height: 100%;
  min-height: 580px;
}

.csc-photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--csc-shadow);
}

.csc-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.csc-photo-main {
  inset: 10px 0 135px 60px;
}

.csc-photo-secondary {
  width: 52%;
  height: 210px;
  left: 0;
  bottom: 52px;
  z-index: 2;
}

.csc-photo-third {
  width: 44%;
  height: 170px;
  right: 20px;
  bottom: 10px;
  z-index: 3;
}

.csc-stat-card {
  position: absolute;
  z-index: 4;
  right: 0;
  top: 72px;
  width: min(280px, 80%);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(201, 151, 43, 0.35);
  box-shadow: var(--csc-shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.csc-stat-card strong {
  display: block;
  color: var(--csc-navy);
  font-size: 14px;
  margin-bottom: 6px;
}

.csc-stat-card span {
  color: var(--csc-muted);
  line-height: 1.5;
  font-size: 13px;
}

.csc-section {
  padding: 54px 0;
}

.csc-section-header {
  margin-bottom: 24px;
  max-width: 840px;
}

.csc-kicker {
  margin: 0 0 9px;
  color: #8a6515;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.csc-section h2,
.csc-page-title {
  margin: 0;
  color: var(--csc-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.csc-section-lede,
.csc-page-lede {
  margin: 14px 0 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 17px;
}

.csc-mission-panel {
  border-radius: 30px;
  background: linear-gradient(135deg, var(--csc-navy), #0f2d58);
  color: #fff;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--csc-shadow);
  position: relative;
  overflow: hidden;
}

.csc-mission-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(201, 151, 43, 0.28);
}

.csc-mission-panel h2,
.csc-mission-panel p {
  position: relative;
  z-index: 1;
}

.csc-mission-panel h2 {
  color: #fff;
}

.csc-mission-panel p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-size: 18px;
}

.csc-grid {
  display: grid;
  gap: 18px;
}

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

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

.csc-card {
  border-radius: var(--csc-radius);
  background: var(--csc-card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(11, 20, 38, 0.08);
  padding: 22px;
}

.csc-card h3 {
  margin: 0 0 9px;
  color: var(--csc-navy);
  font-size: 20px;
}

.csc-card p {
  margin: 0;
  color: #4a5568;
  line-height: 1.68;
}

.csc-card .csc-card-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
}

.csc-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(201, 151, 43, 0.16);
  color: #8a6515;
  font-weight: 900;
}

.csc-contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.csc-contact-card {
  background: #fff;
  border: 1px solid var(--csc-line);
  border-radius: var(--csc-radius);
  padding: 26px;
  box-shadow: 0 18px 42px rgba(11, 20, 38, 0.08);
}

.csc-contact-card address {
  font-style: normal;
  color: #334155;
  line-height: 1.8;
}

.csc-contact-card strong {
  color: var(--csc-navy);
}

.csc-contact-note {
  color: var(--csc-muted);
  margin-top: 16px;
  line-height: 1.6;
  font-size: 14px;
}

.csc-contact-image {
  border-radius: var(--csc-radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--csc-shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.csc-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.csc-legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 28px;
}

.csc-legal-card {
  margin-top: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--csc-shadow);
  padding: clamp(24px, 4vw, 44px);
}

.csc-legal-card h2 {
  color: var(--csc-navy);
  margin: 34px 0 8px;
  font-size: 22px;
}

.csc-legal-card h2:first-child {
  margin-top: 0;
}

.csc-legal-card p,
.csc-legal-card li {
  color: #435064;
  line-height: 1.72;
}

.csc-legal-card ul {
  padding-left: 20px;
}

.csc-updated {
  color: var(--csc-muted);
  font-size: 14px;
  margin-top: 14px;
}

.csc-site-footer {
  background: var(--csc-navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 36px 0 28px;
}

.csc-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1.2fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.csc-footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.csc-footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 5px;
}

.csc-footer-title {
  font-weight: 900;
  color: #fff;
}

.csc-footer-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.csc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.csc-footer-links a,
.csc-footer-contact a {
  color: rgba(255, 255, 255, 0.86);
}

.csc-footer-contact {
  line-height: 1.7;
  font-size: 13px;
}

.csc-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.csc-footer-copyright-link {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.csc-footer-copyright-link:hover,
.csc-footer-copyright-link:focus {
  color: #fff;
  text-decoration: underline;
}


@media (max-width: 980px) {
  .csc-hero,
  .csc-contact-wrap {
    grid-template-columns: 1fr;
  }

  .csc-hero {
    min-height: 0;
  }

  .csc-hero-media,
  .csc-image-stack {
    min-height: 500px;
  }

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

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

@media (max-width: 760px) {
  .csc-header-inner {
    min-height: 68px;
  }

  .csc-brand-mark {
    width: 46px;
    height: 46px;
  }

  .csc-brand-name {
    font-size: 13px;
  }

  .csc-brand-tagline {
    display: none;
  }

  .csc-nav-toggle {
    display: inline-flex;
  }

  .csc-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 250, 241, 0.98);
    border: 1px solid var(--csc-line);
    border-radius: 22px;
    box-shadow: var(--csc-shadow);
  }

  body.nav-open .csc-nav {
    display: flex;
  }

  .csc-nav a {
    padding: 13px 14px;
  }

  .csc-main {
    padding-top: 20px;
  }

  .csc-hero-copy {
    padding-top: 18px;
  }

  .csc-hero-media,
  .csc-image-stack {
    min-height: 430px;
  }

  .csc-photo-main {
    inset: 0 0 120px 22px;
  }

  .csc-photo-secondary {
    width: 58%;
    height: 180px;
    bottom: 36px;
  }

  .csc-photo-third {
    width: 48%;
    height: 145px;
    right: 0;
  }

  .csc-stat-card {
    top: 22px;
    right: 8px;
    width: min(250px, 76%);
  }

  .csc-grid-3,
  .csc-grid-2 {
    grid-template-columns: 1fr;
  }

  .csc-section {
    padding: 38px 0;
  }
}

@media (max-width: 480px) {
  .csc-shell {
    width: min(100% - 24px, 1160px);
  }

  .csc-hero-actions,
  .csc-card-actions {
    flex-direction: column;
  }

  .csc-button {
    width: 100%;
  }

  .csc-hero-media,
  .csc-image-stack {
    min-height: 390px;
  }

  .csc-stat-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 12px;
  }

  .csc-photo-main {
    inset: 84px 0 118px 0;
  }

  .csc-photo-secondary {
    width: 60%;
    height: 150px;
    bottom: 26px;
  }

  .csc-photo-third {
    width: 50%;
    height: 130px;
  }
}

/* CSC Investments public-site refresh — 22 May 2026 @ 20:19:35Z UTC */
.csc-site-header {
  background: rgba(255, 250, 241, 0.94);
}

.csc-header-inner {
  min-height: 150px;
  gap: 24px;
}

.csc-brand {
  gap: 18px;
}

.csc-brand-mark {
  width: 150px;
  height: auto;
  max-height: 132px;
  border-radius: 20px;
  padding: 6px;
  object-fit: contain;
}

.csc-brand-name {
  font-size: 18px;
}

.csc-brand-tagline {
  max-width: 360px;
  line-height: 1.35;
}

.csc-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.csc-logo-card {
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  padding: 18px;
}

.csc-logo-card img {
  object-fit: contain;
}

.csc-investments-feature {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(201, 151, 43, .28), transparent 34%),
    linear-gradient(135deg, rgba(7, 23, 47, .96), rgba(15, 45, 88, .94));
  color: #fff;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--csc-shadow);
  overflow: hidden;
}

.csc-investments-logo-wrap {
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  padding: 20px;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.csc-investments-logo-wrap img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.csc-investments-feature h2,
.csc-investments-feature .csc-kicker {
  color: #fff;
}

.csc-investments-feature p {
  color: rgba(255,255,255,.86);
  line-height: 1.75;
}

.csc-disclaimer-mini {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.72) !important;
}

.csc-site-footer {
  background: linear-gradient(135deg, #040a14, var(--csc-navy));
}

.csc-footer-brand {
  align-items: center;
}

.csc-footer-brand a {
  flex: 0 0 auto;
}

.csc-footer-brand .csc-footer-investments-logo {
  width: 220px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  padding: 8px;
}

.csc-legal-card-professional {
  border: 1px solid rgba(201,151,43,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,241,.9));
}

.csc-legal-card-professional h2 {
  padding-top: 16px;
  border-top: 1px solid rgba(23, 32, 51, .10);
}

.csc-legal-card-professional h2:first-child {
  border-top: 0;
  padding-top: 0;
}

.csc-investors-main {
  background:
    radial-gradient(circle at top right, rgba(201,151,43,.18), transparent 34rem),
    radial-gradient(circle at 15% 20%, rgba(29,78,216,.12), transparent 28rem);
}

.csc-investors-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .64fr);
  gap: 28px;
  align-items: center;
  padding: 46px 0 28px;
}

.csc-investors-hero h1 {
  margin: 0;
  color: var(--csc-navy);
  font-size: clamp(48px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.07em;
}

.csc-investors-hero-logo {
  border-radius: 32px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,151,43,.28);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--csc-shadow);
}

.csc-investors-hero-logo img {
  display: block;
  width: 100%;
}

.csc-notice-card {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7,23,47,.96), rgba(15,45,88,.94));
  color: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--csc-shadow);
  border: 1px solid rgba(201,151,43,.35);
  margin-bottom: 28px;
}

.csc-notice-card h2,
.csc-notice-card .csc-kicker {
  color: #fff;
}

.csc-notice-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -.04em;
}

.csc-notice-card p {
  color: rgba(255,255,255,.84);
  line-height: 1.72;
}

.csc-investor-ticker {
  position: relative;
  overflow: hidden;
  background: #020711;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  box-shadow: 0 20px 56px rgba(7, 23, 47, .22);
}

.csc-investor-ticker-label {
  flex: 0 0 auto;
  margin-left: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(201,151,43,.56);
  border-radius: 999px;
  color: #f8d98e;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 900;
  background: rgba(7,23,47,.94);
  z-index: 2;
}

.csc-investor-tv-ticker {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
}

.csc-investor-tv-ticker .tradingview-widget-container,
.csc-investor-tv-ticker .tradingview-widget-container__widget {
  height: 52px;
  min-height: 52px;
  width: 100%;
}

.csc-custom-ticker {
  display: none;
  width: 100%;
  overflow: hidden;
  color: #fff;
  height: 44px;
  align-items: center;
}

.csc-custom-ticker-track {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  animation: cscTickerScroll 42s linear infinite;
  font-weight: 800;
  font-size: 12px;
}

.csc-custom-ticker-track span {
  color: #dfe8f6;
}

@keyframes cscTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.csc-market-dashboard {
  margin-top: 30px;
  padding: 0 0 24px;
}

.csc-market-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.csc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(41,196,122,.16);
  border: 1px solid rgba(41,196,122,.36);
}

.csc-live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #29c47a;
  box-shadow: 0 0 16px rgba(41,196,122,.75);
}

.csc-market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.csc-market-card {
  background: rgba(7, 18, 34, .96);
  color: #f4f7fb;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(7, 23, 47, .28);
}

.csc-market-card-header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.csc-market-card-header h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.csc-market-card-header p {
  margin: 7px 0 0;
  color: #aebbd0;
  line-height: 1.45;
  font-size: 13px;
}

.csc-tv-main-wrap,
.csc-tv-side-wrap {
  background: #071326;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  margin: 18px;
  overflow: hidden;
}

.csc-tv-main-wrap {
  height: 560px;
  min-height: 560px;
}

.csc-tv-side-wrap {
  height: 540px;
  min-height: 540px;
}

.csc-tv-main-wrap .tradingview-widget-container,
.csc-tv-side-wrap .tradingview-widget-container,
.csc-tv-main-wrap .tradingview-widget-container__widget,
.csc-tv-side-wrap .tradingview-widget-container__widget {
  width: 100%;
  height: 100%;
}

.csc-market-note {
  color: #8b96a8;
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 18px 18px;
}

.csc-market-note-light {
  color: var(--csc-muted);
  margin-left: 0;
  margin-right: 0;
}

.csc-investor-controls {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
}

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

.csc-search-input {
  width: 100%;
  border: 1px solid var(--csc-line);
  border-radius: 999px;
  padding: 14px 16px;
  color: var(--csc-ink);
  background: rgba(255,255,255,.9);
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(11,20,38,.06);
}

.csc-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.csc-filter-buttons button {
  border: 1px solid var(--csc-line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--csc-ink);
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.csc-filter-buttons button.active,
.csc-filter-buttons button:hover {
  background: var(--csc-navy);
  color: #fff;
  border-color: var(--csc-navy);
}

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

.csc-watch-card,
.csc-empty-card {
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 42px rgba(11,20,38,.08);
  padding: 18px;
}

.csc-watch-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.csc-watch-sleeve,
.csc-watch-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.csc-watch-sleeve {
  background: rgba(201,151,43,.16);
  color: #8a6515;
}

.csc-watch-status {
  background: rgba(7,23,47,.08);
  color: var(--csc-navy);
}

.csc-watch-card h3 {
  margin: 0;
  color: var(--csc-navy);
  font-size: 30px;
  letter-spacing: -.04em;
}

.csc-watch-name {
  min-height: 44px;
  margin: 5px 0 14px;
  color: #334155;
  font-weight: 800;
  line-height: 1.3;
}

.csc-watch-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.csc-watch-facts div {
  border-top: 1px solid var(--csc-line);
  padding-top: 8px;
}

.csc-watch-facts dt {
  color: var(--csc-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.csc-watch-facts dd {
  margin: 3px 0 0;
  color: var(--csc-navy);
  font-weight: 900;
}

.csc-watch-notes {
  color: #4a5568;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1120px) {
  .csc-header-inner {
    min-height: 132px;
  }

  .csc-brand-mark {
    width: 132px;
  }

  .csc-market-layout {
    grid-template-columns: 1fr;
  }

  .csc-watchlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .csc-header-inner {
    min-height: 118px;
  }

  .csc-brand-mark {
    width: 118px;
    max-height: 104px;
  }

  .csc-brand-tagline {
    display: none;
  }

  .csc-investments-feature,
  .csc-investors-hero,
  .csc-investor-controls {
    grid-template-columns: 1fr;
  }

  .csc-filter-buttons {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .csc-header-inner {
    min-height: 96px;
  }

  .csc-brand-mark {
    width: 92px;
    max-height: 82px;
  }

  .csc-brand-name {
    font-size: 12px;
  }

  .csc-nav {
    top: 96px;
  }

  .csc-footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .csc-footer-brand .csc-footer-investments-logo {
    width: min(240px, 82vw);
  }

  .csc-investor-ticker {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .csc-investor-ticker-label {
    width: fit-content;
    margin-left: 12px;
  }

  .csc-investor-tv-ticker {
    width: 100%;
  }

  .csc-market-dashboard-header {
    flex-direction: column;
  }

  .csc-tv-main-wrap {
    height: 500px;
    min-height: 500px;
  }

  .csc-tv-side-wrap {
    height: 460px;
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .csc-brand-text {
    display: none;
  }

  .csc-watchlist-grid {
    grid-template-columns: 1fr;
  }

  .csc-filter-buttons button {
    flex: 1 1 100%;
  }

  .csc-custom-ticker {
    display: flex;
  }
}

/* Corporate portfolio brand-logo cards — 23 May 2026 @ 19:08:09Z UTC */
.csc-brand-grid {
  display: grid;
  gap: 20px;
}

.csc-brand-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.csc-brand-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--csc-radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--csc-line);
  box-shadow: 0 16px 46px rgba(7, 23, 47, 0.10);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.csc-brand-card:hover,
.csc-brand-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(7, 23, 47, 0.16);
  border-color: rgba(201, 151, 43, 0.52);
  text-decoration: none;
}

.csc-brand-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -85px;
  top: -85px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 151, 43, 0.18), transparent 70%);
  pointer-events: none;
}

.csc-brand-logo-box {
  position: relative;
  z-index: 1;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(7, 23, 47, 0.10);
  padding: 18px;
}

.csc-brand-logo-box img {
  max-height: 198px;
  max-width: 98%;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.csc-brand-card h3 {
  margin: 24px 0 0;
  color: var(--csc-navy);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.csc-brand-card p {
  margin: 12px 0 0;
  color: #526074;
  line-height: 1.62;
  font-size: 14.5px;
}

.csc-brand-card .csc-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--csc-blue);
  font-weight: 950;
  font-size: 14px;
}

.csc-brand-card sup {
  font-size: 0.55em;
  line-height: 0;
  position: relative;
  top: -0.3em;
}

@media (max-width: 980px) {
  .csc-brand-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .csc-brand-grid-3 {
    grid-template-columns: 1fr;
  }

  .csc-brand-card {
    min-height: 390px;
  }

  .csc-brand-logo-box {
    height: 200px;
  }

  .csc-brand-logo-box img {
    max-height: 170px;
  }
}
