/* Curriculum Studio + learner study — polished forms (events/add style) */

/* ---- Page form shell (series new/edit) ---- */
.curr-form-page {
  max-width: 720px;
  margin: 0 auto;
}
.curr-back-row {
  margin: 0 0 0.85rem;
}
.curr-form-top-actions,
.curr-form-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.curr-form-bottom-actions {
  margin: 2rem 0 0.5rem;
}

/* Collapsible glass sections — match events form readability */
.curr-form-section.collapsible-section,
.collapsible-section.glass {
  display: block;
  margin-bottom: 1rem;
  padding: 0;
  overflow: visible;
  border-radius: var(--radius-large, 16px);
  border: 1px solid var(--primary-border, rgba(0, 255, 255, 0.18));
  background: var(--bg-panel, rgba(30, 30, 30, 0.68));
  backdrop-filter: var(--blur, blur(12px));
}
.collapsible-summary,
.curr-form-section > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary, #0ff);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.collapsible-summary::-webkit-details-marker,
.curr-form-section > summary::-webkit-details-marker {
  display: none;
}
.collapsible-summary::before,
.curr-form-section > summary::before {
  content: "▸";
  display: inline-block;
  transition: transform 0.15s ease;
  opacity: 0.85;
  font-size: 0.9em;
}
details[open] > .collapsible-summary::before,
details[open].curr-form-section > summary::before {
  transform: rotate(90deg);
}
.collapsible-content {
  padding: 0 1.15rem 1.25rem;
  overflow: visible;
}

/* Force proper form-group layout even if pastoral * reset exists */
.curr-styled-form .form-group,
.curr-form-page .form-group,
.curr-series-edit .form-group,
.curr-lesson-meta .form-group {
  display: block;
  margin: 0 0 1.15rem;
  max-width: 100%;
  min-width: 0;
}
.curr-styled-form .form-group:last-child,
.curr-form-page .form-group:last-child {
  margin-bottom: 0.25rem;
}
.curr-styled-form .control-label,
.curr-form-page .control-label,
.curr-series-edit .control-label,
.curr-lesson-meta .control-label {
  display: block;
  margin: 0 0 0.4rem;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary, #0ff);
  line-height: 1.35;
}
.curr-styled-form .form-input,
.curr-form-page .form-input,
.curr-series-edit .form-input,
.curr-lesson-meta .form-input,
.curr-styled-form input.form-input,
.curr-styled-form select.form-input,
.curr-styled-form textarea.form-input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.7rem 0.9rem;
  min-height: 2.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-primary, #eee);
  background: var(--bg-card, #252525);
  border: 1px solid var(--primary-border, rgba(0, 255, 255, 0.22));
  border-radius: var(--radius-medium, 10px);
}
.curr-styled-form textarea.form-input,
.curr-form-page textarea.form-input {
  min-height: 7rem;
  resize: vertical;
}
.curr-styled-form .form-input:focus,
.curr-form-page .form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.curr-styled-form .help-text,
.curr-form-page .help-text {
  display: block;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted, #aaa);
  opacity: 0.95;
}
.help-optional {
  font-weight: 400;
  opacity: 0.65;
  font-size: 0.88em;
}
.curr-form-page .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.15rem;
}
@media (min-width: 640px) {
  .curr-form-page .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Hero / library ---- */
.curr-hero {
  text-align: center;
  padding: 1.35rem 1.1rem 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: visible;
}
.curr-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 140%;
  background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 65%);
  pointer-events: none;
}
.curr-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  color: var(--primary);
  position: relative;
}
.curr-hero p {
  margin: 0 auto;
  max-width: 36rem;
  opacity: 0.78;
  font-size: 0.95rem;
  position: relative;
  line-height: 1.45;
}
.curr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}

.curr-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem !important;
}
@media (min-width: 700px) {
  .curr-filters {
    grid-template-columns: 1.4fr 1fr 1fr auto;
  }
}
.curr-filters .form-group {
  margin: 0;
}
.curr-filters .form-input,
.curr-filters select {
  min-height: 2.75rem;
}
.curr-filters .control-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.curr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.curr-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 1px solid var(--primary-border, rgba(0, 255, 255, 0.12));
  min-height: 13rem;
  height: auto;
}
a.curr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--primary) 18%, transparent);
  border-color: color-mix(in srgb, var(--primary) 45%, transparent);
}
.curr-card-cover {
  height: 6rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 35%, #1a1a2e), #16213e 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  flex-shrink: 0;
}
.curr-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curr-card-body {
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  overflow: visible;
  overflow-wrap: anywhere;
}
.curr-card-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  overflow-wrap: anywhere;
}
.curr-card-sub {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.78;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.curr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.55rem;
}
.curr-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: normal;
  overflow-wrap: anywhere;
}
.curr-pill--published,
.curr-pill--live {
  background: color-mix(in srgb, #22c55e 22%, transparent);
  border-color: color-mix(in srgb, #22c55e 40%, transparent);
  color: #86efac;
}
.curr-pill--draft {
  background: color-mix(in srgb, #f59e0b 18%, transparent);
  border-color: color-mix(in srgb, #f59e0b 35%, transparent);
  color: #fcd34d;
}
.curr-pill--archived {
  opacity: 0.65;
}

.curr-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
}
.curr-empty h2 {
  margin: 0.5rem 0 0.4rem;
  color: var(--primary);
}
.curr-empty p {
  margin: 0 auto 1rem;
  max-width: 28rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* Series editor layout */
.curr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 900px) {
  .curr-layout {
    grid-template-columns: 1fr;
  }
  .curr-layout-side {
    order: -1;
  }
}
.curr-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 6rem), 1fr));
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.curr-stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  overflow: visible;
}
.curr-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.2;
}
.curr-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.curr-lesson-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.curr-lesson-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
}
.curr-lesson-item .num {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: color-mix(in srgb, var(--primary) 25%, transparent);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.curr-lesson-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.35;
}
.curr-lesson-item a:hover {
  color: var(--primary);
}

.curr-series-edit .curr-edit-panel {
  padding: 1.15rem 1.2rem;
  margin-bottom: 1rem;
  overflow: visible;
}
.curr-series-edit .curr-edit-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.9rem;
}
.curr-series-edit .curr-edit-title-row h1 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--primary);
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.curr-series-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.curr-series-actions .btn-primary,
.curr-series-actions .btn-secondary,
.curr-series-actions button {
  white-space: normal;
  height: auto;
  min-height: 2.5rem;
}

/* Lesson builder */
/* Ensure add panels can unhide reliably (some browsers leave [hidden] stuck with display:none) */
.curr-add-panel[hidden],
.curr-add-panel.hidden {
  display: none !important;
}
.curr-add-panel.is-open,
.curr-add-panel:not([hidden]) {
  display: block;
  margin-bottom: 0.85rem;
}

.curr-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  position: sticky;
  top: 0.35rem;
  z-index: 5;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg-card, #1a1a1a) 88%, transparent);
  border: 1px solid var(--primary-border, rgba(0, 255, 255, 0.12));
  border-radius: 12px;
}
.curr-toolbar button,
.curr-toolbar .btn-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.5rem;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.15s, border-color 0.15s;
  white-space: normal;
}
.curr-toolbar button:hover,
.curr-toolbar .btn-chip:hover {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}

.curr-block {
  margin-bottom: 0.85rem;
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  scroll-margin-top: 5rem;
  overflow: visible;
}
.curr-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.curr-block-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* Block forms — same readable form-group pattern */
.curr-block .form-group,
.curr-add-panel .form-group {
  display: block;
  margin: 0 0 0.95rem;
}
.curr-block .control-label,
.curr-add-panel .control-label,
.curr-block form label.control-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}
.curr-block .form-input,
.curr-add-panel .form-input {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  min-height: 2.6rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-primary);
  background: var(--bg-card, #252525);
  border: 1px solid var(--primary-border, rgba(0, 255, 255, 0.2));
  border-radius: 10px;
}
.curr-block textarea.form-input,
.curr-add-panel textarea.form-input {
  min-height: 6.5rem;
  resize: vertical;
}

/* Legacy nested label forms (lesson blocks not yet migrated) */
.curr-block form > label:not(.control-label):not(.checkbox-label),
.curr-add-panel form > label:not(.control-label) {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.85rem;
}
.curr-block form > label .form-input,
.curr-add-panel form > label .form-input {
  font-weight: 400;
  color: var(--text-primary);
}

.curr-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.45rem;
}
.curr-choice-row input[type="text"] {
  flex: 1 1 12rem;
  min-width: 0;
}
.curr-choice-row label {
  flex-direction: row !important;
  align-items: center;
  margin: 0 !important;
  white-space: normal;
  font-size: 0.85rem;
}

/* Study experience */
.study-shell {
  max-width: 820px;
  margin: 0 auto;
}
.study-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0.75rem 0 1.25rem;
}
.study-progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 50%, #fff));
  border-radius: inherit;
  transition: width 0.4s ease;
}
.study-block {
  margin-bottom: 1.15rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: color-mix(in srgb, var(--bg-card, #252525) 92%, transparent);
  scroll-margin-top: 1rem;
  overflow: visible;
  overflow-wrap: anywhere;
}
.study-block h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--primary);
}
.study-block .body-text {
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.study-scripture {
  border-left: 3px solid var(--primary);
  padding: 0.65rem 0.9rem;
  margin: 0.4rem 0;
  font-style: italic;
  opacity: 0.95;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-radius: 0 10px 10px 0;
  line-height: 1.55;
}
.study-media img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}
.study-media video,
.study-media iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  background: #000;
}
.study-q {
  margin-top: 0.35rem;
}
.study-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.75rem 0;
}
.study-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.study-option:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, transparent);
}
.study-option:has(input:checked) {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}
.study-option input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.study-fill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.25rem;
  line-height: 2;
  font-size: 1.02rem;
}
.study-fill input {
  min-width: 7rem;
  max-width: 12rem;
  border: none;
  border-bottom: 2px solid var(--primary);
  background: transparent;
  color: var(--text-primary);
  padding: 0.15rem 0.35rem;
  font-size: inherit;
  border-radius: 0;
}
.study-fill input:focus {
  outline: none;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}
.study-result {
  margin-top: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
  line-height: 1.45;
}
.study-result.is-correct {
  display: block;
  background: color-mix(in srgb, #22c55e 18%, transparent);
  border: 1px solid color-mix(in srgb, #22c55e 40%, transparent);
  color: #bbf7d0;
}
.study-result.is-wrong {
  display: block;
  background: color-mix(in srgb, #ef4444 15%, transparent);
  border: 1px solid color-mix(in srgb, #ef4444 35%, transparent);
  color: #fecaca;
}
.study-result.is-done {
  display: block;
  opacity: 0.9;
}
.study-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.curr-encourage {
  font-size: 0.9rem;
  opacity: 0.78;
  text-align: center;
  margin: 0.5rem 0 0;
  line-height: 1.45;
}
.curr-encourage strong {
  color: var(--primary);
  font-weight: 600;
}

.curr-pill--public {
  background: color-mix(in srgb, #38bdf8 18%, transparent);
  border-color: color-mix(in srgb, #38bdf8 40%, transparent);
  color: #bae6fd;
}

.curr-guest-note {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  background: color-mix(in srgb, #38bdf8 12%, transparent);
  border: 1px solid color-mix(in srgb, #38bdf8 28%, transparent);
  position: relative;
}
.curr-guest-note a {
  color: var(--primary);
  font-weight: 600;
}

.curr-access-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.85rem;
}
.curr-access-presets-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-right: 0.15rem;
}
.curr-access-preset,
.btn-chip.curr-access-preset {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.25rem;
}
.curr-access-preset:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, transparent);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
}
.curr-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 640px) {
  .curr-access-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.curr-access-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  margin: 0;
}
.curr-access-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}
.curr-access-card:has(input:checked) {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}
.curr-access-card--public:has(input:checked) {
  border-color: #38bdf8;
  background: color-mix(in srgb, #38bdf8 12%, transparent);
}
.curr-access-card input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.curr-access-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.curr-access-card-body strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.curr-access-card-body span {
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.78;
  font-weight: 400;
}
.curr-access-public-note {
  margin-top: 0.75rem !important;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: color-mix(in srgb, #38bdf8 12%, transparent);
  border: 1px solid color-mix(in srgb, #38bdf8 28%, transparent);
}

/* Soft light theme tweaks */
[data-theme="soft-light"] .curr-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="soft-light"] .curr-block,
[data-theme="soft-light"] .study-block,
[data-theme="soft-light"] .curr-lesson-item {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="soft-light"] .curr-form-section.collapsible-section,
[data-theme="soft-light"] .collapsible-section.glass {
  background: rgba(255, 255, 255, 0.85);
}
