:root {
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #244233;
  background: #f5f8f1;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
main {
  max-width: 1280px;
  padding: 0 52px;
  margin: auto;
}
header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1decb;
}
a {
  color: inherit;
}
.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 2px;
}
.brand span {
  width: 36px;
  height: 36px;
  background: #335c3e;
  color: #f3f7ed;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 4px 50%;
  font:
    20px "KaiTi",
    serif;
}
.top-link {
  font-size: 12px;
  text-decoration: none;
}
.intro {
  padding: 68px 0 62px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.edition {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0 0 22px;
}
h1 {
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.4;
  letter-spacing: 1px;
  margin: 0;
}
.lead {
  font-size: 15px;
  line-height: 1.9;
  color: #617261;
  margin: 24px 0 0;
}
.intro aside {
  padding: 7px 0 0 34px;
  border-left: 1px solid #c7d7c0;
  max-width: 325px;
}
.asterisk {
  font-size: 56px;
  color: #72966a;
  line-height: 1;
}
aside h2 {
  font-size: 21px;
  font-weight: 500;
  margin-top: 20px;
}
aside p {
  font-size: 13px;
  line-height: 1.9;
  color: #5e715b;
}
.disclosure {
  border-top: 1px solid #ccdac3;
  padding-top: 17px;
  margin-top: 22px;
  font-size: 11px !important;
}
.collection-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid #cad8c3;
  padding-top: 28px;
  margin-bottom: 24px;
}
.collection-heading h2 {
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
.collection-heading span {
  font-size: 11px;
  color: #6d7c64;
}
.collection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 30px;
}
.preview {
  display: block;
  overflow: hidden;
  border: 1px solid #d5dfce;
  background: #e9efe4;
  aspect-ratio: 1.44;
}
.preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.preview:hover img {
  transform: scale(1.02);
}
.item-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  align-items: center;
  font-size: 11px;
}
.item-meta span {
  color: #79836f;
  letter-spacing: 1px;
}
.item-meta a {
  text-decoration: none;
  border-bottom: 1px solid #7d9470;
  padding-bottom: 3px;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0;
}
article > p {
  font-size: 13px;
  color: #6b7761;
  line-height: 1.8;
  margin: 0;
}
footer {
  margin-top: 64px;
  padding: 35px 0 40px;
  border-top: 1px solid #cbd8c3;
  font-size: 12px;
  color: #5e715a;
}
footer p {
  margin: 0 0 20px;
}
footer div {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}
footer small {
  font-size: 10px;
  line-height: 1.8;
  color: #7a8570;
}
a:focus-visible {
  outline: 3px solid #6b9462;
  outline-offset: 5px;
}
@media (max-width: 700px) {
  main {
    padding: 0 22px;
  }
  header {
    height: 80px;
  }
  .brand {
    font-size: 17px;
  }
  .top-link {
    font-size: 10px;
  }
  .intro {
    padding: 36px 0;
    flex-direction: column;
    gap: 27px;
  }
  .edition {
    font-size: 10px;
    margin-bottom: 17px;
  }
  h1 {
    font-size: 36px;
  }
  .lead {
    font-size: 13px;
  }
  .intro aside {
    max-width: none;
    border-left: 0;
    border-top: 1px solid #c7d7c0;
    padding: 20px 0 0;
    position: relative;
  }
  .asterisk {
    position: absolute;
    right: 10px;
    top: 26px;
    font-size: 44px;
  }
  aside h2 {
    margin: 0 0 12px;
    font-size: 19px;
  }
  aside p {
    margin: 0;
    font-size: 12px;
  }
  .disclosure {
    margin-top: 15px;
    border: 0;
    padding-top: 0;
  }
  .collection-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .collection-heading h2 {
    font-size: 17px;
  }
  .collection-heading span {
    font-size: 10px;
    max-width: 118px;
    line-height: 1.6;
  }
  .collection {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .item-meta {
    margin-top: 13px;
  }
  h3 {
    font-size: 22px;
  }
  footer {
    margin-top: 40px;
  }
  footer div {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .preview img {
    transition: none;
  }
}
