@charset "UTF-8";
/* =========================================
  works-list.css  (Shapes School)
  - 修了生の作品一覧ページ用のCSS
========================================= */
#child-hero {
  background-image: url(../img/work-hero.webp);
  background-position: center center;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  #child-hero {
    height: 48vh;
  }
}
@media screen and (min-width: 1024px) {
  #child-hero {
    height: 42vh;
  }
}
#child-hero > div {
  display: grid;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
}
.child-title {
  font-weight: 100;
  text-align: center;
  padding: 1em 0;
}
.works-lead {
  font-size: 20px;
}
.child-sections-gap {
  display: grid;
  width: 100%;
  gap: clamp(24px, 6vw, 48px);
}
.works-card > h2 {
  text-align: center;
  font-weight: normal;
}
.detail-link {
  text-decoration: underline;
  text-align: right;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .student-works-cards {
    gap: 20px;
  }
}
.works-pagination ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}
.works-pagination ul li {
  background-color: var(--c-primary);
  font-family: var(--f-heading);
  padding: 10px;
  border-radius: 2px;
  color: var(--c-bg);
  box-shadow: var(--box-shadow-mini);
  transform: translateY(0);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}
.works-pagination ul li:hover,
.works-pagination ul li:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.18);
  transform: translateY(2px);
  filter: brightness(1.1);
}
.works-pagination ul li.selected-page {
  background-color: var(--c-accent);
}
@media screen and (min-width: 768px) {
  .works-pagination ul li  {
    font-size: 20px;
    padding:16px;
  }
}