/** @format */

.pose-container {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  box-shadow: 3px 3px 30px rgb(0 0 0 / 6%);
  overflow: hidden;
}

.pose-container .tile-link {
  display: grid;
  grid-template-rows: 302px 1fr;
  transition: 0.3s ease;
  opacity: 1;
  position: relative;
}
.pose-container .tile-link:hover {
  opacity: 0.7;
}
.pose-container .featured-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.pose-container .title,
.course-content .class-duration {
  margin: 15px 0;
  font-family: "Work Sans", sans-serif;
  color: #324945;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.tile-header-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.tile-skill-level {
  font-size: 55px;
  color: #324945;
  letter-spacing: -1.1px;
  font-family: "Crimson Text", sans-serif;
  line-height: 1.1;
  margin: 0;
}

.tile-more-link {
  color: #009ab2;
  font-size: 16px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  margin: 0;
}

.tile-more-link:hover {
  color: #009ab2;
  opacity: 0.7;
  cursor: pointer;
}

.tile-header-border {
  width: 100%;
  opacity: 0.2;
  border-bottom: solid 1px #9ca9bb;
  height: 1px;
  margin: 40px 0;
}

.pose-content p {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #657d80;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  margin: 15px 0 0 0;
}

.pose-content svg,
.course-content .class-duration {
  font-size: 17px;
  margin-right: 5px;
}

.pose-content {
  padding: 20px;
}

.gradient-bg {
  background: rgba(246, 250, 254);
}

.sequence-container {
  display: none;
}

/** Sequence Tiles **/
.sequence-tile {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 261px 1fr;
  min-height: 260px;
  transition: 0.3s ease;
  position: relative;
  box-shadow: 3px 3px 30px rgb(0 0 0 / 6%);
}

.sequence-tile:hover {
  opacity: 0.7;
}

.sequence-tile .featured-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sequence-content {
  padding: 20px;
}

.sequence-content h3.title {
  color: #324945;
  font-family: "Crimson Text", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
}

.sequence-content .excerpt {
  color: #657d80;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .sequence-tile {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 979px) {
  .pose-container .alm-reveal {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .pose-container .alm-reveal,
  .sequence-container .alm-reveal {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 560px) {
  .pose-sequence-toggle .switch {
    width: 350px;
  }
  .toggle-option {
    font-size: 25px;
    margin-top: 2px;
  }
  .pose-sequence-toggle .toggle-thumb:before {
    width: 175px;
    transform: translateX(-2px);
  }
  .pose-sequence-toggle .poses-toggle-checkbox:checked + .toggle-thumb:before {
    transform: translateX(159px);
  }
}
