/* Top Text */
.top-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-200);
  line-height: 1.25;
}

.top-text h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  color: var(--text-default);
}

.top-text p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: var(--text-default);
}

.sign-up-btn {
  display: block;
  color: #fff;
  background-color: #202223;
  text-align: center;
  padding: 16px 0px;
  text-decoration: none;
}


/* Social Row */
.social-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-400);
}

.social-row__divider {
  flex: 1;
  min-width: 0;
  height: 1px;
  background-color: var(--border-default);
}

.social-buttons {
  display: flex;
  gap: var(--spacing-200);
  flex-shrink: 0;
}

.social-buttons a {
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.social-buttons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
