/* Styled to match the YouTube consent placeholder (.ps-video-placeholder) */
.esg-panel[hidden] {
  display: none;
}

.esg-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  padding: 2.4rem 2rem;
  margin: 1.5rem auto;
  max-width: 720px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 12px;
  color: var(--color-gray-light);
}

.esg-title {
  margin: 0;
  color: var(--color-light);
  font-size: 1.6rem;
}

.esg-text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #cbd5e1;
  max-width: 56ch;
}

.esg-note {
  font-size: 1.05rem;
  color: #94a3b8;
}

.esg-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.esg-load-btn {
  background: var(--color-primary);
  color: #0a0a0a;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.esg-load-btn:hover {
  background: var(--color-secondary);
}

.esg-policy-link {
  color: var(--color-accent);
  font-size: 1.15rem;
  text-decoration: underline;
}
