/**
 * LinkedIn company section — homepage.
 */

.nexterra-linkedin-section {
  background: #fff;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.nexterra-linkedin-section .nexterra-seo-home__inner {
  max-width: 40rem;
}

.nexterra-linkedin-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: #f7f6f4;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nexterra-linkedin-card:hover {
  border-color: rgba(10, 102, 194, 0.35);
  box-shadow: 0 8px 28px rgba(10, 102, 194, 0.1);
}

.nexterra-linkedin-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexterra-linkedin-card__icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.nexterra-linkedin-card__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.nexterra-linkedin-card__text span {
  font-size: 0.88rem;
  color: rgba(26, 26, 26, 0.62);
}

.nexterra-linkedin-card__cta {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a66c2;
}

@media (max-width: 540px) {
  .nexterra-linkedin-card {
    flex-wrap: wrap;
  }

  .nexterra-linkedin-card__cta {
    margin-left: 0;
    width: 100%;
  }
}
