/* Schedule */

.samasti-schedule__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.samasti-schedule__inner--fluid {
  max-width: none;
}


.samasti-schedule__heading,
.samasti-schedule__day-heading,
.samasti-schedule__intro,
.samasti-schedule__empty,
.samasti-schedule__activity,
.samasti-schedule__location {
  margin: 0;
}

.samasti-schedule__heading + .samasti-schedule__intro {
  margin-top: 1rem;
}

.samasti-schedule__intro {

  line-height: 1.7;
}

.samasti-schedule__intro > :last-child {
  margin-bottom: 0;
}

.samasti-schedule__header + .samasti-schedule__grid,
.samasti-schedule__header + .samasti-schedule__cta-wrap,
.samasti-schedule__grid + .samasti-schedule__cta-wrap {
  margin-top: 2rem;
}

.samasti-schedule__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.samasti-schedule__day {
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid var(--samasti-border, #e0d7ca);
  background: var(--samasti-surface, #ffffff);
  overflow-wrap: anywhere;
}

.samasti-schedule__day-heading {
  padding: 1.25rem;
  color: var(--samasti-dark, #2f3440);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
}

.samasti-schedule__day-heading:focus-visible {
  outline: 3px solid var(--samasti-accent, #8d4f2f);
  outline-offset: -3px;
}

.samasti-schedule__day-content {
  padding: 0 1.25rem 1.25rem;
}

.samasti-schedule__entries {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.samasti-schedule__entry {
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--samasti-border, #e0d7ca);
}

.samasti-schedule__entry:first-child {
  padding-top: 0;
  border-top: 0;
}

.samasti-schedule__time {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  color: var(--samasti-accent, #8d4f2f);
  font-weight: 600;
}

.samasti-schedule__activity {
  color: var(--samasti-dark, #2f3440);
  font-weight: 600;
}

.samasti-schedule__location {
  margin-top: 0.25rem;

}

.samasti-schedule__empty {
  margin-top: 1rem;

  font-size: 1.25rem;
  line-height: 1;
}

.samasti-schedule__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--samasti-dark, #2f3440);
  background: transparent;
  color: var(--samasti-dark, #2f3440);
  font-family: var(--samasti-button-font, "Kumbh Sans", "Helvetica Neue", Arial, sans-serif);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.samasti-schedule__cta:hover {
  border-color: var(--samasti-dark, #2f3440);
  background: var(--samasti-dark, #2f3440);
  color: #ffffff;
}

.samasti-schedule__cta:focus-visible {
  outline: 3px solid var(--samasti-accent, #8d4f2f);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .samasti-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .samasti-schedule__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
