/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

.cs-profile {
  font-family: 'Inter', sans-serif;
  max-width: 67rem;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}

.cs-profile__header {
  text-align: center;
  margin-bottom: 20px;
}

.cs-profile__avatar {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #e0e0e0;
  border-radius: 50%;
  position: relative;
}

.cs-profile__initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.cs-profile__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-profile__section {
  padding-bottom: 20px;
}

.cs-profile__section-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}

.cs-profile__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 42rem;
  margin: 0 auto;
}

.cs-profile__field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  margin-top: 2.4rem;
}

.cs-profile__label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.cs-profile__input {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
}

.cs-profile__description {
  margin-top: 10px;
}

.cs-profile__text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #919191;
  margin: 0;
}

.cs-profile__text--small {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #919191;
}
