/* ============================================================
   ROOT VARIABLES (matching original Thinkific theme)
   ============================================================ */
:root {
  --primary-bg-color: #EAEAEC;
  --secondary-bg-color: #FFFFFF;
  --accent-bg-color: #000000;
  --primary-text-color: #000000;
  --secondary-text-color: #000000;
  --accent-text-color: #FFFFFF;
  --cta-bg-color: #000000;
  --cta-text-color: #FFFFFF;
  --primary-font-family: 'Roboto', ui-sans-serif, system-ui, sans-serif;
  --secondary-font-family: 'Libre Caslon Display', Georgia, serif;
  --button-border-radius: 0px;
  --body-font-weight: 300;
  --title-font-weight: 400;
  --subtitle-font-weight: 300;
  --section-padding-y: 68px;
  --grid-max-width: 1280px;
  --grid-gap: 24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--primary-font-family);
  font-weight: var(--body-font-weight);
  color: var(--primary-text-color);
  background-color: var(--secondary-bg-color);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ============================================================
   GRID
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 var(--grid-gap);
  max-width: var(--grid-max-width);
  margin: 0 auto;
  padding: 32px 24px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  width: 100%;
  position: relative;
}

.section--primary {
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
}

.section--secondary {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-text-color);
}

.section--accent {
  background-color: var(--accent-bg-color);
  color: var(--accent-text-color);
}

.section--small {
  --section-padding-y: 48px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.title {
  font-family: var(--secondary-font-family);
  font-weight: var(--title-font-weight);
  font-size: 2.75rem;
  line-height: 1.2;
}

.subtitle {
  font-family: var(--primary-font-family);
  font-weight: var(--subtitle-font-weight);
  font-size: 1.25rem;
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
}

.heading--sm {
  font-family: var(--secondary-font-family);
  font-size: 1.25rem;
  font-weight: var(--title-font-weight);
  line-height: 1.3;
  margin-bottom: 8px;
}

.body--md {
  font-family: var(--primary-font-family);
  font-weight: var(--body-font-weight);
  font-size: 1rem;
  line-height: 1.65;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   SMOOTH SCROLL
   ============================================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--button-border-radius);
  transition: opacity 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.button--primary {
  background-color: var(--cta-bg-color);
  color: var(--cta-text-color);
}

.button--primary:hover {
  opacity: 0.8;
}

.button--outline {
  background-color: transparent;
  color: var(--primary-text-color);
  border: 2px solid var(--primary-text-color);
}

.button--outline:hover {
  background-color: var(--primary-text-color);
  color: var(--secondary-bg-color);
}

.button--link {
  background: none;
  color: inherit;
  padding: 0;
  font-size: 0.9375rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button--link:hover {
  text-decoration: none;
}

/* ============================================================
   CONTENT CONTAINER (image/video wrapper)
   ============================================================ */
.content-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.content-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* ============================================================
   HERO BANNER (banner-product--inset_image_flipped)
   Image LEFT, Content RIGHT
   ============================================================ */
.banner-product .grid {
  padding: 0 0 0 24px;
  min-height: 540px;
  align-items: stretch;
}

.banner-product .image-or-video {
  grid-column: 1 / span 6;
  margin-left: -24px;
  min-height: 540px;
}

.banner-product__content {
  grid-column: 7 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px 56px 40px;
}

.banner-product__heading {
  margin-bottom: 20px;
}

.banner-product .title {
  font-size: 3.125rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.banner-product .subtitle {
  margin-bottom: 32px;
}

.banner-product__product-actions {
  margin-top: 8px;
}

/* ============================================================
   PRODUCT ACTIONS (price + CTA button)
   ============================================================ */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-actions__price {
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}

.product-actions__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   COURSE METADATA
   ============================================================ */
.course-metadata {
  display: inline-flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.course-metadata--info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--primary-font-family);
}

.course-metadata--info .icon {
  font-size: 1.1rem;
}

/* ============================================================
   HIGHLIGHTS WITH IMAGES
   ============================================================ */
.highlights-with-images .grid {
  gap: 40px var(--grid-gap);
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.highlights-with-images__item {
  grid-column: span 4;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlights-with-images__image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}

.highlights-with-images__image .content-container {
  height: 100%;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-only .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.video-only .image-or-video {
  grid-column: 2 / span 10;
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video__preload {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__preload.hidden {
  display: none;
}

.video__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.video__play-button {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.video__preload:hover .video__play-button {
  background: #fff;
  transform: scale(1.08);
}

.video__play-button svg {
  width: 28px;
  height: 28px;
  fill: #000;
  margin-left: 4px;
}

/* ============================================================
   TITLED PARAGRAPH (About the Course)
   ============================================================ */
.titled-paragraph .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  align-items: start;
}

.titled-paragraph__heading {
  grid-column: 1 / span 4;
}

.titled-paragraph__text {
  grid-column: 5 / span 8;
}

/* ============================================================
   MEDIA AND TEXT (Instructor)
   ============================================================ */
.media-and-text .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  align-items: center;
  gap: 48px var(--grid-gap);
}

.media-and-text .media {
  grid-column: 1 / span 6;
}

.media-and-text .media .image-or-video {
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
}

.media-and-text .details {
  grid-column: 7 / span 6;
}

.media-and-text .details .title {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.media-and-text .details .body--md {
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.curriculum__container {
  grid-column: 1 / span 12;
}

.curriculum__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.curriculum__heading-container .title {
  font-size: 2.25rem;
  margin-bottom: 4px;
}

.curriculum__metadata {
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0.7;
}

.curriculum__expand-all {
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.curriculum__chapter-list {
  list-style: none;
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.curriculum__list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.curriculum__chapter {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

.curriculum__chapter-number {
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.5;
  min-width: 20px;
}

.curriculum__chapter-title {
  flex: 1;
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 1.0625rem;
}

.curriculum__chapter--button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: inherit;
  flex-shrink: 0;
}

.curriculum__chapter--button .toggle {
  transition: transform 0.2s ease;
}

.curriculum__chapter--button[aria-expanded="false"] .toggle {
  transform: rotate(180deg);
}

.curriculum__lesson-list {
  list-style: none;
  padding-bottom: 8px;
}

.curriculum__lesson-list[data-collapsed="true"] {
  display: none;
}

.curriculum__lesson {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 36px;
  font-size: 0.9375rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.curriculum__lesson .icon {
  opacity: 0.5;
  font-size: 1rem;
  flex-shrink: 0;
}

.curriculum__lesson-link--title {
  font-family: var(--primary-font-family);
  font-weight: var(--body-font-weight);
  font-size: 0.9375rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  align-items: center;
}

.cta__heading {
  grid-column: 1 / span 6;
}

.cta__heading .title {
  font-size: 2.25rem;
}

.cta__actions {
  grid-column: 7 / span 6;
}

.cta__actions .subtitle {
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

/* ============================================================
   ICON FONT (Phosphor)
   ============================================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================================
   VALUATION ESTIMATE SECTION
   ============================================================ */
.valuation-section .grid {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.valuation-section__header {
  grid-column: 1 / span 12;
  margin-bottom: 40px;
}

.valuation-section__header .title {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.valuation-section__header .subtitle {
  font-size: 1.0625rem;
  margin-bottom: 0;
  max-width: 600px;
}

/* Card containing the form */
.val-card {
  grid-column: 2 / span 10;
  background: var(--secondary-bg-color);
  padding: 40px 40px 36px;
}

/* Form grid rows */
.val-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.val-form-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.val-form-group {
  display: flex;
  flex-direction: column;
}

/* Labels */
.val-label {
  display: block;
  font-family: var(--primary-font-family);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-text-color);
  margin-bottom: 7px;
}

/* Inputs */
.val-input {
  width: 100%;
  padding: 11px 13px;
  font-family: var(--primary-font-family);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--primary-text-color);
  background: var(--secondary-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.val-input:hover {
  border-color: rgba(0, 0, 0, 0.7);
}

.val-input:focus {
  border-color: var(--primary-text-color);
  border-width: 2px;
  padding: 10px 12px; /* compensate for extra border px */
}

.val-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

/* Select arrow */
select.val-input {
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='%23000'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

/* Currency wrapper */
.val-currency-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.val-currency-symbol {
  position: absolute;
  left: 13px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.val-currency-wrap .val-input {
  padding-left: 26px;
}

/* NAICS search dropdown */
.val-category-wrap {
  position: relative;
}

.val-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 20;
  margin-top: 1px;
  max-height: 220px;
  overflow-y: auto;
  background: var(--secondary-bg-color);
  border: 1px solid var(--primary-text-color);
  display: none;
}

.val-dropdown.visible {
  display: block;
}

.val-dropdown-item {
  padding: 10px 13px;
  font-family: var(--primary-font-family);
  font-size: 0.875rem;
  font-weight: 300;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.val-dropdown-item:last-child {
  border-bottom: none;
}

.val-dropdown-item:hover {
  background: var(--primary-bg-color);
}

.val-dropdown-code {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  margin-right: 6px;
  font-size: 0.8125rem;
}

/* Inline errors */
.val-error {
  font-family: var(--primary-font-family);
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 5px;
  min-height: 1em;
}

/* Submit area */
.val-submit-area {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.val-terms {
  font-family: var(--primary-font-family);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.val-terms a {
  color: var(--primary-text-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.val-submit-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 15px 24px;
  font-family: var(--primary-font-family);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cta-text-color);
  background: var(--cta-bg-color);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.15s;
}

.val-submit-btn:hover {
  opacity: 0.82;
}

.val-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Results block */
.val-result {
  display: none;
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--primary-bg-color);
  border-left: 4px solid var(--primary-text-color);
}

.val-result.visible {
  display: block;
}

.val-result-title {
  font-family: var(--secondary-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.val-result-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.val-result-label {
  font-family: var(--primary-font-family);
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.55);
  min-width: 120px;
}

.val-result-value {
  font-family: var(--secondary-font-family);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--primary-text-color);
}

.val-result-basis {
  font-family: var(--primary-font-family);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 1.6;
}

/* Disclaimer at bottom of section */
.val-disclaimer {
  grid-column: 2 / span 10;
  margin-top: 16px;
  font-family: var(--primary-font-family);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .banner-product .grid {
    padding-left: 24px;
  }

  .banner-product .image-or-video {
    grid-column: 1 / span 5;
  }

  .banner-product__content {
    grid-column: 6 / span 7;
    padding: 40px 24px 40px 32px;
  }

  .banner-product .title {
    font-size: 2.5rem;
  }

  .highlights-with-images__item {
    grid-column: span 6;
  }

  .highlights-with-images__item:nth-child(3) {
    grid-column: 4 / span 6;
  }

  .titled-paragraph__heading {
    grid-column: 1 / span 12;
    margin-bottom: 16px;
  }

  .titled-paragraph__text {
    grid-column: 1 / span 12;
  }

  .media-and-text .media {
    grid-column: 1 / span 12;
  }

  .media-and-text .details {
    grid-column: 1 / span 12;
  }

  .cta__heading {
    grid-column: 1 / span 12;
    margin-bottom: 24px;
  }

  .cta__actions {
    grid-column: 1 / span 12;
  }

  .val-card,
  .val-disclaimer {
    grid-column: 1 / span 12;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 16px;
  }

  .banner-product .grid {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: auto;
  }

  .banner-product .image-or-video {
    grid-column: 1;
    margin-left: 0;
    min-height: 280px;
    max-height: 320px;
  }

  .banner-product__content {
    grid-column: 1;
    padding: 32px 16px;
  }

  .banner-product .title {
    font-size: 2rem;
  }

  .highlights-with-images .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .highlights-with-images__item {
    grid-column: 1;
  }

  .highlights-with-images__item:nth-child(3) {
    grid-column: 1;
  }

  .video-only .image-or-video {
    grid-column: 1 / span 4;
  }

  .titled-paragraph__heading,
  .titled-paragraph__text {
    grid-column: 1 / span 4;
  }

  .media-and-text .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-and-text .media,
  .media-and-text .details {
    grid-column: 1;
  }

  .media-and-text .media .image-or-video {
    height: 280px;
  }

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

  .curriculum__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta__heading,
  .cta__actions {
    grid-column: 1 / span 4;
  }

  .title {
    font-size: 2rem;
  }

  .val-card {
    grid-column: 1 / span 4;
    padding: 24px 20px;
  }

  .val-disclaimer {
    grid-column: 1 / span 4;
  }

  .val-form-row,
  .val-form-row.cols-2 {
    grid-template-columns: 1fr;
  }

  .val-submit-btn {
    max-width: 100%;
  }
}

/* ============================================================
   LEGAL MODALS
   ============================================================ */

.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-modal[hidden] {
  display: none;
}

.lp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.lp-modal__panel {
  position: relative;
  background: #fff;
  color: #000;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.lp-modal__close:hover {
  opacity: 1;
}

.lp-modal__title {
  font-family: var(--secondary-font-family);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 4px;
  padding-right: 32px;
}

.lp-modal__date {
  font-size: 0.8125rem;
  color: #555;
  margin-bottom: 24px;
}

.lp-modal__body h3 {
  font-family: var(--primary-font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
}

.lp-modal__body p,
.lp-modal__body ul {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 10px;
}

.lp-modal__body ul {
  padding-left: 20px;
}

.lp-modal__body ul li {
  margin-bottom: 4px;
}

.lp-modal__body a {
  color: #000;
  text-decoration: underline;
}

.lp-modal__body a:hover {
  opacity: 0.7;
}

@media (max-width: 600px) {
  .lp-modal__panel {
    padding: 40px 20px 28px;
  }

  .lp-modal__title {
    font-size: 1.375rem;
  }
}
