.oh-programme {
  position: relative;
  margin: clamp(64px, 7vw, 120px) clamp(24px, 8vw, 160px);
}

.oh-programme__layout {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.oh-programme__intro {
  display: grid;
  gap: 1rem;
}

.oh-programme__title-small {
  margin: 0;
}

.oh-programme__days-label {
  margin: 0;
}

.oh-programme__description {
  margin: 0;
  color: rgba(5, 0, 34, 0.75);
}

.oh-programme__content {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

.oh-programme__day {
  display: grid;
  gap: 0;
  width: min(317px, 100%);
}

.oh-programme__day-select {
  width: 100%;
  padding: 11px 20px;
  border: 1.2px solid #050022;
  border-radius: 5px;
  background: #f2f3f8;
  color: #050022;
  font-family: "Aptos", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.oh-programme__day-select:focus-visible {
  outline: 2px solid #0CC2C3;
  outline-offset: 4px;
}

.oh-programme__dropdown {
  display: none;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: visible;
}

.oh-programme.is-enhanced .oh-programme__day-select {
  display: none;
}

.oh-programme.is-enhanced .oh-programme__dropdown {
  display: block;
}

.oh-programme__dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  color: #050022;
  font-family: "Aptos", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  border: 1.2px solid #050022;
  border-radius: 5px;
  background: #f2f3f8;
}

.oh-programme__dropdown summary::-webkit-details-marker {
  display: none;
}

.oh-programme__dropdown summary:focus-visible {
  outline: 2px solid #0CC2C3;
  outline-offset: 4px;
}

.oh-programme__dropdown[open] {
  border-color: transparent;
  box-shadow: none;
}

.oh-programme__dropdown[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.oh-programme__choices {
  display: none;
  padding: 12px 20px 12px;
  background: #f2f3f8;
  border: 1.2px solid #050022;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: none;
  position: static;
}

.oh-programme__dropdown[open] .oh-programme__choices {
  display: block;
}

.oh-programme__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #050022;
  margin: 0;
}

.oh-programme__choice:not(:last-child) {
  margin-bottom: 10px;
}

.oh-programme__choice input[type="radio"] {
  width: 18px;
  height: 18px;
}

.oh-programme__dropdown-icon {
  display: inline-flex;
  width: 13px;
  height: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.oh-programme__dropdown-icon svg {
  width: 100%;
  height: 100%;
  stroke: #050022;
  stroke-width: 2px;
}

.oh-programme__dropdown[open] .oh-programme__dropdown-icon {
  transform: rotate(180deg);
}

.oh-programme__items {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

.oh-programme__item {
  border-bottom: 1px solid rgba(5, 0, 34, 0.15);
  padding-bottom: clamp(12px, 2vw, 16px);
}

.oh-programme__session {
  margin: 0;
}

.oh-programme__toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  font-weight: 600;
  color: #050022;
}

.oh-programme__toggle:focus-visible {
  outline: 2px solid #0CC2C3;
  outline-offset: 4px;
}

.oh-programme__icon {
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oh-programme__icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.oh-programme__icon-h,
.oh-programme__icon-v {
  transition: opacity 0.2s ease;
}

.oh-programme__toggle[aria-expanded="true"] .oh-programme__icon-v {
  opacity: 0;
}

.oh-programme__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  max-width: 90%;
}

.oh-programme__panel[hidden] {
  display: none;
}

.oh-programme__panel-inner {
  padding-top: clamp(12px, 2vw, 16px);
  color: rgba(5, 0, 34, 0.8);
}

.oh-programme__panel-inner p {
  margin: 0 0 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  max-width: 90%;
}

.oh-programme__panel-inner p:last-child {
  margin-bottom: 0;
}

.oh-programme__empty {
  margin: 0;
  color: rgba(5, 0, 34, 0.75);
}

@media (max-width: 767px) {
  .oh-programme__layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .oh-programme__layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .oh-programme__intro {
    grid-column: 1 / span 4;
  }

  .oh-programme__content {
    grid-column: 5 / span 8;
  }
}
