.company-profile-header {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 12px;
  margin: 0 0 24px 16px;
  align-items: start;
}
.company-profile-logo { grid-column: 1; grid-row: 1 / 3; width: 96px; height: 96px; object-fit: contain; }
.company-profile-name { grid-column: 2; grid-row: 1; min-width: 0; font-size: 36px; line-height: 1.2; overflow-wrap: anywhere; }
.company-profile-follow { grid-column: 3; grid-row: 1; align-self: center; }
.company-profile-follow button, .company-profile-follow a { white-space: nowrap; }
.company-profile-statuses { grid-column: 2 / 4; display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.company-status-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 18px;
  background: #effcf3;
  color: #347357;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.company-status-arrow { flex: none; font-size: 16px; line-height: 21px; font-weight: 400; }
.company-status-copy { min-width: 0; overflow-wrap: anywhere; }
.company-status-copy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.company-status-copy a:hover { text-decoration: none; }
.company-profile-summary { grid-column: 2 / 4; min-width: 0; }
.company-profile-categories { display: flex; flex-wrap: wrap; gap: 8px 16px; }
@media (max-width: 639px) {
  .company-profile-header { grid-template-columns: 48px minmax(0, 1fr) auto; column-gap: 12px; row-gap: 14px; margin-right: 16px; }
  .company-profile-logo { width: 48px; height: 48px; grid-row: 1; }
  .company-profile-name { font-size: 28px; align-self: center; }
  .company-profile-statuses, .company-profile-summary { grid-column: 1 / 4; }
  .company-profile-follow button, .company-profile-follow a { padding-left: 8px; padding-right: 8px; }
}
