/*******************************************************************************
 * DEFAULT FONT
 *******************************************************************************/

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--aero-c-frame-text);
}

/*******************************************************************************
 * PARAGRAPH
 *******************************************************************************/

p {
  margin: 0;
}

p:has(+ p){
  margin-bottom: var(--aero-content-spacing-related);
}

/*******************************************************************************
 * HEADINGS
 *******************************************************************************/

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3, h5 {
  font-weight: 400;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
  color: var(--aero-c-heading);
}

h4 {
  font-size: 15px;
  font-weight: 700;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 13px;
  font-weight: 700;
}

/*******************************************************************************
 * LINK
 *******************************************************************************/

a, a:visited, a:hover, a:focus, a:active {
  text-decoration: none;
}

a, a:visited, a:focus, a:active {
  color: var(--aero-c-link);
}

a:hover {
  color: var(--aero-c-link-hover);
}

/*******************************************************************************
 * LIST
 *******************************************************************************/

/* Common */

ul, ol {
  padding: 0 0 0 2em;
  margin: 0;
}

/* Unordered */

ul {
  list-style-type: square;
}

/* Ordered */

ol {
  list-style-type: decimal;
}

/*******************************************************************************
 * UTILS
 *******************************************************************************/

.text-break {
  word-break: break-word;
}
