.esg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}

.esg-card {
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: border-color .25s;
}

.esg-card:hover {
  border-color: var(--accent);
}

.esg-tag {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: .25rem .6rem;
  border: 1px solid rgba(232, 83, 10, .3);
  display: inline-block;
  width: fit-content;
}

.esg-title {
  font-family: var(--Fd);
  font-size: 1rem;
  font-weight: 400;
}

.esg-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

.esg-progress {
  height: 2px;
  background: var(--border);
  margin-top: .4rem;
}

.esg-progress-fill {
  height: 100%;
  background: var(--accent);
}

.esg-progress-fill--100 {
  width: 100%;
}

.esg-progress-fill--85 {
  width: 85%;
}

.esg-progress-fill--75 {
  width: 75%;
}

.esg-progress-fill--60 {
  width: 60%;
}

.esg-progress-fill--40 {
  width: 40%;
}
