/* Mobile Property Developer Section */
.mobile-developer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
  margin-top: 75px;
}

/* Header with icon */
.mobile-developer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 16px;
  gap: 4px;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
}

.mobile-developer-header img {
  width: 20px;
  height: 20px;
}

.mobile-developer-header h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--page-title-color);
  margin: 0;
}

/* Developer card */
.mobile-developer-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 16px;
  margin: 0 16px;
  width: calc(100% - 32px);
  background: #fcfcfd;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Logo wrapper */
.mobile-developer-logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 74px;
  height: 74px;
  background: #ffffff;
  border-radius: 200px;
}

.mobile-developer-logo {
  width: 74px;
  height: 74px;
}

.mobile-developer-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 225px;
}

/* Developer text */
.mobile-developer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 263px;
}

.mobile-developer-name {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
  width: 100%;
}

.mobile-developer-description {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%;
}

/* Social section */
.mobile-developer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 155px;
}

/* Website section */
.mobile-developer-website {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 4px;
  width: 100%;
}

.mobile-social-label {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #414651;
  margin: 0;
}

.mobile-website-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  justify-content: center;
}

.mobile-website-link:hover {
  text-decoration: underline;
}

.mobile-globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Social media section */
.mobile-developer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 100%;
}

.mobile-social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
}

.mobile-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.mobile-social-icon:hover {
  transform: scale(1.1);
}

.mobile-social-icon svg {
  width: 32px;
  height: 32px;
}
