.regulamin {
  padding: 2em 0;
  border-top: 10px var(--color-primary) solid;
}

.row {
}
a {
  color: var(--color-primary);
}
h1 {
  font-size: 2em;
  text-align: center;
  line-height: 1.25em;
  margin: 2em 0 1em;
}

.row:not(:last-child) {
  border-bottom: 1px dashed var(--color-primary);
  padding-bottom: 2em;
}

h2 {
  font-size: 1.6em;
  text-align: center;
  line-height: 1.25em;
  margin: 2em 0 1em;
}

h3 {
  text-align: center;
  line-height: 1.15em;
  margin: 2em 0;
}

img {
  display: block;
  max-width: 100%;
  margin: 1em auto;
}

ul,
ol,
li,
p {
  font-family: var(--font);
  color: var(--color-text);
  line-height: 1.65em;
  text-align: justify;
}

strong {
  font-weight: 600;
}

ol {
  list-style-type: upper-roman;
}
ol + li strong {
  color: red;
}
ol li > ol {
  list-style-type: decimal;
  padding-left: 0.5em;
}
ol li > ol li > ol {
  list-style-type: lower-alpha;
  padding-left: 1em;
}

li.header::marker {
  font-weight: bold;
  font-size: 1.4em;
}
li.header > strong {
  font-size: 1.4em;
  margin: 2.5em 0 1em;
  display: block;
}

table {
  width: 90%;
  margin: 0 auto;
}

table th {
  background-color: #ccc;
  padding: 0.3em;
  text-align: center;
  border-top: 2px #333 solid;
  border-bottom: 2px #333 solid;
}
table td {
  padding: 0.35em;
  border-bottom: 1px #333 solid;
  transition: all 0.2s ease;
  font-size: 0.9em;
}

table tr:hover td {
  background-color: #ececec;
  font-weight: bold;
}

table tr > td:last-child {
  text-align: right;
}
table tr td:first-child {
  width: 15px;
  text-align: center;
}
