.home-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.home-header {
  text-align: left;
  margin: 12px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.home-subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .home-subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .home-container {
    margin-top: 12px;
  }

  .home-header {
    margin-top: 40px;
    gap: 40px;
  }
  .home-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .home-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
}
