/* Goldman Sachs Exact Replica - Styles */

/* ================================
   FONTS - Exact GS Fonts from CDN
   ================================ */
@font-face {
  font-family: "GS Sans";
  src: url("https://cdn.gs.com/fonts/gs-sans/v3/gs-sans-variable.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GS Sans";
  src: url("https://cdn.gs.com/fonts/gs-sans/v3/gs-sans-variable-italic.woff2")
    format("woff2");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GS Sans Condensed";
  src: url("https://cdn.gs.com/fonts/gs-sans/v3/gs-sans-condensed-variable.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GS Sans Condensed";
  src: url("https://cdn.gs.com/fonts/gs-sans/v3/gs-sans-condensed-variable-italic.woff2")
    format("woff2");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "GS Serif";
  src: url("https://cdn.gs.com/fonts/gs-serif/v3/gs-serif-variable.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GS Serif";
  src: url("https://cdn.gs.com/fonts/gs-serif/v3/gs-serif-variable-italic.woff2")
    format("woff2");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("https://cdn.gs.com/fonts/roboto-mono/v1/roboto-mono-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ================================
   RESET & BASE
   ================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.95);
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ================================
   HEADER / NAVIGATION
   ================================ */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 10005;
  background-color: #7297c5;
  transition: background-color 0.3s ease;
  width: 100%;
}

.gs-header.scrolled {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gs-header.transparent {
  background-color: transparent;
}

.gs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  max-width: 100%;
}

.gs-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gs-logo svg {
  width: 53px;
  height: 22px;
  fill: rgba(0, 0, 0, 0.95);
}

.gs-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.gs-nav-primary {
  display: flex;
  align-items: center;
  margin-left: 32px;
  gap: 0;
}

.gs-nav-primary a {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  position: relative;
}

.gs-nav-primary a .arrow-down {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.2s;
}

.gs-nav-primary a:hover .arrow-down {
  transform: rotate(180deg);
}

.gs-nav-secondary {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}

.gs-nav-secondary a {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  padding: 20px 12px;
  white-space: nowrap;
}

.gs-search-btn {
  padding: 20px 12px;
  display: flex;
  align-items: center;
}

.gs-search-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.8);
}

.gs-login-btn {
  margin-left: 8px;
}

.gs-login-btn a {
  display: inline-block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 9px 11px;
  white-space: nowrap;
  transition: all 0.2s;
}

.gs-login-btn a:hover {
  background-color: rgba(0, 0, 0, 0.95);
  color: #fff;
  opacity: 1;
}

/* Mobile hamburger */
.gs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.gs-hamburger span {
  width: 22px;
  height: 2px;
  background: rgba(0, 0, 0, 0.95);
  transition: all 0.3s;
}

/* Dropdown menus */
.gs-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  z-index: 999;
}

.gs-dropdown.active {
  display: block;
}

.gs-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.gs-dropdown-col h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
}

.gs-dropdown-col a {
  display: block;
  font-size: 15px;
  padding: 6px 0;
  color: rgba(0, 0, 0, 0.7);
}

.gs-dropdown-col a:hover {
  color: rgba(0, 0, 0, 0.95);
  opacity: 1;
}

/* ================================
   HERO SECTION
   ================================ */
.gs-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -60px;
}

.gs-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.gs-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 40px;
  max-width: calc(75% - 16px);
  margin-top: 60px;
}

.gs-hero h1 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 80px;
  margin-bottom: 24px;
}

.gs-hero p {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 28px;
  margin-bottom: 32px;
  max-width: calc(75% - 16px);
}

.gs-hero .btn-primary {
  display: inline-block;
  background: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.95);
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 11px;
  border: none;
  transition: all 0.25s;
}

.gs-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.gs-hero-pause {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gs-hero-pause svg {
  width: 24px;
  height: 24px;
}

/* GS Signifier / Watermark */
.gs-signifier {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.gs-signifier svg {
  height: 100%;
  width: auto;
  opacity: 0.08;
}

/* ================================
   SECTION COMMON
   ================================ */
.gs-section {
  padding: 80px 40px;
  max-width: 100%;
}

.gs-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-section-label {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.gs-section-title {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.95);
}

/* ================================
   STAY INFORMED / FIRM IN ACTION
   ================================ */
.gs-firm-action {
  padding: 80px 40px;
  background: #fff;
}

.gs-firm-action .gs-section-label {
  color: rgba(0, 0, 0, 0.5);
}

.gs-firm-action .gs-section-title {
  font-size: 52px;
}

.gs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s;
}

.gs-card:hover {
  transform: translateY(-2px);
}

.gs-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gs-card:hover .gs-card-image img {
  transform: scale(1.03);
}

.gs-card-body {
  padding: 24px 0;
}

.gs-card-label {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.gs-card-title {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.95);
}

.gs-card-desc {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.gs-card-link {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.95);
  padding-bottom: 2px;
}

.gs-card-link:hover {
  opacity: 0.7;
}

.gs-card-link svg {
  width: 16px;
  height: 16px;
}

/* ================================
   WHAT WE DO - CAROUSEL
   ================================ */
.gs-whatwedo {
  padding: 80px 40px;
  background: #f5f5f5;
}

.gs-whatwedo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.gs-whatwedo-nav {
  display: flex;
  gap: 8px;
}

.gs-whatwedo-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gs-whatwedo-nav button:hover:not(:disabled) {
  border-color: rgba(0, 0, 0, 0.95);
}

.gs-whatwedo-nav button:disabled {
  opacity: 0.3;
  cursor: default;
}

.gs-whatwedo-nav button svg {
  width: 20px;
  height: 20px;
}

.gs-business-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gs-business-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.gs-business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  z-index: 1;
  transition: background 0.3s;
}

.gs-business-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 60%
  );
}

.gs-business-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-business-card-content {
  position: relative;
  z-index: 2;
}

.gs-business-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.gs-business-card p {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ================================
   OUR THINKING / INSIGHTS
   ================================ */
.gs-thinking {
  padding: 80px 40px;
  background: #fff;
}

.gs-thinking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gs-thinking-header .gs-section-title {
  max-width: 600px;
  margin-bottom: 0;
}

.gs-explore-link {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.95);
  padding-bottom: 2px;
  white-space: nowrap;
}

.gs-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.gs-insight-main {
  position: relative;
}

.gs-insight-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-insight-main .gs-insight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.gs-insight-main .gs-insight-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.gs-insight-main .gs-insight-title {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.gs-insight-main .gs-insight-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.gs-insight-list {
  display: flex;
  flex-direction: column;
}

.gs-insight-item {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 20px;
  transition: background 0.2s;
}

.gs-insight-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.gs-insight-item:last-child {
  border-bottom: none;
}

.gs-insight-item-thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.gs-insight-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-insight-item-body {
  flex: 1;
}

.gs-insight-item-duration {
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}

.gs-insight-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
  font-weight: 500;
}

.gs-insight-item-title {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gs-insight-item-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.gs-insight-item-meta span {
  margin: 0 6px;
}

/* ================================
   CAREERS SECTION
   ================================ */
.gs-careers {
  position: relative;
  padding: 100px 40px;
  background: #1a1a2e;
  background-image: url("https://www.goldmansachs.com/images/homepage/Hompage%20-%20Figma%20Composite%20.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.gs-careers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.gs-careers-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.gs-careers .gs-section-label {
  color: rgba(255, 255, 255, 0.7);
}

.gs-careers .gs-section-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 52px;
}

.gs-careers-desc {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.gs-career-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.gs-career-stat-number {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  margin-bottom: 8px;
}

.gs-career-stat-label {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.gs-careers-source {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

.gs-careers-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gs-careers-actions .btn-outline-white {
  display: inline-block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 14px 20px;
  transition: all 0.2s;
}

.gs-careers-actions .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.95);
  opacity: 1;
}

.gs-careers-actions a:not(.btn-outline-white) {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

/* ================================
   OUR FIRM SECTION
   ================================ */
.gs-ourfirm {
  padding: 80px 40px;
  background: #fff;
}

.gs-ourfirm .gs-section-title {
  font-size: 42px;
  max-width: 600px;
  font-style: italic;
}

.gs-firm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gs-firm-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 500px;
  text-decoration: none;
  transition: transform 0.2s;
}

.gs-firm-card:hover {
  transform: translateY(-2px);
}

.gs-firm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-firm-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.gs-firm-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.gs-firm-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}

.gs-firm-card-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ================================
   SUBSCRIBE / BRIEFINGS
   ================================ */
.gs-subscribe {
  padding: 80px 40px;
  background: #f5f5f5;
  text-align: center;
}

.gs-subscribe-inner {
  max-width: 600px;
  margin: 0 auto;
}

.gs-subscribe h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 16px;
}

.gs-subscribe p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 32px;
}

.gs-subscribe .btn-subscribe {
  display: inline-block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 15px 23px;
  background: transparent;
  transition: all 0.2s;
}

.gs-subscribe .btn-subscribe:hover {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  opacity: 1;
}

/* ================================
   FOOTER
   ================================ */
.gs-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 40px 40px;
}

.gs-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-footer-logo {
  margin-bottom: 40px;
}

.gs-footer-logo svg {
  fill: rgba(255, 255, 255, 0.8);
  width: 80px;
  height: 34px;
}

.gs-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.gs-footer-col h4 {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.gs-footer-col a {
  display: block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color 0.2s;
}

.gs-footer-col a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.gs-footer-col a .external-icon {
  display: inline;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  vertical-align: middle;
}

.gs-footer-connect h4 {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.gs-footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.gs-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.gs-footer-social a svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.7);
}

.gs-footer-social a:hover svg {
  fill: rgba(255, 255, 255, 0.95);
}

.gs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gs-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.gs-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gs-footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.gs-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* ================================
   LOGIN PAGE
   ================================ */
.login-page {
  background: #fff;
}

.gs-login-hero {
  background: #7297c5;
  padding: 120px 40px 60px;
}

.gs-login-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-login-hero h1 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.05;
  margin-bottom: 16px;
}

.gs-login-hero p {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 600px;
}

.gs-login-sections {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gs-login-sections-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-login-service {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 40px;
}

.gs-login-service:last-child {
  border-bottom: none;
}

.gs-login-service-info {
  flex: 1;
}

.gs-login-service-info h2 {
  font-family: "GS Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.1;
  margin-bottom: 12px;
}

.gs-login-service-info p {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  max-width: 600px;
}

.gs-login-service-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 12px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 9px 15px;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-login:hover {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  opacity: 1;
}

.btn-login .external-icon {
  width: 14px;
  height: 14px;
}

.gs-page-header {
  background: #7297c5;
  padding: 80px 40px 48px;
}

.gs-page-header h1 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.05;
}

.gs-page-share {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-page-share a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gs-login-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gs-login-section:last-child {
  border-bottom: none;
}

.gs-login-section h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
}

.gs-login-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.gs-login-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 9px 15px;
  width: fit-content;
  transition: all 0.2s;
}

.gs-login-links a:hover {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  opacity: 1;
}

.gs-login-links a .external-icon {
  width: 14px;
  height: 14px;
}

/* ================================
   AUTH PAGES (Sign Up / Reset)
   ================================ */
.gs-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gs-auth-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: #f8f8f8;
}

.gs-auth-card {
  background: #fff;
  width: 100%;
  max-width: 480px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gs-auth-card h1 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 8px;
}

.gs-auth-card .gs-auth-subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
}

.gs-form-group {
  margin-bottom: 20px;
}

.gs-form-group label {
  display: block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 6px;
}

.gs-form-group input {
  width: 100%;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.gs-form-group input:focus {
  border-color: rgba(0, 0, 0, 0.6);
}

.gs-form-group input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.gs-form-actions {
  margin-top: 28px;
}

.gs-btn-submit {
  width: 100%;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.95);
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.gs-btn-submit:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gs-auth-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.gs-auth-links a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}

.gs-auth-links a:hover {
  color: rgba(0, 0, 0, 0.95);
  opacity: 1;
}

.gs-auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.gs-auth-divider::before,
.gs-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.gs-auth-divider span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gs-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.gs-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: rgba(0, 0, 0, 0.95);
}

.gs-form-checkbox label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.gs-password-toggle {
  position: relative;
}

.gs-password-toggle input {
  padding-right: 48px;
}

.gs-password-toggle button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* Alert/Success messages */
.gs-alert {
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 3px solid;
  display: none;
}

.gs-alert-success {
  background: #f0f9f4;
  border-color: #2e7d32;
  color: #2e7d32;
}

.gs-alert-error {
  background: #fef2f2;
  border-color: #c62828;
  color: #c62828;
}

/* ================================
   DISCOVER GS SECTION (Login page)
   ================================ */
.gs-discover {
  padding: 80px 40px;
  background: #f5f5f5;
}

.gs-discover-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-discover .gs-section-label {
  color: rgba(0, 0, 0, 0.5);
}

.gs-discover .gs-section-title {
  font-size: 42px;
}

.gs-discover-desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 600px;
  margin-bottom: 48px;
}

.gs-discover-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gs-discover-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
}

.gs-discover-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gs-discover-card:hover img {
  transform: scale(1.05);
}

.gs-discover-card span {
  position: relative;
  z-index: 2;
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 18px;
  color: #fff;
  padding: 16px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

/* ================================
   BRIEFINGS SUBSCRIBE (w/ email)
   ================================ */
.gs-briefings-subscribe {
  padding: 60px 40px;
  background: #fff;
}

.gs-briefings-inner {
  max-width: 700px;
  margin: 0 auto;
}

.gs-briefings-inner h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 8px;
}

.gs-briefings-inner p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.gs-briefings-inner .gs-briefings-disclaimer {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  line-height: 1.5;
}

.gs-briefings-form {
  display: flex;
  gap: 0;
}

.gs-briefings-form input {
  flex: 1;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: none;
  outline: none;
}

.gs-briefings-form input:focus {
  border-color: rgba(0, 0, 0, 0.5);
}

.gs-briefings-form button {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.gs-briefings-form button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ================================
   GENERIC PAGE CONTENT
   ================================ */
.gs-page-content {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gs-page-content h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}

.gs-page-content p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 800px;
}

/* ================================
   PAGE HERO (Interior pages)
   ================================ */
.gs-page-hero {
  position: relative;
  padding: 120px 40px 80px;
  background: #7297c5;
  overflow: hidden;
}

.gs-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gs-page-hero .gs-section-label {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  margin-bottom: 16px;
}

.gs-page-hero h1 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.1;
  max-width: 700px;
}

.gs-page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.gs-page-hero.dark {
  background: #1a1a2e;
}

.gs-page-hero.dark h1,
.gs-page-hero.dark .gs-section-label {
  color: rgba(255, 255, 255, 0.95);
}

.gs-page-hero.dark .gs-section-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   CONTENT SECTIONS (Interior pages)
   ================================ */
.gs-content-section {
  padding: 80px 40px;
  background: #fff;
}

.gs-content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-content-section h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.95);
}

.gs-content-section .gs-section-label {
  display: block;
  margin-bottom: 12px;
}

.gs-intro-text {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 48px;
}

/* ================================
   DARK SECTION
   ================================ */
.gs-dark-section {
  padding: 80px 40px;
  background: #1a1a2e;
  color: #fff;
}

.gs-dark-section h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.gs-dark-section h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.gs-dark-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.gs-dark-section .gs-section-label {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 12px;
}

/* ================================
   TWO COLUMN LAYOUT
   ================================ */
.gs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gs-two-col-text p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gs-two-col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ================================
   STATS
   ================================ */
.gs-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.gs-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-stat-number {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}

.gs-content-section .gs-stat-number {
  color: rgba(0, 0, 0, 0.95);
}

.gs-stat-label {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.gs-content-section .gs-stat-label {
  color: rgba(0, 0, 0, 0.5);
}

/* ================================
   BUSINESS SEGMENTS (What We Do)
   ================================ */
.gs-business-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gs-business-segment:last-child {
  border-bottom: none;
}

.gs-business-segment:nth-child(even) {
  direction: rtl;
}

.gs-business-segment:nth-child(even) > * {
  direction: ltr;
}

.gs-segment-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.gs-segment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-segment-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-segment-number {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.gs-segment-content h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}

.gs-segment-content > p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.gs-business-list {
  list-style: none;
  margin-bottom: 24px;
}

.gs-business-list li {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gs-business-list li:last-child {
  border-bottom: none;
}

/* Key Facts */
.gs-key-facts {
  padding: 80px 40px;
  background: #f5f5f5;
}

.gs-key-facts .gs-content-inner {
  text-align: center;
}

.gs-key-facts h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 48px;
}

.gs-key-facts .gs-stats-row .gs-stat-number {
  color: rgba(0, 0, 0, 0.95);
}

.gs-key-facts .gs-stats-row .gs-stat-label {
  color: rgba(0, 0, 0, 0.5);
}

/* ================================
   FEATURED ARTICLE (Insights)
   ================================ */
.gs-featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #f5f5f5;
  margin-bottom: 0;
}

.gs-featured-article-image {
  overflow: hidden;
  min-height: 400px;
}

.gs-featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-featured-article-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gs-featured-article-content .gs-section-label {
  display: block;
  margin-bottom: 12px;
}

.gs-featured-article-content h2 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gs-featured-article-content p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ================================
   FILTER TABS (Insights)
   ================================ */
.gs-filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gs-filter-tab {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.gs-filter-tab:hover {
  color: rgba(0, 0, 0, 0.8);
}

.gs-filter-tab.active {
  color: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.95);
  font-weight: 500;
}

/* ================================
   INSIGHT CARDS (Insights grid)
   ================================ */
.gs-insights-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gs-insight-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.gs-insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.gs-insight-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gs-insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gs-insight-card:hover .gs-insight-card-image img {
  transform: scale(1.03);
}

.gs-insight-card-body {
  padding: 24px;
}

.gs-insight-card-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.gs-insight-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.95);
}

.gs-insight-card p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gs-insight-card-date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

/* ================================
   PODCAST CARDS (Insights)
   ================================ */
.gs-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-podcast-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  transition: background 0.2s;
}

.gs-podcast-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gs-podcast-icon {
  margin-bottom: 20px;
}

.gs-podcast-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.gs-podcast-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ================================
   LEADERSHIP GRID (Our Firm)
   ================================ */
.gs-leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-leader-card {
  text-align: center;
}

.gs-leader-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: #e0e0e0;
}

.gs-leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-leader-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.gs-leader-role {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

/* ================================
   VALUES GRID (Our Firm)
   ================================ */
.gs-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-value-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gs-value-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.gs-value-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ================================
   TIMELINE (Our Firm)
   ================================ */
.gs-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 48px;
}

.gs-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.15);
}

.gs-timeline-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 24px;
}

.gs-timeline-item::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.95);
  border: 3px solid #fff;
}

.gs-timeline-year {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.95);
  margin-bottom: 8px;
}

.gs-timeline-text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  max-width: 600px;
}

/* ================================
   IMPACT GRID (Our Firm)
   ================================ */
.gs-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-impact-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
}

.gs-impact-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gs-impact-card:hover img {
  transform: scale(1.03);
}

.gs-impact-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.gs-impact-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.gs-impact-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ================================
   PROGRAMS GRID (Careers / Alumni)
   ================================ */
.gs-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-program-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}

.gs-content-section .gs-program-card {
  border-color: rgba(0, 0, 0, 0.1);
  background: #f9f9f9;
}

.gs-program-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gs-content-section .gs-program-card:hover {
  background: #f0f0f0;
}

.gs-program-icon {
  margin-bottom: 20px;
}

.gs-program-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.gs-content-section .gs-program-card h3 {
  color: rgba(0, 0, 0, 0.95);
}

.gs-program-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.gs-content-section .gs-program-card p {
  color: rgba(0, 0, 0, 0.6);
}

/* ================================
   DIVISIONS LIST (Careers)
   ================================ */
.gs-divisions-list {
  margin-top: 40px;
}

.gs-division-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: padding-left 0.2s;
}

.gs-division-item:hover {
  padding-left: 8px;
}

.gs-division-item:last-child {
  border-bottom: none;
}

.gs-division-number {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  min-width: 24px;
}

.gs-division-item h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  margin-bottom: 4px;
}

.gs-division-item p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

/* ================================
   LIFE AT GS (Careers dark cards)
   ================================ */
.gs-life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-life-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gs-life-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

.gs-life-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ================================
   CTA BUTTONS & TEXT LINKS
   ================================ */
.gs-cta-btn {
  display: inline-block;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 14px 24px;
  transition: all 0.2s;
  text-decoration: none;
}

.gs-cta-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  opacity: 1;
}

.gs-dark-section .gs-cta-btn {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

.gs-dark-section .gs-cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.95);
}

.gs-text-link {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.95);
  padding-bottom: 2px;
  text-decoration: none;
}

.gs-text-link:hover {
  opacity: 0.7;
}

.gs-dark-section .gs-text-link {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

.gs-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

/* ================================
   CONTACT INFO
   ================================ */
.gs-contact-info {
  margin-top: 24px;
}

.gs-contact-info p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.gs-contact-info strong {
  color: rgba(0, 0, 0, 0.95);
}

/* ================================
   IR GRID (Investor Relations)
   ================================ */
.gs-ir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gs-ir-card {
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fafafa;
}

.gs-ir-card h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.gs-ir-card p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.gs-ir-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.gs-ir-card ul li {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gs-ir-card ul li:last-child {
  border-bottom: none;
}

.gs-stock-info {
  display: flex;
  gap: 32px;
  margin: 16px 0 24px;
}

.gs-stock-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gs-stock-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.4);
}

.gs-stock-value {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
}

/* ================================
   PRESS LIST (Pressroom)
   ================================ */
.gs-press-list {
  margin-top: 40px;
}

.gs-press-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gs-press-item:last-child {
  border-bottom: none;
}

.gs-press-date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  margin-bottom: 8px;
}

.gs-press-item h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gs-press-item h3 a {
  color: rgba(0, 0, 0, 0.95);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.gs-press-item h3 a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.95);
  opacity: 1;
}

.gs-press-item p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 800px;
}

/* ================================
   REGION / OFFICES (Worldwide)
   ================================ */
.gs-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 48px;
}

.gs-region h3 {
  font-family: "GS Serif", Times, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.95);
}

.gs-offices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gs-office h4 {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.95);
}

.gs-office p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.gs-office-phone {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8) !important;
  margin-top: 4px;
}

/* ================================
   SUBSCRIBE FORM (with input)
   ================================ */
.gs-subscribe-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.gs-subscribe-form {
  display: flex;
  gap: 0;
  margin-top: 24px;
}

.gs-subscribe-form input {
  flex: 1;
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: none;
  outline: none;
}

.gs-subscribe-form input:focus {
  border-color: rgba(0, 0, 0, 0.5);
}

.gs-subscribe-form button {
  font-family: "GS Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.95);
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.gs-subscribe-form button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ================================
   FOOTER TOP (alternate structure)
   ================================ */
.gs-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.gs-footer-top .gs-footer-col ul {
  list-style: none;
}

.gs-footer-top .gs-footer-col ul li a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
}

.gs-footer-top .gs-footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.gs-footer-legal ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.gs-footer-legal ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.gs-footer-legal ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.gs-footer-legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
  .gs-business-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-discover-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .gs-leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .gs-hero h1 {
    font-size: 56px;
    line-height: 60px;
  }
  .gs-section-title {
    font-size: 40px;
  }
  .gs-login-hero h1 {
    font-size: 72px;
  }
  .gs-login-service-info h2 {
    font-size: 48px;
  }
  .gs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-firm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-nav-secondary a:not(:last-child) {
    display: none;
  }
  .gs-business-segment {
    grid-template-columns: 1fr;
  }
  .gs-business-segment:nth-child(even) {
    direction: ltr;
  }
  .gs-featured-article {
    grid-template-columns: 1fr;
  }
  .gs-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gs-insights-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-podcast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-offices-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-ir-grid {
    grid-template-columns: 1fr;
  }
  .gs-page-hero h1 {
    font-size: 42px;
  }
  .gs-footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gs-header-inner {
    padding: 0 20px;
  }
  .gs-nav-primary,
  .gs-nav-secondary {
    display: none;
  }
  .gs-hamburger {
    display: flex;
  }
  .gs-hero {
    height: 70vh;
    min-height: 500px;
  }
  .gs-hero h1 {
    font-size: 40px;
    line-height: 44px;
  }
  .gs-hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .gs-hero-content p {
    max-width: 100%;
  }
  .gs-login-hero {
    padding: 100px 20px 40px;
  }
  .gs-login-hero h1 {
    font-size: 48px;
  }
  .gs-login-service {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
  }
  .gs-login-service-info h2 {
    font-size: 36px;
  }
  .gs-login-service-info p {
    font-size: 15px;
  }
  .gs-login-service-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-login {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .gs-section {
    padding: 60px 20px;
  }
  .gs-cards-grid {
    grid-template-columns: 1fr;
  }
  .gs-business-cards {
    grid-template-columns: 1fr;
  }
  .gs-career-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gs-firm-cards {
    grid-template-columns: 1fr;
  }
  .gs-insights-grid {
    grid-template-columns: 1fr;
  }
  .gs-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .gs-discover-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gs-page-header h1 {
    font-size: 48px;
  }
  .gs-section-title {
    font-size: 32px;
  }
  .gs-career-stat-number {
    font-size: 48px;
  }
  .gs-auth-card {
    padding: 32px 24px;
  }
  .gs-page-hero {
    padding: 100px 20px 60px;
  }
  .gs-page-hero h1 {
    font-size: 36px;
  }
  .gs-content-section {
    padding: 60px 20px;
  }
  .gs-dark-section {
    padding: 60px 20px;
  }
  .gs-insights-card-grid {
    grid-template-columns: 1fr;
  }
  .gs-podcast-grid {
    grid-template-columns: 1fr;
  }
  .gs-leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gs-values-grid {
    grid-template-columns: 1fr;
  }
  .gs-programs-grid {
    grid-template-columns: 1fr;
  }
  .gs-life-grid {
    grid-template-columns: 1fr;
  }
  .gs-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .gs-stat-number {
    font-size: 42px;
  }
  .gs-offices-list {
    grid-template-columns: 1fr;
  }
  .gs-two-col-stats {
    grid-template-columns: 1fr;
  }
  .gs-subscribe-form {
    flex-direction: column;
  }
  .gs-subscribe-form input {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
  .gs-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .gs-footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .gs-content-section h2 {
    font-size: 32px;
  }
  .gs-dark-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .gs-hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .gs-login-hero h1 {
    font-size: 36px;
  }
  .gs-login-service-info h2 {
    font-size: 28px;
  }
  .gs-discover-cards {
    grid-template-columns: 1fr;
  }
  .gs-footer-columns {
    grid-template-columns: 1fr;
  }
  .gs-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .gs-leadership-grid {
    grid-template-columns: 1fr;
  }
  .gs-footer-top {
    grid-template-columns: 1fr;
  }
  .gs-stats-row {
    grid-template-columns: 1fr;
  }
  .gs-footer-legal ul {
    flex-direction: column;
    gap: 8px;
  }
}
