.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 110px 24px 40px;
}

.section.right {
  flex-direction: row-reverse;
}

.text {
  max-width: 500px;
}

.text h1 {
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 0;
  font-weight: 700;
  color: var(--accent-red);
}

.panel {
  width: min(560px, 100%);
  padding: 26px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.avatar-image {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.list li {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  padding: 14px 16px;
  background: transparent;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}

.text h1::selection {
  background: #1d4ed8;
  color: #fff;
}

.list li::selection,
.chip::selection,
.panel::selection {
  background: #1d4ed8;
  color: #fff;
}

.company-list {
  gap: 10px;
}

.company-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.company-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.company-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.company-title {
  font-weight: 700;
  color: var(--accent-red);
}

.company-meta {
  color: var(--accent-blue);
  font-size: 12px;
  margin-top: 3px;
  font-weight: 600;
}

.company-description {
  color: var(--text);
  margin-top: 7px;
  font-size: 14px;
  font-weight: 500;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  font-weight: 600;
}
