.content__body {
  display: flex;
  flex-direction: column;
  /* gap: 60px; */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.content__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 50px;
}

.content__background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: calc(100% - var(--shelfs-offset) * 2);
  height: 100%;
  border-radius: 14px;
  background-color: var(--shelf-background-color);
}

.shelf__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  width: 100%;
  height: var(--shelf-height);
  /* transition: .15s height ease; */
}

.shelf__wrapper[data-shelf-id="footer"] {
  height: var(--footer-shelf-height);
}

.shelf__wrapper:not([data-shelf-id="footer"]):not([hidden]):first-child .shelf__background,
.shelf__wrapper[hidden]:not([data-shelf-id="footer"])+.shelf__wrapper:not([data-shelf-id="footer"]):not([hidden]) .shelf__background {
  border-radius: 10px 10px 0 0;
}

.shelf__image--default {
  width: 100%;
  z-index: 2;
}

.shelf__image--default svg path {
  stroke: var(--shelf-background-color);
  fill: var(--shelf-background-color);
}

body.template--default .shelf__wrapper[data-shelf-id="hero"] {
  height: 480px !important;
}

.shelf__wrapper:first-of-type .shelf__background {
  border-radius: 10px 10px 0 0;
}

.shelf__wrapper:last-of-type .shelf__background {
  border-radius: 0 0 10px 10px;
}

.shelf__inner__wrapper {
  /* position: absolute;
  bottom: 0;
  right: 0;
  left: 0; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 100%; */
}

.shelf__background {
  width: calc(100% - var(--shelfs-offset) * 2);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}

.shelf__image {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shelf__image--template {
  width: 100%;
  z-index: 2;
}

.shelf__content {
  width: 100%;
  position: absolute;
  bottom: 65%;
  padding: 0 20px;
  z-index: 3;
}

.shelf__issues {
  display: flex;
  flex-direction: row;
  gap: var(--issues-gap);
  align-items: flex-end;
  margin: 0 auto !important;
  width: calc(100% - var(--shelfs-offset) * 2);
  padding: 0 50px;
}

.shelf__shadow__wrapper {
  position: absolute;
  top: 50%;
  height: 80px;
  width: calc(100% - var(--shelfs-offset) * 2);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shelf__shadow {
  width: 100%;
  height: 5px;
  -webkit-box-shadow: 0px 23px 35px 4px var(--shelf-shadow-color);
  -moz-box-shadow: 0px 23px 35px 4px var(--shelf-shadow-color);
  box-shadow: 0px 23px 35px 4px var(--shelf-shadow-color);
  position: relative;
  top: 10px;
}

.shelf__neon {
  position: absolute;
  bottom: -9px;
  width: 70%;
  height: 10px;
  background: rgb(63, 193, 210);
  background: linear-gradient(90deg, rgb(196 227 231) 0%, rgb(149 233 245) 100%);
  z-index: 1;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 15px 75px 24px rgb(63, 193, 210);
  -moz-box-shadow: 0px 15px 75px 24px rgb(63, 193, 210);
  box-shadow: 0px 15px 75px 24px rgb(63, 193, 210);
  filter: blur(0.7px);
}

.shelf__neon::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  width: 100%;
  height: 8px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 0px 14px 8px rgb(40 176 195);
  -moz-box-shadow: 0px 0px 14px 8px rgb(40 176 195);
  box-shadow: 0px -14px 32px 27px rgb(40 176 195);
  filter: blur(0.7px);
}

.shelf__issue {
  display: flex;
  flex-direction: column;
  width: calc(100% / var(--issues-per-shelf));
  max-width: 300px;
}

.shelf__issue.disabled {
  opacity: 0;
  visibility: hidden;
}

.shelf__issue__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--shelf-info-border);
  padding: 12px 12px 30px 12px;
  margin-bottom: -25px;
  position: relative;
  background:#F5F5F5;
  border-radius: 5px;
  /* transition: .15s opacity ease, .15s visibility ease; */
}

body.template--theme-3 .shelf__issue__info,
body.template--theme-3 .shelf__hero__info {
  border-radius: 4px;
  z-index: 1;
}

body.template--theme-3 .shelf__hero__wrapper::before {
  box-shadow: 3px 3px 10px 3px #000;
}

.shelf__issue__info__header {
  /*
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  */

  display: flex;
  align-items: center;
  justify-content: space-evenly;
  align-content: space-around;
  flex-direction: column;
}

.shelf__issue__info__icon.icon--bookmark {
  position: absolute;
  left: 4%;
  top: 10px;
  /* transform: translateY(-50%); */
}

.shelf__issue__info__icon svg {
  height: 100%;
}

.shelf__issue__info__icon svg polygon {
  fill: var(--icon-bookmark-color);
}

.shelf__issue__info__share {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 2.5%;
  top: 5px;
}

.shelf__issue__info__share:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.shelf__issue__info__share:hover svg * {
  stroke: #000;
}

.shelf__issue__info__share svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
}

.shelf__issue__info__share svg * {
  stroke: var(--icon-bookmark-color);
}

.shelf__issue__info__title {
  font-size: 0.9rem;
  color: var(--shelf-text-color);
  font-weight: bold;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  max-width: 100%;
  -webkit-box-orient: vertical;
  text-align: center;
}

.shelf__issue__info__description {
  font-size: 0.75rem;
  color: var(--shelf-text-color);
  line-height: 1.3;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: -5px;
  max-width: 95%;
}

.shelf__issue__image__wrapper {
  padding: 0 3px;
  /* transition: .15s transform ease; */
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.shelf__issue__image__wrapper svg {
  width: 100%;
  transition: all 50ms ease-out;
}

.shelf__issue__image__wrapper svg:hover {
  transform: scale(1.05);
}

.shelf__issue__image__wrapper svg * {
  pointer-events: none;
}

/* 
.shelf__issue__image__wrapper:hover {
  transform: translateX(.2rem)
} */

.shelf__hero__wrapper {
  max-width: 1000px;
  width: 90%;
  gap: 45px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

body.template--default .shelf__hero__wrapper.shelf__hero__wrapper--landscape .shelf__hero__info {
  margin-top: -10px;
}

.shelf__hero__image__wrapper {
  position: relative;
  /* transition: .15s transform ease; */
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 400px;
}


.shelf__hero__image__wrapper svg {
  height: 380px;
  width: 100%;
}

.shelf__hero__wrapper--landscape .shelf__hero__image__wrapper {
  width: 100%;
}

.shelf__hero__wrapper--landscape .shelf__hero__image__wrapper svg {
  height: auto;
  width: 100%;
}

/* .shelf__hero__image__wrapper:hover {
  transform: translateX(.2rem)
} */

.shelf__hero__image {
  width: 100%;
  z-index: 1;
  height: 400px;
}

.shelf__hero__info__wrapper {
  max-width: 100%;
  /* max-width: 60%; */
}

.shelf__hero__info {
  max-width: 50%;
  width: auto;
  right: 0;
  left: 0;
  background-color: var(--hero-info-background);
  border: 1px solid var(--hero-info-border);
  display: flex;
  flex-direction: column;
  z-index: 0;
  padding: 0;
  align-items: flex-end;
  padding-left: 70px;
}

.shelf__hero__wrapper--landscape {
  max-width: 1200px;
  /* padding: 0 3% 0 50px; */
}

.shelf__hero__wrapper--landscape .shelf__hero__image__wrapper {
  max-width: 50%;
}

.shelf__hero__wrapper--landscape .shelf__hero__info__wrapper {
  /* max-width: 50%; */
}

.shelf__hero__info__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 2.75rem;
  line-height: 3.75rem;
}

.shelf__hero__info__icon {
  position: absolute;
  left: -45px;
  top: -2px;
  width: 25px;
  height: 45px;
}

.shelf__hero__info__icon svg {
  width: 25px;
  height: 45px;
}

.shelf__hero__info__icon svg polygon {
  fill: var(--icon-bookmark-color);
}

.shelf__hero__info__title {
  font-weight: bold;
  /* text-transform: uppercase; */
  color: var(--shelf-text-color);
  font-size: 100%;
  line-height: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  /* display: flex; */
  /* flex-direction: column; */
  /* width: 100%; */
}

.shelf__hero__info__title span {
  width: 100%;
  font-size: 100%;
}

.shelf__hero__info__title span:last-of-type {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shelf__hero__info__description {
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: var(--shelf-text-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.shelf__hero__info__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.shelf__hero__info__btn {
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  color: var(--button-text-color);
  font-weight: 700;
  gap: 10px;
  padding: 8px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 30px;
  transition: .15s background ease;
}

.shelf__hero__info__btn .icon svg path {
  fill: var(--button-text-color);
  stroke: var(--button-text-color);
}

.shelf__hero__info__btn .icon svg circle,
.shelf__hero__info__btn .icon svg line {
  stroke: var(--button-text-color);
}

.shelf__hero__info__btn:hover {
  color: #fff;
  background-color: var(--button-text-color);
}

.shelf__hero__info__btn:hover svg circle,
.shelf__hero__info__btn:hover svg line {
  stroke: #fff;
}

.shelf__hero__info__btn:hover svg path {
  fill: #fff;
  stroke: #fff;
}

.shelf__search__empty {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--shelf-info-background);
  border: 1px solid var(--shelf-info-border);
  padding: 20px 35px 45px 35px;
  height: 300px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shelf__search__empty__text {
  color: var(--shelf-text-color);
  font-size: 2.4rem;
  font-weight: 500;
  opacity: 0.5;
}
