* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  color: #000;
}

.site-main {
  border: 1px solid #000;
  max-width: 1100px;
  width: calc(100% - 4rem);
  margin: 2rem auto;
}

img {
  display: block;
  max-width: 100%;
}

h1 {
  text-transform: uppercase;
}

h1,
h2 {
  font-size: 2.5rem;
}

a {
  color: inherit;
}

p {
  line-height: 1.7;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
}
.container:last-child {
  border-bottom: none;
}
.container__slider {
  overflow: hidden;
  border-bottom: 1px solid #000;
  position: relative;
  display: flex;
}
.container__slider .swiper {
  width: calc(100% - 4rem);
}
.container__slider__title {
  width: 4rem;
  color: #fff;
  position: relative;
  flex: 0 0 auto;
  background-color: #5a7472;
  border-right: 1px solid #000;
  z-index: 10;
}
.container__slider__title h2 {
  position: absolute;
  top: 47.5%;
  left: 75%;
  transform-origin: left;
  transform: rotate(-90deg) translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
}
.container__slider__linkto {
  display: inline-block;
  width: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.container__slider__cards {
  color: inherit;
  text-decoration: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-right: 1px solid #000;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .container__slider__cards:hover {
    background-color: #5a7472;
    color: #fff;
  }
  .container__slider__cards:hover h3 {
    color: #fff;
  }
  .container__slider__cards:hover .container__slider__linkto {
    width: 18px;
    opacity: 1;
  }
}
.container__slider__cards h3 {
  color: #5a7472;
  transition: color 0.3s ease-out;
}
.container__slider__next, .container__slider__prev {
  position: absolute;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000;
}
.container__slider__next:hover, .container__slider__prev:hover {
  background-color: #000;
}
.container__slider__next {
  top: 0;
  left: 0;
  border-bottom: 1px solid #000;
}
.container__slider__prev {
  border-top: 1px solid #000;
  bottom: 0;
  left: 0;
}
.container__slider__gap {
  flex: 1 1 auto;
}
.container__slider .swiper-slide:last-child > .container__slider__cards {
  border-right: 0;
}
.container__slider .swiper-slide {
  height: auto;
}
.container__slider .swiper-button-next,
.container__slider .swiper-button-prev {
  color: #fff;
  transform: scale(0.4);
}
.container__slider .swiper-button-prev {
  top: 10%;
  left: 20px;
}
.container__slider .swiper-button-next {
  top: 90%;
  left: 20px;
}
.container.art {
  padding: 2rem;
}

.swiper-cards {
  display: flex;
}

.col {
  display: flex;
  flex-direction: column;
}
.col__split__col {
  padding: 2rem;
  flex: 1 1 10rem;
}
.col__split__col:not(:last-child) {
  border-bottom: 1px solid #000;
}
.col__img {
  padding: 2rem;
  border-left: 1px solid #000;
}
.col__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.col__imprint {
  padding: 2rem;
}
.col__entry-content {
  padding: 2rem;
}
.col__entry-content p, .col__entry-content ul ol {
  margin: 1rem 0;
}
.col__entry-content ul, .col__entry-content ol {
  margin-left: 1.5rem;
}
.col__entry-content h1 {
  font-size: 1.75rem;
}
.col__entry-content h2 {
  font-size: 1.5rem;
}
.col__entry-content h3 {
  font-size: 1.25rem;
}
.col__entry-content h4 {
  font-size: 1.15rem;
}
.col__entry-content hr {
  margin: 2rem 0;
}

p {
  margin: 1rem 0;
  line-height: 1.6;
}
p:last-child {
  margin-bottom: 0;
}
p:first-child {
  margin-top: 0;
}

.mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 90%;
  }
  .site-main {
    width: calc(100% - 2rem);
    margin: 1rem auto;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .container {
    grid-template-columns: 1fr;
  }
  .col__img.mobile {
    border-left: none;
    border-bottom: 1px solid #000;
  }
  .container__slider {
    display: block;
    position: relative;
  }
  .container__slider__title {
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid #000;
  }
  .container__slider__next,
  .container__slider__prev {
    display: none;
  }
  .container__slider__title {
    width: 100%;
  }
  .container__slider__title h2 {
    transform: rotate(0);
    left: inherit;
    top: inherit;
    bottom: inherit;
    right: inherit;
    position: relative;
    flex: 1 1 auto;
    text-align: center;
  }
  .container__slider .swiper {
    width: 100%;
  }
  .container.art {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */