:root{
  --bg: #f5f1e8;
  --text: #3b352b;
  --muted:#7b7266;
  --h1: 64px;
  --h2: 18px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Microsoft YaHei", Arial;
  background: var(--bg);
  color: var(--text);
}

.page{
  width:min(980px, 92vw);
  margin: 0 auto;
  padding: 28px 0 60px;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  color: var(--muted);
  font-size: 14px;
}

.dateLine{ white-space:nowrap; }

.infoBox{
  display:flex;
  gap:10px;
  align-items:center;
  user-select:none;
}
.infoIcon{ font-size: 26px; line-height:1; }
.infoText{ text-align:right; line-height:1.4; }

.hero{ padding: 28px 0 14px; }
.hero h1{
  margin: 0;
  font-size: var(--h1);
  letter-spacing: 1px;
}

.section{ margin-top: 26px; }
.section h2{
  margin: 0 0 14px;
  font-size: var(--h2);
  font-weight: 700;
}

.apps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
}
@media (max-width: 720px){
  .apps{ grid-template-columns: 1fr; }
}

.app{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color: var(--text);
}
.app:hover{ opacity:.85; }

.appIcon{
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
}

.appMeta{ line-height:1.3; }
.appTitle{ font-weight:700; }
.appSub{ font-size: 12px; color: var(--muted); }

.cols{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 40px;
}
@media (max-width: 980px){
  .cols{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .cols{ grid-template-columns: 1fr; }
}

.colTitle{
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.item a{
  text-decoration:none;
  color: var(--text);
  display:flex;
  gap:10px;
  align-items:center;
}
.item a:hover{ color:#111; }

.favicon{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(0,0,0,.06);
  flex: 0 0 auto;
}

.footer{
  margin-top: 70px;
  text-align:center;
  color: var(--muted);
  font-size: 12px;
}
