body {
  background-color: #ffffff;
}

.investor-hero {
  position: relative;
  margin-top: 72px;
}

.investor-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.investor-hero .hero-text {
  position: absolute;
  left: 10%;
  bottom: 18%;
  color: #ffffff;
  background: rgba(10, 46, 99, 0.55);
  padding: 24px 32px;
  border-radius: 8px;
  max-width: 420px;
}

.investor-hero .hero-text .line {
  width: 56px;
  height: 4px;
  background: #ffc000;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .investor-hero img {
    height: 260px;
  }

  .investor-hero .hero-text {
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    text-align: center;
  }
}

.ratings-page {
  padding-top: 90px;
}

.ratings-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a2e63 0%, #0f5fc2 100%);
  color: #fff;
}

.ratings-hero .eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ratings-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}

.hero-card .badge {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-card .hero-date {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.ratings-tabs {
  margin-top: -40px;
  margin-bottom: 32px;
}

.tab-choices {
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  display: inline-flex;
  gap: 8px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
}

.tab-choice {
  width: 217px;
  border: none;
  background: transparent;
  color: #4b5563;
  font-weight: normal;
  padding: 10px 36px;
  border-radius: 999px;
}

.tab-choice.active {
  background: #0086C9;
  color: #fff;
  border-radius: 6px;
}

.ratings-summary {
  margin-bottom: 10px;
}

.summary-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(15, 39, 92, 0.08);
  height: 100%;
}

.summary-card .label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.summary-card .value {
  font-size: 2.3rem;
  color: #0a2e63;
  margin: 8px 0;
}


.table-card {
    background: #fff; 
    margin: 0 0 32px;
    border: 1px solid #E9EAEB;
    border-radius: 12px;
	overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ratings-table thead {
	border-top: 1px solid #E9EAEB;
	border-bottom: 1px solid #E9EAEB;
}

.table-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2e63;
}

.table-updated {
  font-size: 0.95rem;
  color: #6b7280;
}

.ratings-table thead th {
  background: #fafafa;
  color: #717680;
  border: none;
  font-weight: normal;
  padding: 9px 16px;
  font-size: 18px;
}

.ratings-table tbody td {
  padding: 9px 16px;
  vertical-align: middle;
 border-color: #e5e7eb;
	font-size: 18px;
		color: #535862;
}
.ratings-table tbody td:first-child {
 
		color: #181D27;
}

 

.ratings-table tbody tr:hover {
  background-color: #f8fafc;
}

.ratings-table .placeholder {
  text-align: center;
  color: #9ca3af;
  font-style: italic;
}

.badge.bg-success-subtle {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.badge.bg-primary-subtle {
  background-color: rgba(37, 99, 235, 0.15);
  color: #1d4ed8;
}

.badge.bg-warning-subtle {
  background-color: rgba(251, 191, 36, 0.18);
  color: #b45309;
}

.insights-section {
  margin: 60px 0 30px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.insight-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(15, 39, 92, 0.08);
}

.insight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #0a2e63;
}

.insight-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: #4b5563;
}

.insight-card li + li {
  margin-top: 6px;
}

.insight-metrics {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.metric-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1.5rem;
  color: #0a2e63;
}

.timeline {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.timeline li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0f5fc2;
}

.timeline-date {
  font-weight: 600;
  color: #0a2e63;
  display: block;
}

.disclaimer {
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 20px;
  background: #eef2ff;
}

@media (max-width: 991px) {
  .hero-card {
    margin-top: 24px;
  }

  .table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .summary-card {
    padding: 22px;
  }

  .insight-metrics {
    flex-direction: column;
  }
}
