/* -----------------------------
   Base
----------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  max-width: 920px;
  margin: 40px auto;
  padding: 0 16px;
  color: #222;
  background: #fff;
}

/* -----------------------------
   Typography
----------------------------- */

h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  margin: 10px 0;
}

strong {
  font-weight: 600;
}

small {
  color: #666;
}

/* -----------------------------
   Links
----------------------------- */

a {
  color: #0066cc;
  text-decoration: none;
  word-break: break-word;
}

a:hover {
  text-decoration: underline;
}

/* -----------------------------
   Layout elements
----------------------------- */

hr {
  margin: 32px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* -----------------------------
   List (L1 core)
----------------------------- */

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

/* address line */
li span {
  color: #666;
  font-size: 14px;
}

/* website link */
li a {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
}

/* -----------------------------
   Table (preview)
----------------------------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 14px;
}

th,
td {
  border: 1px solid #eee;
  padding: 8px;
  text-align: left;
}

th {
  background: #f5f5f5;
  font-weight: 600;
}

/* -----------------------------
   Buttons / CTA links
----------------------------- */

.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  background: #1f4f8a;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.cta:hover {
  background: #183e6c;
  text-decoration: none;
}

/* -----------------------------
   Mobile
----------------------------- */

@media (max-width: 600px) {

  body {
    margin: 20px auto;
    padding: 0 12px;
    font-size: 16px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  li {
    margin-bottom: 18px;
    padding: 14px;
  }

  table {
    font-size: 13px;
  }

  th, td {
    padding: 6px;
  }
}
