.share-section {
  background: #fff;
  padding: 2.5rem 1.5rem;
}

.share-component {
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #e2e5e9;
  border-radius: 1.25rem;
  color: #1a1a1a;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 72rem;
  padding: 1.5rem;
}

.share-component__copy {
  min-width: 0;
}

.share-component__title {
  color: #1a1a1a;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.share-component__description {
  color: #50545b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.35rem 0 0;
}

.share-component__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-component__button {
  align-items: center;
  border: 2px solid #0066cc;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.share-component__button svg {
  flex: 0 0 auto;
  height: 1.1rem;
  width: 1.1rem;
}

.share-component__button--linkedin {
  background: #0066cc;
  color: #fff;
}

.share-component__button--copy {
  background: #fff;
  color: #0066cc;
}

.share-component__button:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.share-component__button:focus-visible {
  outline: 3px solid #00b383;
  outline-offset: 3px;
}

.share-component__status {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 47.99rem) {
  .share-component {
    align-items: stretch;
    flex-direction: column;
    gap: 1.1rem;
  }

  .share-component__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .share-component__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .share-component__button {
    transition: none;
  }
}
