.principal-insights {
  padding: 60px 0;
  background: var(--ins-bg, #fff);
}
.principal-insights .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.principal-insights .principal-row-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1124px;
  margin: 0 auto;
}

/* Header */
.principal-insights .head-row h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  color: var(--ins-heading, #002855);
  margin: 0 0 16px 0;
  line-height: 40px;
}
.principal-insights .head-row p {
  font-size: 16px;
  color: #616267;
  margin: 0 0 24px 0;
  line-height: 24px;
}
.principal-insights .head-row .button-area {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

/* Cards */
.principal-insights .insights-cards {
  display: flex;
  gap: var(--ins-gap, 24px);
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 32px;
}
.principal-insights .insight-card {
  background: #fff;
  border: 1.5px solid #C5C6C5;
  border-radius: 8px;
  padding: 24px 20px 20px 20px;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: var(--ins-card-max, 316px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s;
}
.principal-insights .insight-card:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 113, 179, 0.08);
}

/* Badge */
.principal-insights .insight-badge {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 16px;
  background: #e6f4fa;
  color: #0071b3;
  margin-bottom: 24px;
}
.principal-insights .insight-badge.global { background: #e6f4fa; color: #0071b3; }
.principal-insights .insight-badge.latam { background: #e6f4fa; color: #0071b3; }

.principal-insights .insight-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #002855;
  margin: 0 0 10px 0;
  line-height: 28px;
}

/* Meta */
.principal-insights .insight-meta {
  font-size: .98em;
  color: #23323b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.principal-insights .insight-meta .insight-time {
  font-size: 12px;
  color: #333333;
  font-weight: 700;
}

/* Body */
.principal-insights .insight-summary {
  color: #616267;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0;
  flex: 1 1 auto;
}
.principal-insights .insight-author {
  font-size: 14px;
  color: #616267;
  margin-bottom: 16px;
}
.principal-insights .insight-author span {
  font-weight: 600;
}

/* CTA */
.principal-insights .button-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.principal-insights .button-area .principal-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.principal-insights .button-area .principal-link:hover {
  border-bottom-color: currentColor;
}

@media (max-width: 900px) {
  .principal-insights .insights-cards {
    flex-direction: column;
    gap: 16px;
  }
  .principal-insights .head-row h2 {
  font-size: 24px;
  line-height: 38px;
}
  .principal-insights .insight-card {
    max-width: 100%;
  }
}
