* {
  box-sizing: border-box;
}
html, body {
  padding: 0;
  margin: 0;
  min-width: 320px;
}
body {
  background: #F2F0EB;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.75;
  color: #4a4845;
}
a {
  color: #8C4B3E;
  text-decoration: none;
}
a:hover {
  color: #2C2B29;
}
label {
  cursor: pointer;
  color: #4a4845;
}
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  color: #2C2B29;
  line-height: 1.3;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }

.section {
  margin-bottom: 45px;
}

input[type="text"], input[type="email"], input[type="password"], select {
  padding: 15px;
  border: 1px solid #C7B299;
  border-radius: 0;
  width: 100%;
  background: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
}
input:focus {
  border-color: #2C2B29;
  outline: none;
}
input:focus::placeholder {
  color: transparent;
}
input[disabled] {
  opacity: 0.5;
}

.center { text-align: center; }
.right { text-align: right; }
.small { font-size: 0.875em; }
.error { color: #8C4B3E; }

.button {
  background: #2C2B29;
  padding: 18px 45px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: #F2F0EB;
  display: inline-block;
  min-width: 150px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s ease;
}
.button:hover {
  background: #8C4B3E;
  color: #F2F0EB;
}
.button.button-outline {
  background: transparent;
  border: 1px solid #2C2B29;
  color: #2C2B29;
}
.button.button-outline:hover {
  background: #2C2B29;
  color: #F2F0EB;
}

.container {
  margin: 60px auto 15px auto;
  max-width: 600px;
}

.wrap {
  background: #F2F0EB;
  padding: 50px 40px;
  border: none;
  box-shadow: none;
}

.header {
  border-bottom: 1px solid #C7B299;
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.header .logo img {
  width: auto;
  max-width: 180px;
}

.unsub-all {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #C7B299;
}

.row {
  margin-bottom: 25px;
}

.lists {
  list-style-type: none;
  padding: 0;
}
.lists li {
  margin: 0 0 10px 0;
  padding-left: 20px;
  position: relative;
}
.lists li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #C7B299;
}
.lists .description {
  margin: 0 0 15px 0;
  font-size: 0.875em;
  line-height: 1.5;
  color: #6B7075;
  margin-left: 20px;
}

.form .nonce {
  display: none;
}
.form .captcha {
  margin-top: 30px;
}

.archive {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
}
.archive .date {
  display: block;
  color: #6B7075;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.archive li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C7B299;
}
.archive li:last-child {
  border-bottom: none;
}
.feed {
  margin-right: 15px;
}

.home-options {
  margin-top: 40px;
}
.home-options a {
  margin: 0 10px;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pg-page {
  display: inline-block;
  padding: 0 12px;
  text-decoration: none;
}
.pg-page.pg-selected {
  font-weight: bold;
  color: #2C2B29;
}

.login .submit {
  margin-top: 30px;
}
.login button {
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login button img {
  max-width: 24px;
  margin-right: 10px;
}
.login input[name=totp_code] {
  font-size: 2em;
  letter-spacing: 5px;
  text-align: center;
}

#btn-back {
  display: none;
}

footer.container {
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #6B7075;
  margin-top: 40px;
  margin-bottom: 40px;
}
footer a {
  color: #6B7075;
  text-decoration: none;
}
footer a:hover {
  color: #2C2B29;
}

@media screen and (max-width: 650px) {
  .wrap {
    margin: 0;
    padding: 30px 20px;
    max-width: none;
  }
  .container {
    margin: 30px auto;
  }
}