.guestSamplesHero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.guestSamplesHero__actions {
  flex: 0 0 auto;
}

.guestSamplesLayout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.guestSamplesSidebar {
  position: sticky;
  top: 92px;
  align-self: start;
}

.guestSamplesPanel,
.guestSamplesViewer__toolbar,
.guestSampleFrameWrap {
  background: var(--guest-surface);
  border: 1px solid var(--guest-border);
  border-radius: var(--guest-radius-lg);
  box-shadow: var(--guest-shadow);
}

.guestSamplesPanel {
  padding: 22px;
}

.guestSamplesPanel__head {
  margin-bottom: 18px;
}

.guestSamplesPanel__eyebrow,
.guestSamplesViewer__eyebrow {
  margin: 0 0 8px;
  color: var(--guest-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guestSamplesPanel__title,
.guestSamplesViewer__title {
  margin: 0;
  color: var(--guest-accent);
  font-size: 1.35rem;
  font-weight: 800;
}

.guestSamplesPanel__desc,
.guestSamplesViewer__desc {
  margin: 8px 0 0;
  color: var(--guest-muted);
  line-height: 1.7;
  font-size: 14px;
}

.guestSampleCards {
  display: grid;
  gap: 12px;
}

.guestSampleCard {
  width: 100%;
  border: 1px solid var(--guest-border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
}

.guestSampleCard:hover,
.guestSampleCard.is-active {
  border-color: var(--guest-primary);
  background: var(--guest-primary-soft);
  box-shadow: 0 8px 18px rgba(12, 159, 220, 0.12);
}

.guestSampleCard__icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--guest-primary-soft);
  color: var(--guest-primary);
  font-size: 20px;
}

.guestSampleCard__body {
  min-width: 0;
}

.guestSampleCard__body strong {
  display: block;
  color: var(--guest-accent);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.guestSampleCard__body small {
  display: block;
  color: var(--guest-muted);
  line-height: 1.5;
}

.guestSampleCard__check {
  color: var(--guest-primary);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.guestSampleCard.is-active .guestSampleCard__check {
  opacity: 1;
}

.guestSamplesNotice {
  margin-top: 16px;
  border-radius: 14px;
  background: #fbfcfd;
  border: 1px solid var(--guest-border);
  color: var(--guest-muted);
  padding: 14px;
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.guestSamplesNotice i {
  color: var(--guest-primary);
  margin-top: 3px;
}

.guestSamplesViewer {
  min-width: 0;
}

.guestSamplesViewer__toolbar {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.guestSamplesViewer__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.guestSampleFrameWrap {
  position: relative;
  overflow: hidden;
  min-height: 780px;
}

.guestSampleFrame {
  width: 100%;
  min-height: 780px;
  border: none;
  display: block;
  background: #fff;
}

.guestSampleLoading {
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--guest-muted);
  font-weight: 700;
  z-index: 3;
}

.guestSampleLoading.is-active {
  display: flex;
}

.guestSampleLoading p {
  margin: 0;
}

@media (max-width: 1199px) {
  .guestSamplesLayout {
    grid-template-columns: 1fr;
  }

  .guestSamplesSidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .guestSamplesHero,
  .guestSamplesViewer__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .guestSamplesViewer__actions {
    justify-content: flex-start;
  }

  .guestSampleFrame,
  .guestSampleFrameWrap {
    min-height: 680px;
  }
}

.sampleReportBody .myPage__container {
  display: block;
}

.sampleReportBody .sampleReportContentSection {
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
}

.sampleReportBody .report__contentSection {
  width: 100%;
  max-width: none;
}

.sampleReportBody .main__section {
  padding-top: 0;
}

/* ============================= */
/* SAMPLE REPORT FULL WIDTH FIX */
/* ============================= */

.sampleReportBody .myPage__container {
    width: 100% !important;
    max-width: none !important;
}

.sampleReportBody .myPage__contentSection {
    width: 100% !important;
    max-width: none !important;
    border-left: none !important;
    border-right: none !important;
}

.sampleReportBody .main__section {
    width: 100% !important;
    max-width: none !important;
}

/* =========================================================
   EMBIOME SAMPLE CARD ACTIVE UNIFICATION
========================================================= */

.guestSampleCard.is-active {
  border-color: var(--guest-primary);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(12, 159, 220, 0.16);
}

.guestSampleCard:hover {
  border-color: var(--guest-primary);
  background: var(--guest-primary-soft);
  box-shadow: none;
}