@charset "utf-8";

.item-wrap{
  width: 90%;
  margin: 5rem auto 0;
}

.item-sidebar{
  position: fixed;
  width: 15%;
  top: calc(160px + 20vh);
  left: 0;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.item-sidebar a p{
  font-weight: bold;
}

.item-sidebar a:hover{
  text-decoration: none;
}

.item-sidebar-title{
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 1rem;
  position: relative;
  margin-bottom: 1rem;
}

.item-sidebar-title:before{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 4px;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .item-sidebar{
    position: relative;
    width: 90%;
    top: 0;
    left: 0;
    margin: 2rem auto 1rem;
    padding: 1rem 0 0;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
  }
}