.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.home-title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.home-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.home-note {
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .home-content {
    gap: 24px;
  }

  .home-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .home-actions {
    gap: 14px;
  }
}
