body {
	font-family: sans;
  margin: 0;
  color: #2a2a2a;
}

a,
a:visited {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
}

a.current {
  color: purple;
}

h1 { font-size: 1.5em; }
h2 { font-size: 1.35em; }
h3 { font-size: 1.1em; }

ol { padding: 0; }
q { font-style: italic; }

h1.Kicker {
  margin: 3cm 0;
  font-size: 5em;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 90vw;
}

h1.Kicker > img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  font-size: 0;
}

img.Kicker {
  margin: 3cm 0;
  width: 100%;
  max-width: 90vw;
  height: 100px;
  object-fit: contain;
  font-size: 0;
}

#Backdrop {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	filter: brightness(90%);
	z-index: -1;
}

#Header {
  padding: 10px;
}

.NoWrap { white-space: nowrap; }

.Report {
  margin: 10px;
  padding: 5px;
  border: 1px solid gray;
  overflow: auto;
  list-style-type: none;
}

.Report > img {
  float: left;
  margin: 5px;
}

.Report > div { overflow: auto; }

.Content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Paper {
	width: 100%;
	max-width: 800px;
	margin-bottom: 2cm;
	background-color: #fafafa;
	box-shadow: 0 0 15px #666;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Paper > * { margin: 0 20px; }
.Paper > :first-child { margin-top: 20px; }
.Paper > :last-child { margin-bottom: 20px; }

.Description {
  text-align: center;
}

.Written h2 {
  margin: 0;
}

.Written > span {
  margin-left: 16px;
}

.Written > p {
  white-space: pre-wrap;
}


.Cover {
	align-items: center;
}

.Cover .GpsStats {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
}

.Cover .GpsStats.g3x2 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.Cover .GpsStats.g2x1 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.Cover .GpsStats > * {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.Cover .GpsStats > * > :last-child {
  font-size: .9em;
  color: #999;
}

.Cover .Text {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  gap: 20px;
}

.Cover .Text .Quote {
  display: flex;
  gap: 12px;
  font-style: italic;
}

.Cover .Text .Quote img {
  width: 24px;
}

.Cover .Text .Quote > :first-child { align-self: start; }
.Cover .Text .Quote > :nth-child(2) { text-align: center; }
.Cover .Text .Quote > :last-child { align-self: end; }

.Cover .Text .Summary  {
  white-space: pre-wrap;
  align-self: start;
}


.Map {
  height: 512px;
  width: 100%;
  max-width: 768px;
  box-sizing: border-box;
  border: 1px solid gray;
}

.Map > * {
  width: 100%;
  height: 100%;
}


.Carousel {
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;

  display: flex;
  flex-wrap: nowrap;
}

.Carousel > * {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;

  display: flex;
  flex-direction: column;
}

.Carousel .Photo {
  display: flex;
}

.Carousel .Photo > :first-child,
.Carousel .Photo > :last-child {
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  cursor: pointer;
  width: 64px;
  max-height: 512px;
}

.Carousel .Photo > :first-child {
  margin-right: -48px;
  justify-content: left;
  padding-left: 2px;
}

.Carousel .Photo > :last-child {
  margin-left: -48px;
  justify-content: right;
  padding-right: 2px;
}

@media (hover: hover) {
  .Carousel .Photo > :first-child:hover,
  .Carousel .Photo > :last-child:hover {
    background-color: rgba(0, 0, 0, .5);
    color: white;
  }
}

.Carousel > :first-child .Photo > :first-child,
.Carousel > :last-child .Photo > :last-child {
  visibility: hidden;
}

.Carousel img {
  box-sizing: border-box;
  width: 50%;
  aspect-ratio: 3/2;
  border: solid gray;
  border-width: 1px 1px 0px;
  flex-grow: 1;
  object-fit: contain;
  background-color: lightgray;
}

.Carousel .Caption {
  box-sizing: border-box;
  padding: 4px;
  border: solid gray;
  border-width: 0 1px 1px;
  margin: 0 16px 8px 16px;

  display: flex;
  flex-direction: row;
  gap: 10px;
}

.Carousel .Caption > :first-child {
  flex-grow: 1;
  margin: 10px;

  display: flex;
  align-items: center;
}

.Carousel .Caption > :last-child {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  align-items: end;
}
