/*
  LegendGames Legal Document Styles
  Usage: Terms of Service, Privacy Policy, Code of Conduct
*/

:root {
    --cobalt: #0047ab;
    --bg-main: #f5f7fb;
    --bg-accent: #eaf0ff;
    --text-main: #2b2b2b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    background-color: var(--bg-main);
    color: var(--text-main);
}

.container {
    max-width: 820px;
    margin: 24px auto;
    padding: 0 24px 32px;
}

/* Headings */

h1 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

h2 {
    font-weight: 600;
    font-size: 23px;
    margin-top: 28px;
    border-bottom: 2px solid var(--cobalt);
    padding-bottom: 5px;
}

h3 {
    font-weight: 600;
    font-size: 21px;
    margin-top: 22px;
    border-bottom: 1px solid var(--cobalt);
    padding-bottom: 5px;
}

/* Text */

p {
    margin: 10px 0;
}

strong,
b {
    font-weight: 400;
    color: var(--cobalt);
}

/* Lists */

ul {
    margin: 8px 0 8px 18px;
    padding: 0;
}

ul li {
    margin: 6px 0;
}

ul li::marker {
    color: var(--cobalt);
}

/* Links */

a {
    color: var(--cobalt);
    text-decoration: underline;
}

a:visited {
    color: var(--cobalt);
}

/* Selection */

::selection {
    background: var(--cobalt);
    color: #ffffff;
}

/* Meta / Info */

.last-modified {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--cobalt);
    margin-bottom: 18px;
}

/* Table of Contents */

.table-of-contents {
    background-color: var(--bg-accent);
    padding: 14px 18px;
    border-radius: 8px;
    border: 2px solid var(--cobalt);
    margin-bottom: 20px;
}

.table-of-contents h2 {
    margin-top: 0;
}
