* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter';
  background: #f8f6f3;
  letter-spacing: 0.02em;

}

/* Info 섹션 링크 스타일 */
#info-content {
  display: flex;
  padding: 10vw;
  text-align: center;
  line-height: 1.6;        /* controls vertical spacing between lines */
}

#info-content a {
  color: #333; /* 짙은 회색 */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#info-content a:hover {
  color: greenyellow;
  text-decoration: underline;
}
      /* Hero */
      .tab-content{
        font-size: 0.8em;
        height: 100vh;
        display: flex;
        align-items: center;
        padding-left: 10vw;
        position: relative;
        overflow: hidden;
        line-height: 1.2;
      }

      .tab-content h1 {
        font-size: 2em;
      }


.blinking {
  animation: blink 1s step-start infinite;
  font-weight: 600;       /* optional, to emphasize */
  color: black;        /* optional color */
}

/* Define the blink animation */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Responsive: shrink images but keep 3 per row */
@media (max-width: 1200px) {
  .editorial-project img {
    height: 300px;
  }
  .editorial-project img.wide {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .editorial-project img {
    height: 250px;
  }
  .editorial-project img.wide {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .editorial-project img {
    height: 200px;
  }
  .editorial-project img.wide {
    height: 200px;
  }
}

a {
  color: inherit;        /* inherit text color from parent */
  transition: color 0.3s ease; /* optional: smooth hover color */
}

/* Mobile */
@media (max-width: 900px) {
  .editorial-project {
    grid-template-columns: 1fr;
    gap: 40px;
  }

