@import url("https://fonts.googleapis.com/css?family=Exo+2:400,700&subset=cyrillic");
:root {
  font-size: 14px;
  --container-max: 900px;
  --nav-offset: 6rem;
  --color-text: #151515;
  --color-bg: #fff;
  --color-link: #151515;
  --color-link-hover: #000000;
  --color-close: #a22d1d;
  --page-padding: 1.5rem;
  --c-gap: 0.5rem;
  --column: 80px;
  --column-count: 4;
  --aspect: 4/5;
  --font-size-l: 18px;
  --font-size-xl: clamp(2rem, 10vw, 6rem);
  --panel-gap: 1rem;
  --panel-img-size: calc((100vh - var(--page-padding) * 2) * 4 / 5 - var(--panel-gap));
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.5;
  font-size:1em;
}

.wrapper {
  padding: 0 8% 50px;
  width: 100%;
}

article {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

ul {
  width:100%;
}

h1 {
  font-size:2.6em;
  margin:0;
  text-align:center;
  font-family: 'Maven Pro', sans-serif;
}
h3 {
  margin:0 0 2em;
  text-align:center;
  font-weight:normal;
  font-family: georgia, times;
  font-style:italic;
  color:#777;
  font-size:1em;
}

p {
  text-align:left;
  font-size:1em;
}

h1 span {
  color: #e46c5a;
}

h1 span:last-child {
  color: #fa543b;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

hr.dotted {
  background-color: #fff;
  border-top: 2px dotted #8c8b8b;
}

a {
  color: #256ea8;
  text-decoration: none;
}

.heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 30px auto;
  color: var(--color-text);
  font-family: 'halyard-display', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
  text-transform: lowercase;
}

.heading__title {
  font-family: 'owners-xnarrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  margin: 0;
  line-height: 0.77;
}

.heading__meta::after {
  content: '↜';
  font-family: serif;
  font-size: 1.5rem;
  line-height: 0.2;
  vertical-align: middle;
  margin-left: 0.5rem;
  display: inline-flex;
}