.home-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 4rem;
  padding: 0 1rem;
}

.home-intro .intro-text {
  flex: 1.2;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.home-intro .intro-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.home-intro .intro-text p {
  margin-bottom: 1.25rem;
}

.home-intro .intro-text a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
}

.home-intro .intro-text a:hover {
  color: var(--text-secondary);
}

.home-intro .intro-visual {
  flex: 1;
  max-width: 450px;
}

.home-intro .intro-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1024px) {
  .home-intro {
    flex-direction: column;
    gap: 2rem;
  }

  .home-intro .intro-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .home-intro {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .home-intro .intro-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}