
/* =========================================================
   BASE / RESET
   ========================================================= */
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px; /* 1rem = 10px */ user-select: none;
}
body {
  font-family: "Mukta", "HelveticaNeue", sans-serif;
  font-weight: 400;
}
svg, canvas {
  touch-action: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

/* Typography */
h1, h2, h3, h4, h5 {
  margin-bottom: 0.1rem;
  font-weight: 600;
}
/* Headings reset */
h1, h2, h3, h4, h5{
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}
h2 {
  font-size: 2.6rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.9rem;
}
h5 {
  font-size: 1.8rem;
}
p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-bottom: 0.5rem;
}
/* Kill default paragraph margins (UA + WP) */
p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-top: 0;
  margin-bottom: 0;
}
ul {
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-left: 2em;
  margin-bottom: 1em;
}
ol {
  margin-left: 2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
a:link, a:visited, a:hover, a:active {
  color: #000;
}

/* =========================================================
   SITE LAYOUT / ARCHITECTURE - Only #middle_column constrains width to 780
   ========================================================= */

#left_column, #right_column {
  display: none;
}
#column_wrapper {
  display: block;
}
#middle_column {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.1rem;
  box-sizing: border-box;
}

/* ONLY blog posts get 3 columns */
.single #column_wrapper {
  display: flex;
}
.single #left_column, .single #right_column {
  display: block;
  flex: 1;
}
.single #middle_column {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

/* =========================================================
   FORMS (global)
   ========================================================= */

input:not([type="radio"]):not([type="checkbox"]) {
  -webkit-appearance: none;
}
input[type="text"], input[type="password"], input[type="email"], input[type="search"] {
  width: 100%;
  border-radius: 0;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  box-sizing: border-box;
}
input[type="button"], input[type="submit"], input[type="reset"] {
  width: 100%;
  max-width: 100rem;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.4rem 2rem;
  margin: 0;
  border-radius: 0.8rem;
  cursor: pointer;
  box-sizing: border-box;
  border: none;
  outline: none;
}
select {
  padding: 0.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  box-sizing: border-box;
}
label {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-align: left;
}

/* =========================================================
   FOOTER
   ========================================================= */

#footer {
  padding: 2rem 1rem 1rem;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
#footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
#footer .menu-item {
  margin: 0 1rem;
  font-weight: 700;
}
#footer .copyright {
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-top: 0.8rem;
}
#menu-footer a {
  font-weight: normal;
  text-decoration: none;
}

/* =========================================================
   PRIVACY / TERMS PAGE
   ========================================================= */

#privacy_terms {
  font-size: 16px;
  line-height: 24px;
}
#privacy_terms h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
#privacy_terms a {
  word-break: break-all;
}
#privacy_terms ul, #privacy_terms ol {
  display: inline-block;
  text-align: left;
  margin-left: 3rem;
  margin-bottom: 1rem;
}
#privacy_terms ol {
  margin-top: 0.2em;
}
#privacy_terms ol ul {
  list-style-type: disc;
}
#privacy_terms li {
  font-size: 1.8rem;
  line-height: 1.4em;
  margin-bottom: 1.1em;
}
