body.home {
  background-color: #243a2d;
}

body.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 226dvh;
  background: transparent linear-gradient(180deg, #112218 0%, #243a2d 100%) 0%
    0% no-repeat padding-box;
  z-index: -1;
}

.home .entry-header .entry-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 12px 0;
  top: 26dvh;
  padding: 0 1.5rem;
  width: 100%;
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  text-transform: lowercase;
  z-index: 1;
}

.home .entry-header .entry-title::before {
  content: "Despistaos";
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-transform: lowercase;
}

.home .entry-header .entry-title::after {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  width: 1.5rem;
  height: 1px;
  background-color: var(--white-color);
}

.home .entry-header .post-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home .entry-header .post-thumbnail::after {
  content: "";
  display: block;
  width: calc(100% - 3rem);
  height: 1px;
  background-color: var(--white-color);
}

.home .entry-header .post-thumbnail img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: c enter;
  aspect-ratio: auto;
}

/* SINGLE */

.home .single {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  text-align: center;
  text-transform: uppercase;
}

.home .single .cover img {
  width: 100%;
  max-width: 254px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.36);
}

.home .single .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.home .single .section-content .section-title {
  font-size: 2rem;
}

.home .single .section-content .section-subtitle {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.home .single .platforms {
  display: flex;
  flex-direction: row;
  grid-gap: 0 1.5rem;
  margin-top: 2rem;
}

.home .single .platforms li a svg {
  width: auto;
  height: 37px;
  fill: var(--white-color);
}

.home .single .platforms li.others a .fnne {
  fill: none;
}

.home .single .platforms li.others a .stk {
  stroke: var(--white-color);
}

.home .single .platforms li.others a .iso {
  isolation: isolate;
}

.home .single .button {
  display: flex;
  flex-direction: row;
  grid-gap: 0 1.5rem;
  margin-top: 2rem;
}

/* TOUR */

.home section.tour {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.home section.tour::before {
  content: "";
  display: block;
  margin-bottom: 5.5rem;
  width: 60px;
  height: 1px;
  background-color: var(--white-color);
}

.home section.tour .section-title {
  position: relative;
  font-family: var(--font-family-title);
  font-size: 48px;
  text-align: center;
  line-height: 38px;
}

.home section.tour .section-title::before,
.home section.tour .section-title::after {
  content: "''";
  position: relative;
  display: inline-block;
}

.home section.tour .section-title::before {
  left: -3px;
  margin-left: -20px;
}

.home section.tour .section-title::after {
  top: -27px;
  margin-right: -25px;
  margin-left: 5px;
  transform: rotate(-180deg);
}

.home section.tour .section-subtitle {
  margin-bottom: 1.5rem;
  color: var(--hover-secondary-color);
  font-family: var(--font-family-title);
  font-size: 36px;
  text-align: center;
  line-height: 44px;
}

.home section.tour .entry-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 0 4px;
  padding: 1.5rem 1rem;
  width: 100%;
  border-top: 1px solid var(--white-color);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.home section.tour .entry-event .event-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home section.tour .entry-event .entry-title,
.home section.tour .entry-event .place-title {
  font-size: 18px;
  text-align: center;
}

.home section.tour .entry-event:last-child {
  border-bottom: 1px solid var(--white-color);
}

.home section.tour .entry-event .date {
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 16px;
}

.home section.tour .entry-event .button {
  margin-top: 12px;
  width: 100%;
}

.home section.tour .entry-event .button.no-link {
  padding: 0;
  min-width: 125px;
  min-height: auto;
  border: 0 none;
}

.home section.tour .entry-event .button.disable {
  opacity: 0.6;
}

.home section.tour .more-events a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-gap: 0 1.5rem;
  margin-top: 1.5rem;
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.home section.tour .more-events a svg {
  fill: var(--white-color);
  width: 16px;
  height: auto;
}

/*** 
**** MEDIA SCREEN ****
***/

/* 768px */

@media screen and (min-width: 48rem) {
  body.home::after {
    top: 30dvh;
  }

  .home .entry-header .entry-title {
    top: 35dvh;
    font-size: 4rem;
    grid-gap: 20px 0;
  }

  .home .entry-header .entry-title::before {
    font-size: 5.5rem;
  }

  .home .entry-header .entry-title::after {
    top: calc(69% + -20px);
    width: 5.5rem;
    height: 2px;
    transform: translateY(-50%);
  }

  .home .entry-header .entry-title img {
    max-width: 44rem;
  }

  .home .entry-header .post-thumbnail img {
    height: 982px;
  }

  /* SINGLE */

  .home .single {
    margin: 4rem auto;
    flex-direction: row;
    max-width: 41rem;
    text-align: left;
  }

  .home .single .section-content {
    align-items: flex-start;
    margin-top: 0;
    padding: 0 0 0 3rem;
    line-height: 32px;
  }
	
	.home .single .cover img {
		width: 250px;
	}

  .home section.tour::before {
    width: 120px;
  }

  /* TOUR */

  .home section.tour {
    padding: 0 3rem;
  }

  .home section.tour .event-list {
    margin-top: 2rem;
    width: 100%;
  }

  .home section.tour .entry-event {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem;
  }

  .home section.tour .entry-event .event-header {
    align-items: flex-start;
    width: 25dvw;
  }

  .home section.tour .entry-event .entry-title,
  .home section.tour .entry-event .place-title {
    text-align: left;
  }

  .home section.tour .entry-event .place-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 29dvw;
  }

  .home section.tour .entry-event .button {
    margin-top: 0;
    width: auto;
  }

  .home section.tour .more-events a {
    margin-top: 3rem;
    margin-left: 88px;
  }
}

/* 1024px (Landscape) & 1200px */

@media screen and (min-width: calc(64rem - 1px)) and (orientation: landscape),
  (min-width: 75rem) {
  .top-header .next-concert.scroll-up {
    top: -5rem;
  }

  body.home::after {
    top: 120dvh;
  }

  .home .entry-header .post-thumbnail {
    overflow: hidden;
  }

  .home .entry-header .post-thumbnail img {
    margin-bottom: -14rem;
    width: calc(100dvw + 8rem);
    height: auto;
    transform: translate(-4rem, -14rem);
  }

  .home .entry-header .post-thumbnail::after {
    margin-left: 89px;
    width: calc(100% - 15rem);
  }

  .home .entry-header .entry-title {
    top: 20%;
    right: 0;
    width: calc(100% - 89px);
    text-align: right;
    transform: translateY(-50%);
  }

  .home .entry-header .entry-title::after {
    top: calc(50% + 12px);
    height: 4px;
  }

  .home section.tour .section-subtitle {
    margin-bottom: 3.5rem;
  }

  .home section.tour .event-list {
    margin: 0 auto;
    padding-left: 89px;
    max-width: calc(57rem + 89px);
  }

  .home section.tour .entry-event .event-header,
  .home section.tour .entry-event .place-title {
    width: calc(50% - 124px);
  }
}
