h1, .h1 { font-family: inherit; font-weight: 600; }
h2, .h2 { font-family: inherit; font-weight: 600; }
h3, .h3 { font-family: inherit; font-weight: 600; }
h4, .h4 { font-family: inherit; font-weight: 600; }
h5, .h5 { font-family: inherit; font-weight: 600; }
h6, .h6 { font-family: inherit; font-weight: 600; }

main {
	padding-block-end: var(--space-xl);
}

main section h1 {
  color: var(--color-theme);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-l);
  line-height: 1.2;
}

main section h2 {
  color: var(--color-theme);
  margin-top: var(--space-l);
  margin-bottom: var(--space-m);
}

main section h3 {
  color: var(--color-theme);
  margin-top: var(--space-m);
  margin-bottom: var(--space-s);
}

main section h4 {
  color: var(--color-theme);
  margin-top: var(--space-m);
  margin-bottom: var(--space-s);
}

main section h5 {
  color: var(--color-theme);
  margin-top: var(--space-m);
  margin-bottom: var(--space-s);
}

main section h6 {
  color: var(--color-theme);
  margin-top: var(--space-m);
  margin-bottom: var(--space-s);
}

main section hr {
  height: 0;
  margin-top: var(--space-m);
  border: 0;
  border-bottom: 1px solid var(--color-theme);
}

main section p {
  font-size: var(--font-size-lg);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-xs);
}

main section ul,
main section ol {
  margin-bottom: var(--space-m);
  padding-left: var(--space-s);
}

main section li {
  font-size: var(--font-size-lg);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-3xs);
}
main section dd {
  padding-left: var(--space-s);
}

main section blockquote {
  border-left: 4px solid var(--color-terracotta);
  padding-left: var(--space-m);
  margin: var(--space-m) 0;
  font-style: italic;
  color: var(--color-neutral-600);
}

main section a {
  color: var(--color-terracotta);
  text-decoration: underline;
  transition: color var(--transition-fast);
  display: inline-block;
}

main section a:hover {
  color: var(--color-theme);
}

main section pre {
	font-size: 1rem;
}

.text-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-neutral-200);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
}

.text-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-terracotta);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-8);
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--color-theme);
}

.back-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 60rem) {
  .text-page {
	padding: var(--space-12) 0;
  }

  main section h1 {
	font-size: var(--font-size-3xl);
  }

  main section h2 {
	font-size: var(--font-size-xl);
  }

  main section p,
  main section li {
	font-size: var(--font-size-base);
  }
}



main table {
	--bs-table-bg: transparent;
	--bs-table-striped-color: #212529;
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: #212529;
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: #212529;
	--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
	caption-side: bottom;
	border-collapse: collapse;
}

main table > :not(caption) > * > * {
	padding: .5rem .5rem;
	background-color: var(--bs-table-bg);
	border-bottom-width: 1px;
	box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

tbody, td, tfoot, th, thead, tr {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-bottom-width: 0px;
}
main table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

main table thead tr {
	border-color: #000;
}
main table tbody tr {
	border-color: #dee2e6;
}
main table tbody tr:nth-of-type(2n+1) {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
	vertical-align: top;
	--bs-table-accent-bg: var(--bs-table-striped-bg);
}





/* ------------------------------------------------------------------------- */ /* splide hero */

/* hero */

.hero {
	margin: -2rem auto 0;
	background: #888;
	width: 100%;
	height: 40vh;
	overflow: hidden;
	position: relative;
}

.hero > .title {
	position: absolute;
	height: 100%;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	grid-column: page-start / page-end;
	margin: 0;
	color: #fff;
	text-shadow: 0 0 8rem #000;
	z-index: 2;
}

.hero > .title h2 {
	font-size: var(--step-5);
}

.hero > .title a {
	margin-block-start: 3rem;
}

.hero > div {
	grid-column: screen-start / screen-end;
}

.hero .title {
}

@media (max-width: 46rem) {
	.hero .title h2 {
		font-size: 1.275rem;
	}
}


.hero > * + * {
	margin-block-start: 0;
}

.hero .bg {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #0004;
	z-index: 1;
}

.hero > .imgs {
	grid-column: screen-start / screen-end;
	margin: 0;
}

.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	aspect-ratio: 16/9;
}

.hero .splide,
.hero .splide__track,
.hero .splide__slide {
	height: 100%;
	overflow: hidden;
}

.hero .splide__slide img {
	transform: scale(1.1)
}

.hero .splide__slide.is-active img {
	transform: scale(1.25) !important;
	transition: transform 7s ease-out;
}



/* ------------------------------------------------------------------------- */ /* pagination */

.f3-widget-paginator {
	grid-column: 1/4;
}

ul.f3-widget-paginator {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 0.25rem;
	margin: 4rem auto;
	clear: both;
}

ul.f3-widget-paginator li {
	background: none;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	margin: 0 4px;
	text-align: center;
}

ul.f3-widget-paginator li a {
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	text-decoration : none;
	color: inherit;
	display : inline-block;
}

ul.f3-widget-paginator li a i {
	font-style: normal;
}

ul.f3-widget-paginator li.current {
	z-index: 2;
	color: #fff;
	text-decoration: none;
	background-color: #6c757d;
	width: 38px;
	height: 38px;
	line-height: 38px;
}
ul.f3-widget-paginator li.disabled {
	z-index: 2;
	color: #ccc;
	text-decoration: none;
}
ul.f3-widget-paginator li a:hover {
	z-index: 2;
	color: #6c757d;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

