/* ===== Year heading ===== */
.projects-year-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 2px solid var(--ink-900); margin-bottom: 28px; }
.projects-year-head--future { border-bottom-color: var(--border-warm); margin-top: 60px; }
.projects-year-head__title { font-family: var(--font-display); font-weight: 900; font-size: 26px; margin: 0; }
.projects-year-head--future .projects-year-head__title { color: var(--text-meta); }
.projects-year-head__note { margin: 0; font-size: 14px; color: var(--text-meta); }

/* ===== Grid ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ===== Project detail ===== */
.project-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.project-meta__date { font-family: var(--font-latin); font-size: 14px; color: var(--text-meta); }
.project-meta__tag { background: #fff; border: 1px solid var(--border-warm); font-size: 14px; padding: 4px 12px; }
.project-body__lead { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.1vw, 24px); line-height: 1.7; margin: 0 0 26px; }
.project-optional-label {
  font-family: var(--font-latin); font-size: 14px; letter-spacing: .18em; color: var(--text-meta);
  margin: 56px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-sand);
}
.project-optional-block { border: 1px dashed var(--border-warm); background: var(--surface-card); padding: 26px 28px; margin-bottom: 18px; }
.project-optional-block:last-child { margin-bottom: 0; }
.project-optional-block__label { margin: 0 0 12px; font-weight: 700; font-size: 16px; }
.project-optional-block__note { margin: 0; color: var(--text-meta); font-size: 14px; line-height: 1.9; }
.project-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.project-optional-block__note li {
    margin-bottom: 20px;
}
.media-placeholder.full-width {
  grid-column: 1 / -1; 
  width: 100%;
    min-height: 400px;
}
.profile-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 650px;       
  padding: 20px 0;
  box-sizing: border-box;
}
.profile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-title {
  margin: 0 0 12px 0;
  font-size: 20px; 
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.02em;
}
.profile-name {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* 右側：画像エリア */
.profile-image {
  width: 150px;
  height: 150;
  flex-shrink: 0;
    border-radius: var(--radius-image);
  border: 1px solid var(--border-sand);
  overflow: hidden;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
@media (max-width: 767px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-image-grid { grid-template-columns: 1fr; }
}
