.linkedin-badge-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.profile-badge {
  background-color: #f3f2ef;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  overflow: hidden;
  padding: 30px;
  width: 100%;
  min-width: 280px;
}

.profile-badge__header {
  background-color: #000000;
  padding: 12px 16px;
}

.profile-badge__header-logo-icon {
  color: #0a66c2;
  height: 30px;
  width: 84px;
}

.profile-badge__content {
  padding: 24px 16px;
  text-align: center;
}

.profile-badge__content-profile-image {
  border-radius: 50%;
  border: 3px solid #0a66c2;
  margin-bottom: 0;
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-badge__content-profile-name {
  margin-bottom: 8px;
}

.profile-badge__content-profile-name-link {
  color: rgba(0,0,0,0.9);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
}

.profile-badge__content-profile-headline {
  color: rgba(0,0,0,0.6);
  font-size: 16px;
  line-height: 1.4;
  margin: 4px 0 0;
}

.profile-badge__cta-btn {
  background-color: #0a66c2;
  border: none;
  border-radius: 24px;
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.profile-badge__cta-btn:hover {
  background-color: #004182;
}

.profile-badge__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.profile-badge__row:first-child {
  margin-bottom: 30px;
  align-items: flex-start;
}

.profile-badge__row:last-child {
  margin-bottom: 0;
}

.profile-badge__col {
  flex: 1;
  padding: 0 20px;
}

.profile-badge__col:first-child {
  flex: 0 0 auto;
  padding-right: 24px;
}

.profile-badge__col--right {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .profile-badge {
    padding: 15px;
  }

  .profile-badge__content-profile-image {
    width: 120px;
    height: 120px;
  }

  .profile-badge__content-profile-name-link {
    font-size: 18px;
  }

  .profile-badge__content-profile-headline {
    font-size: 14px;
  }

  .profile-badge__cta-btn {
    font-size: 16px;
    padding: 8px 20px;
  }

  .profile-badge__row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .profile-badge__col {
    padding: 0;
  }

  .profile-badge__col--right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .linkedin-badge-container {
    padding: 10px;
  }

  .profile-badge__content-profile-image {
    width: 100px;
    height: 100px;
  }
}

/* Compact version styles */
.linkedin-badge-container--compact {
  padding: 0;
  height: 48px;
}

.profile-badge--compact {
  padding: 8px 16px;
  min-width: auto;
  height: 100%;
}

.profile-badge--compact .profile-badge__row {
  margin: 0;
  height: 100%;
  align-items: center;
  gap: 12px;
}

.profile-badge--compact .profile-badge__content-profile-image {
  width: 32px;
  height: 32px;
  border-width: 1px;
  margin: 0;
}

.profile-badge--compact .profile-badge__col {
  padding: 0;
}

.profile-badge--compact .profile-badge__col--info {
  flex: 1;
  min-width: 0;
}

.profile-badge--compact .profile-badge__content-profile-name {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-badge--compact .profile-badge__content-profile-headline {
  font-size: 12px;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-badge--compact .profile-badge__cta-btn {
  font-size: 12px;
  padding: 4px 12px;
  white-space: nowrap;
} 
