.title {
  margin-left: var(--default-margin);
  width: calc(100% - var(--default-margin));
  display: inline-block;
  margin-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .title {
    margin-bottom: 60px; }
}
.title h3 {
  font-size: 3.2em;
  line-height: 1.4em;
  font-style: italic;
  margin-bottom: 10px;
}
.title h3.h3small {
  font-size: 2em;
  line-height: 1.4em;
  font-style: italic;
  margin-bottom: 10px;
}
/* .title h3.non-italic { */
/*   font-style: normal; */
/* } */
.title p {
  margin: 0;
  font-size: 1.6em;
  line-height: 1.4em;
}
.title img {
  width: 66%;
  float: right;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .title img {
    width: 100%; }
}


.desc {
  display: flex;
  flex-direction: row-reverse;
}
.desc main {
  transition: max-height 1s;
  flex: 66%;
  margin-right: var(--default-margin);
  overflow-x: hidden; /* for carousels */
  position: relative; /* for carousels */
}
@media screen and (max-width: 640px) {
  .main {
    flex: 100%;
  }
}
.desc main em {
  font-size: 1em;
}
.desc main img {
  max-width: 100%;
  margin-bottom: 40px;
}
.desc main a.more {
  display: inline-block;
  text-transform: uppercase;
  color: #707070;
  font-size: 0.6em;
  margin-left: 5px;
  text-decoration: underline;
}
.desc main a.more:hover {
  cursor: pointer;
  color: black;
}

.desc aside {
  flex: 34% 0 0;
  padding: 0 var(--default-margin);
}
@media screen and (max-width: 640px) {
  .desc aside {
    flex: 100%;
    margin: 0px;
  }
}

.desc aside ul {
  width: 100%;
  margin-bottom: 20px;
}

.desc aside a,
.desc aside span.sharer,
.category {
  text-transform: uppercase;
  text-decoration: none;
  color: #707070;
  padding: 2px 0px;
  cursor:pointer;  
  display: block;
}
.desc aside a:hover,
.desc aside span.sharer:hover {
  text-decoration: none;
  color: black;
}
.desc aside span.cp-sharer::after {
  content: ' ' attr(data-after);
  opacity: 0;
}
.desc aside span.copied:after {
  animation-name: fade_in_out;
  animation-duration: 2s;
}


/* about/gallery */
.desc aside img {
  width: 100%;
}


/* store (one item) */
.btn.btn-order {
  width: 200px;
  height: auto;
  color: white;
  display: inline-block;
  position: relative;
  border-radius: 2px;
  text-align: center;
  padding: 20px;
  background-color: black;
  text-transform: uppercase;
  text-decoration: none;
}

.single-store .content {
  padding-bottom: 40px;
}
.single-store .metas {
  display: block;
  clear: both;
  color: black;
  text-transform: uppercase;
}
.single-store .metas a {
  color: #707070;
}
.single-store .metas a:hover {
  color: black;
}

.single-store .carousel img {
  max-height: 60vh;
}

@media screen and (max-width: 640px) {
  .single-store .btn.btn-order {
    width: auto;
  }
  .single-store .metas {
    width: 100%;
    padding: 0;
  }
}


.single-news .col-container .col-100 {
  flex: calc(33% - 2 / 3 * var(--gap)) 0 0;
}

.single-news .col-container .col-100 img {
  max-height: 200px;
}
