/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.page-template-default .embla {
  overflow: hidden;
  padding-bottom: 2rem;
}
.page-template-default .embla__container {
  grid-column: content / full;
  display: flex;
  gap: 0.5rem;
}
/* @media screen and (min-width: 1024px) {
  .page-template-default .embla__container {
    gap: 1rem;
  }
} */

.page-template-default .embla__slide {
  flex: 0 0 90%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .page-template-default .embla__slide {
    flex: 0 0 55%;
  }
}
@media screen and (min-width: 1024px) {
  .page-template-default .embla__slide {
    flex: 0 0 33%;
  }
}
/* 
@media screen and (min-width: 768px) {
  .iws-coach-showcase .embla__slide {
    flex: 0 0 55%;
  }
}
@media screen and (min-width: 1024px) {
  .iws-coach-showcase .embla__slide {
    flex: 0 0 33%;
  }
} */

/********************************************************************************
* Print view of Workshop Detail Pages
********************************************************************************/
@media print {
  .single-workshop {
  }

  .single-workshop .indes-header {
    display: none;
  }

  .single-workshop main.base-grid > .indes-spacer {
    display: none;
  }

  .single-workshop .indes-back-to-archive {
    display: none;
  }

  .single-workshop .article-right {
    margin-top: 0px;
  }

  .single-workshop .article-left {
    padding-top: 10px;
  }

  .single-workshop h1 {
    font-size: 30px;
  }

  .single-workshop .font-small {
    font-size: 1rem;
  }

  .single-workshop .single-workshop-color {
    print-color-adjust: exact;
  }

  .single-workshop .pb-8 {
    padding-bottom: 0px;
  }

  .single-workshop .pt-8,
  .single-workshop .pt-4 {
    padding-top: 0.25rem;
  }

  .single-workshop .single-workshop-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }

  .single-workshop .coach-picture {
    flex-direction: column;
  }

  .single-workshop .site-footer {
    display: none;
  }
}

/********************************************************************************
* Workshop Schedule
********************************************************************************/
.workshop-schedule__wrapper {
  --indes--workshop--schedule--border-color: rgba(0, 0, 0, 0.05);
  --indes--workshop--schedule--hr-color: rgba(0, 0, 0, 0.5);
  --indes--workshop--schedule--bg-color: rgba(0, 0, 0, 0.05);
  --indes--workshop--schedule--link-color: rgba(0, 0, 0, 0.9);
  --indes--workshop--schedule--max-width: 2400px;
  overflow-x: auto;
  padding-right: 0.5rem;
  border-left: 1px solid var(--indes--workshop--schedule--border-color);
  width: 100vw;
  max-width: var(--indes--workshop--schedule--max-width);
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .workshop-schedule__wrapper {
    width: 100%;
  }
}

.workshop-schedule {
  width: fit-content;
  position: relative;
  display: grid;
  gap: 1.5px;
  border: 1px solid var(--indes--workshop--schedule--border-color);
  border-width: 1px 1px 1px 0;
}

.workshop-schedule::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background-color: var(--indes--workshop--schedule--border-color);
}

.workshop-schedule > * {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.workshop-schedule__cell {
  display: flex;
  flex-direction: column;
}

.workshop-schedule__header {
  border-bottom: 1px solid var(--indes--workshop--schedule--border-color);
}

.workshop-entry {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.workshop-entry--next {
}

.workshop-entry__type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.15rem;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.workshop-entry:hover .workshop-entry__type {
  height: 100%;
  opacity: 0.15;
}
.workshop-entry__type--bg-fixed {
  height: 100%;
  opacity: 0.075;
}

.workshop-entry a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  text-decoration: none !important;
  color: var(--indes--workshop--schedule--link-color);
}

.schedule-firstcol {
  position: sticky;
  z-index: 10;
  left: 0;
  font-weight: bold;
  background-color: #fff;
  border-right: 1px solid var(--indes--workshop--schedule--border-color);
}

/********************************************************************************
* Coach Showcase
********************************************************************************/
.iws-coach-showcase .coach-card__workshop-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  translate: 0 100%;
  transition: translate 0.3s ease-in-out;
}
.iws-coach-showcase .coach-card:hover .coach-card__workshop-section {
  translate: 0 0;
}
