/* 野刻 Wild Tick - v2 */
:root {
  --bg: #fff;
  --ink: #111;
  --soft: #666;
  --faint: #f5f5f2;
  --line: rgba(0, 0, 0, .10);
  --accent: #d47a2c;
  --green: #536b56;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: ui-serif, Georgia, "Noto Serif SC", "Songti SC", serif;
  line-height: 1.72;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  left: -180px;
  top: -180px;
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(circle,
      rgba(212, 122, 44, .10) 0%,
      rgba(212, 122, 44, .06) 35%,
      rgba(212, 122, 44, .02) 55%,
      transparent 75%);

  filter: blur(10px);
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto
}

.site {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.rail {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .30);
  backdrop-filter: blur(18px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px
}

.logo strong {
  display: block;
  font-size: 25px;
  letter-spacing: .12em;
  color: var(--ink);
}

.logo span {
  display: block;
  color: var(--soft);
  font: 12px/1.2 ui-sans-serif, system-ui;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-top: 6px
}

.logo .mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font: 900 18px/1 ui-sans-serif, system-ui;
  letter-spacing: -.08em;
}

.nav {
  display: grid;
  gap: 12px;
  margin-top: 50px;
  font: 15px ui-sans-serif, system-ui;
  color: var(--soft)
}

.nav a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid transparent
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink)
}
.nav span {
  color: #bbb;
}
.rail-note {
  color: var(--soft);
  font-size: 14px
}

.rail-note b {
  color: var(--ink)
}

.rail-note a:hover {
  color: var(--accent)
}

.main {
  min-width: 0
}

.mobile-top {
  display: none
}

.hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 40px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;

  background:
    linear-gradient(
      to right,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 35%,
      rgba(255,255,255,.72) 100%
    ),
    url('../img/photo-1566893350348-fbd863765d77.jpg');

  background-size:cover;
  background-position:right bottom;
  background-repeat:no-repeat;
  background-attachment:fixed;

  filter:
    grayscale(.12)
    contrast(.94)
    brightness(1.02);

  opacity:.95;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;

  background:
    radial-gradient(
      circle at left top,
      rgba(212,122,44,.10),
      transparent 32%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: end;
}

.kicker {
  color: var(--accent);
  font: 800 12px ui-sans-serif, system-ui;
  text-transform: uppercase;
  letter-spacing: .2em;
}

h1 {
  margin: 18px 0 24px;
  font-weight: 500;
  font-size: clamp(50px, 8vw, 50px);
  line-height: .88;
  letter-spacing: -.075em;
}

.lead {
  max-width: 720px;
  color: var(--soft);
  font-size: 21px
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  cursor: default;
}

.hero-card img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  filter: grayscale(.12)
}

.hero-card h2 {
  font-size: 26px;
  line-height: 1.08;
  margin: 18px 4px 6px;
  letter-spacing: -.04em
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--soft);
  font: 13px ui-sans-serif, system-ui
}

.section {
  padding: 50px 0;
}
.list-section {
  padding: 0;
} 
.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title:before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--ink)
}

.section-title h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 50px 0;
}

.page-btn {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--soft);
  background: var(--bg);
}

.page-btn.active,
.page-btn:hover {
  color: var(--bg);
  background: var(--ink);
}

.timeline {
  display: grid;
  gap: 18px
}

.item {
  display: grid;
  grid-template-columns: 150px 1fr 220px;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
  transition: .25s;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.item-date {
  color: var(--soft);
  font: 14px ui-sans-serif, system-ui
}

.item h3 {
  font-size: 32px;
  line-height: 1.08;
  margin: 0 0 8px;
  letter-spacing: -.04em
}

.item p {
  margin: 0;
  color: var(--soft)
}

.item img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(.15)
}

.tag {
  display: inline-flex;
  background: #fff2e3;
  color: var(--accent);
  border-radius: 999px;
  padding: 5px 10px;
  font: 800 12px ui-sans-serif, system-ui;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  border-radius: 36px;
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--faint);
}

.panel.dark {
  background: var(--ink);
  color: #fff
}

.panel h2 {
  font-size: 22px;
  line-height: 1;
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: -.04em
}

.panel p {
  color: var(--soft);
  margin: 0
}

.panel.dark p {
  color: rgba(255, 255, 255, .7)
}

.subscribe {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.subscribe input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 10px 16px
}

.btn {
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  align-items: center;
  font: 14px ui-sans-serif, system-ui
}

.panel.dark .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}

.page-head {
  padding: 50px 0 34px;
  text-align: left
}

.page-head h1 {
  max-width: 920px
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px
}

.chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font: 14px ui-sans-serif, system-ui;
  background: #fff
}

.chip.active,
.chip:hover {
  background: var(--ink);
  color: #fff
}

.article-hero {
  padding: 50px 0 30px
}
.article-hero .lead {
  max-width: 100%;
  padding: 12px;
  color: var(--soft);
  font-size: 17px;
  background: #f5f5f2;
  border-radius: 10px;
}
.breadcrumb {
  color: var(--soft);
  font: 14px ui-sans-serif, system-ui
}

.breadcrumb a {
  color: var(--accent)
}

.article-wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 90px;
}
.article-wrap img {
  width: 100%;
  margin-bottom: 30px;
  max-height: 550px;
  border-radius: 20px;
  object-fit: cover;
  filter: grayscale(.12)
}

.content {
  font-size: 19px;
}

.content p {
  margin: 0 0 24px;
  color: #333;
  white-space: normal !important;
}
.content span {
  margin: 0 0 24px;
  color: #333;
  white-space: normal !important;
}
.content h2 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 500;
  margin: 52px 0 16px
}

.content blockquote {
  margin: 38px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  background: var(--faint);
  border-radius: 0 26px 26px 0;
  font-size: 26px;
  line-height: 1.42
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--soft);
  text-align: center;
  font: 14px ui-sans-serif, system-ui;
}
@media(max-width:1600px){
  .container {
    width:min(calc(100% - 40px), 900px);
  }
  .article-wrap{
    width:min(calc(100% - 80px), 900px);
  }

  .article-cover{
    width:min(calc(100% - 80px), 900px);
  }

  .article-info{
    display:none;
  }

}
@media(max-width:960px) {
  .site {
    display: block
  }

  .rail {
    display: none
  }

  .mobile-top {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
  }

  .mobile-top .logo-text {
    display: none
  }

  .mobile-links {
    display: flex;
    gap: 14px;
    color: var(--soft);
    font: 14px ui-sans-serif, system-ui
  }
  .mobile-links a.active {
    color: var(--ink);
    font-weight: 600;
  }
  .hero-grid,
  .list-grid,
  .article-wrap {
    grid-template-columns: 1fr
  }

  .item {
    grid-template-columns: 1fr
  }

  .item img {
    width: 100%;
    height: 230px
  }

  .split {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }

  .article-info {
    display: none;
  }

  .article-wrap {
    width: min(calc(100% - 28px), 760px);
  }
}

@media(max-width:620px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero {
    padding-top: 48px
  }

  .hero-card {
    transform: none
  }

  .hero-card img {
    height: 300px
  }

  .item h3 {
    font-size: 26px
  }

  .subscribe {
    flex-direction: column
  }

  .subscribe input {
    height: 44px
  }

  .content {
    font-size: 17px
  }

  .content h2 {
    font-size: 32px
  }
}