/* Decorative top badge for chronological presence */
.company-badge {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0B3C5D; /* Corporate Blue */
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Asymmetric 2-Column Overview Grid Layout */
.overview-grid {
  display: flex;
  flex-direction: row;
  gap: 50px;
  width: 100%;
  margin-top: 20px;
  align-items: flex-start;
}

/* Left Column: Core Narrative */
.overview-left {
  flex: 1.2; /* Gives slightly more visual breathing room to the primary narrative */
}

.overview-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #1A252C;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.4;
}

.text-blue {
  color: #0B3C5D !important;
}

/* Right Column: Key Sectors Block */
.overview-right {
  flex: 0.8;
  background-color: #f8fbc3; /* Signature soft accent tone matching your Vision layout */
  border-radius: 8px;
  padding: 35px 30px;
  border: 1px solid #e2e8f0;
}

.sectors-title {
  font-size: 20px;
  font-weight: 800;
  color: #0B3C5D;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Clean, modern bulletless layout for vertical list items */
.sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.sector-list li:last-child {
  margin-bottom: 0; /* Cleans bottom spacing margin trap */
}

.sector-icon {
  color: #0B3C5D;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
}

.sector-list strong {
  font-size: 18px;
  color: #1A252C;
  display: block;
  margin-bottom: 4px;
}

.sector-sub {
  font-size: 16px; /* Slightly tighter sizing context for supplementary card notes */
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

/* Responsive Overrides: Drop into vertical column order on tablets/smartphones */
@media (max-width: 850px) {
  .overview-grid {
    flex-direction: column;
    gap: 35px;
  }
  .overview-right {
    width: 100%; /* Spans full width when isolated layout stacks down */
    box-sizing: border-box;
  }
}