html, body { height: 100%; }
body{
  margin:0;
  background:#fff;
  color:#111;
  font-family:"Times New Roman", Times, serif;
  font-size:14px;
}
input, textarea, button, select { font-family: "Times New Roman", Times, serif; }

.topBar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  padding: 16px 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topBar a{
  color:#1a0dab;
  text-decoration:underline;
  font-size:14px;
}

.page{
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 78px 28px 0; /* space for fixed top bar */
}

.askLink{ text-align:center; margin: 20px 0 30px; }
.askLink a{ color:#1a0dab; text-decoration:none; font-size:22px; }
.askLink a:hover{ text-decoration:underline; }

.postList{ list-style:none; padding:0; margin:0; }
.postItem{
  display:grid;
  grid-template-columns:44px 1fr;
  column-gap:18px;
  align-items:start;
  margin:36px 0;
}
.postNum{
  width:44px;
  font-size:16px;
  font-weight:700;
  line-height:1.25;
  padding-top:2px;
}
.postLink{
  display:block;
  width:100%;
  font-size:20px;
  font-weight:700;
  text-decoration: underline;
  color:#111;
  line-height:1.25;
  text-align:right; /* align to right margin */
}

.postTitle{
  text-align:center;
  font-size:20px;
  font-weight:700;
  text-decoration: underline;
  margin: 18px 0 8px;
}
.postBody{
  font-size:14px;
  line-height:1.8;
  margin-top:22px;
}
.postBody h2{
  font-size:14px;
  margin: 18px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.postBody p{ margin: 0 0 16px; }
.postBody img{
  max-width:100%;
  height:auto;
  display:block;
  margin:26px auto;
  border:1px solid #d9d9d9;
}
.postBody img.eqImg{
  width:260px;
  max-width:100%;
  height:auto;
  display:block;
  margin:10px 0 16px;
  border:0;
}
.imgRow{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:wrap;
  margin:26px 0;
}
.imgRow img{
  margin:0;
  width:420px;
  max-width:100%;
}

hr{ border:0; border-top:1px solid #d9d9d9; margin:24px 0; }

.btn{
  font:inherit;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #d9d9d9;
  background:#fff;
  cursor:pointer;
  text-decoration:none;
  color:#111;
  display:inline-block;
}
.btn:hover{ background:#f5f5f5; }

.form{ margin:0 auto; max-width:740px; font-size:14px; line-height:1.8; }
.form label{ display:block; margin:14px 0 6px; }
.form input, .form textarea{
  width:100%;
  font:inherit;
  padding:10px 12px;
  border:1px solid #d9d9d9;
  border-radius:10px;
  outline:none;
  background:#fff;
  color:#111;
}
.form textarea{ min-height:200px; resize:vertical; }
.row{ display:flex; gap:12px; flex-wrap:wrap; }
.row > div{ flex:1; min-width:220px; }
.actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; align-items:center; justify-content:center; }
.note{ color:#444; font-size:14px; text-align:center; margin-top:10px; }

@media (max-width:560px){
  .page{ padding-top: 88px; }
  .postItem{ grid-template-columns: 38px 1fr; column-gap:14px; }
  .postNum{ width:38px; font-size:16px; }
  .postLink{ font-size:18px; }
  .postTitle{ margin-top: 48px; }
}
