html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #ececec;
  color: #575757;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: #666666;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #b44343;
  text-decoration: underline;
}

.topbar {
  background: #efefef;
  border-bottom: 1px solid #d8d8d8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.topbar-inner {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 8px 0 10px;
}

.logo-wrap {
  display: inline-block;
  color: #3e3e3e;
}

.logo-word {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.logo-sub {
  margin-top: 4px;
  font-size: 6px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: #7c7c7c;
}

.page-wrap {
  width: min(100% - 32px, 760px);
  margin: 24px auto 0;
}

.content-card {
  background: #ffffff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.article-header {
  display: flex;
  align-items: stretch;
  padding: 24px 24px 12px 0;
}

.accent-bar {
  width: 10px;
  min-width: 10px;
  background: #d93a48;
  margin-right: 14px;
}

h1 {
  margin: 0;
  color: #434343;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 29px;
  line-height: 1.2;
}

.content-body {
  padding: 6px 26px 26px 26px;
}

.content-body p,
.content-body ul {
  margin: 0 0 24px;
}

.content-body p:first-child {
  color: #666666;
}

.content-body strong {
  color: #444444;
  font-weight: 700;
}

.content-body ul {
  padding-left: 20px;
}

.content-body li {
  margin-bottom: 10px;
}

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

.site-footer {
  width: min(100% - 32px, 760px);
  margin: 12px auto 40px;
  text-align: center;
  color: #777777;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer a {
  color: #b85757;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .logo-word {
    font-size: 48px;
  }

  .page-wrap,
  .topbar-inner,
  .site-footer {
    width: min(100% - 20px, 760px);
  }

  .article-header {
    padding: 20px 18px 10px 0;
  }

  .content-body {
    padding: 6px 18px 18px 18px;
  }

  h1 {
    font-size: 24px;
  }
}
