@charset "utf-8";


/* =========================
   Works List
========================= */

.works-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.work-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e6e6e6;
}

/* 最後の作品だけ線を消す */
.work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap; /* スマホで折り返す */
}

.work-title {
  margin: 0;
  font-size: 1.05rem;
}

.work-title a {
  color: #222;
  text-decoration: none;
}

.work-title a:hover {
  text-decoration: underline;
}

.work-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.work-summary {
  font-size: 0.95rem;
}




/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 768px) {
  .work-title {
    font-size: 1.1rem;
  }
  .work-list {
    gap: 2rem;
  }

}


@media screen and (max-width: 480px) {
  .work-title {
    font-size: 1.05rem;
    line-height: 1.5;
  }

    .work-status {
    margin-bottom: 0.4rem;
  }



}