/**
 * Member Spotlight
 *
 * @package creaunited_2020
 */
.crea-spotlight__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
@media (min-width: 1200px) {
  .crea-spotlight__inner {
    padding: 4.5rem 2rem;
  }
}
.crea-spotlight__label {
  margin: 0 0 1.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--crea-ink-faint);
}
.crea-spotlight__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 768px) {
  .crea-spotlight__grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.75rem;
  }
}
.crea-spotlight__media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.crea-spotlight__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--crea-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.crea-spotlight__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .crea-spotlight__avatar {
    width: 200px;
    height: 200px;
  }
}
.crea-spotlight .crea-card__initials {
  font-size: 2.5rem;
  color: var(--crea-surface-ink-faint);
}
.crea-spotlight__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 64px;
  padding: 0.625rem 0.875rem;
  background-color: var(--crea-surface);
  border-radius: 6px;
}
.crea-spotlight__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .crea-spotlight__logo {
    width: 200px;
  }
}
.crea-spotlight__name {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--crea-ink);
}
.crea-spotlight__name a {
  color: var(--crea-ink);
  text-decoration: none;
}
.crea-spotlight__name a:hover {
  color: var(--crea-ink);
  text-decoration: underline;
}
.crea-spotlight__title {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--crea-ink-soft);
}
.crea-spotlight__company {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  color: var(--crea-ink-soft);
}
.crea-spotlight__company a {
  color: inherit;
  text-decoration: none;
}
.crea-spotlight__company a:hover {
  color: var(--crea-ink);
  text-decoration: underline;
}
.crea-spotlight__bio {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--crea-ink-soft);
  max-width: 42em;
}
.crea-spotlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.crea-spotlight__tag {
  padding: 0.3125rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--crea-ink-soft);
  border: 1px solid var(--crea-rule);
  border-radius: 999px;
}
