:root {
  --white: #ffffff;
  --thrive-purple: #1e0056;
  --thrive-black: #343e4e;
  --thrive-eggshell: #fdfbf9;
  --thrive-border: #dcdde0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
}

.modal-dialog {
display: none;
}

/* ---------- Header ---------- */

.site-header {
  width: 100%;
  background: var(--white);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 60.5px);

  @media (max-width: 767.98px) {
    flex-wrap: nowrap;;
  }
}

@media (max-width: 991.98px) {
    .header-container {
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .nav-logos {
        justify-content: flex-start;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .nav-logos {
        gap: 12px;
    }
}


@media (max-width: 991.98px) {
    .cta-button {
        margin: 0;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .cta-button {
        width: auto;
        padding: 10px 24px;
        font-size: 14px;
    }
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-block: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
}

.nav-logos {
    flex-wrap: nowrap;
}
/* ---------- BMS logo ---------- */

.bms-logo {
  position: relative;
  display: block;
  width: clamp(150px, 18vw, 231px);
  height: 32px;
  aspect-ratio: 221 / 32;
  flex-shrink: 0;

  @media (max-width: 767.98px) {
    height: 12px;
  }
}

.bms-logo .logo-layer {
  position: absolute;
  display: block;
}

.bms-logo .icon-bars {
  top: 0;
  left: 0;
  width: 9.14%;
  height: 100%;
}

/* .bms-logo .wordmark {
  top: 14.23%;
  left: 12.33%;
  width: 85.62%;
  height: 100%;
} */

.bms-logo .ring {
  top: 27.56%;
  left: 97.83%;
  width: 2.17%;
  height: 15.78%;
}

.bms-logo .r-letter {
  top: 31.28%;
  left: 98.52%;
  width: 0.87%;
  height: 8.32%;
}

/* ---------- Divider ---------- */

.nav-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  height: 45px;
  flex-shrink: 0;
}

.nav-divider img {
  display: block;
  width: 45px;
  height: 1px;
  transform: rotate(90deg);

@media (max-width: 767.98px) {
 width: 22px;
}
}

/* ---------- Thrive Global logo ---------- */

.thrive-logo {
  position: relative;
  display: block;
  width: clamp(190px, 24vw, 303px);
  aspect-ratio: 303 / 32;
  height: 32px;
  flex-shrink: 0;

  @media (max-width: 767.98px) {
    height: 12px;
  }
}

.thrive-logo .logo-layer {
  position: absolute;
  display: block;
}

.thrive-logo .icon {
  top: 0;
  left: 0.2%;
  width: 9.28%;
  height: 100%;
}

.thrive-logo .wordmark {
  top: 16.6%;
  left: 13.53%;
  width: auto;
}

/* ---------- CTA button ---------- */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--thrive-purple);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 32px;
  border-radius: 99px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;

  @media (max-width: 767.98px) {
    font-size: 14px;
  }
}

.cta-button:hover,
.cta-button:focus {
  color: var(--white);
  opacity: 0.85;
}

/* ---------- Banner ---------- */

.banner {
  position: relative;
  width: 100%;
  background: var(--thrive-eggshell);
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.banner-bg-image {
  position: absolute;
  display: block;
  left: -2.44%;
  top: -7.11%;
  width: 135.36%;
  height: 78.91%;
  max-width: none;
}

.banner-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(32px, 8vw, 142px);
  padding: clamp(20px, 5vw, 40px);
}

.banner-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 593px;
  flex: 1 1 320px;
}

.banner-heading {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 71px);
  line-height: 1.13;
  color: var(--thrive-purple);
}

.banner-text {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: clamp(20px, calc(12px + 1.6vw), 24px);
  line-height: 1.5;
  color: var(--thrive-black);
}

.banner-image {
  position: relative;
  flex-shrink: 0;
  width: clamp(220px, 35vw, 511px);
  aspect-ratio: 1 / 1;
}

.banner-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Body content ---------- */

.body-content {
  width: 100%;
  background: linear-gradient(to bottom, var(--thrive-eggshell), var(--white));
  padding-bottom: 64px;
}

.filter-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.filter-heading {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 47px);
  line-height: 1.06;
  color: var(--thrive-purple);
}

.filter-description {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--thrive-black);
}

.filter-label {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  color: #000;

  
    @media (max-width: 767.98px) {
      font-size: 18px;
    }
}

.filter-controls {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--thrive-border);
  border-radius: 8px;
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.filter-btn.is-active {
  box-shadow: 0 0 0 2px var(--thrive-purple);
}

.filter-btn-icon {
  display: block;
  width: 40px;
  height: 40px;
  /* border-radius: 50%; */
}

.filter-dropdown {
  display: none;
  position: relative;
  width: 100%;
  max-width: 350px;
}

.filter-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  border: 1px solid var(--thrive-border);
  border-radius: 8px;
  background: var(--thrive-purple);
  color: var(--white);
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
}

.filter-dropdown-trigger-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.filter-dropdown-trigger-label {
  flex: 1 1 auto;
  text-align: left;
}

.filter-dropdown-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.filter-dropdown-trigger.is-open .filter-dropdown-chevron {
  transform: rotate(180deg);
}

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + -60px);
  left: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  padding: 4px 0;
  background: #1b0a3c;
  border: 1px solid rgba(220, 221, 224, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.4);
}

.filter-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(220, 221, 224, 0.15);
  cursor: pointer;
}

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

.filter-dropdown-item.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.filter-dropdown-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.filter-dropdown-item-icon img {
  display: block;
  width: 24px;
  height: 24px;
  /* border-radius: 50%; */
}

.filter-dropdown-item-label {
  flex: 1 1 auto;
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.filter-dropdown-item.is-active .filter-dropdown-item-label {
  color: var(--white);
  font-weight: 500;
}

.filter-dropdown-item-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: none;
}

.filter-dropdown-item.is-active .filter-dropdown-item-check {
  display: block;
}

.filter-dropdown-item-check img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Article grid ---------- */

.article-grid {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;

@media (max-width: 767.98px) {
padding: 0 20px;

}
}

.tile-card.is-hidden {
  display: none;
}

.tile-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 392 / 206;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.tile-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-video-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  background-image: url('/content/dam/commercial/us/myelomacentral/en/images/thrive/filters/video-badge.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
}

.tile-title {
  margin: 0 0 32px;
}

.tile-title a {
  font-family: 'Assistant', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--thrive-purple);
  text-decoration: none;
}

.tile-title a:hover {
  text-decoration: underline;
}

.tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tile-tag {
  font-family: 'Assistant', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: var(--thrive-purple);
}

/* ---------- Community CTA ---------- */

.community-cta {
  position: relative;
  z-index: 1;
  max-width: 824px;
  margin: 64px auto 0;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(30, 0, 86, 0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;

  @media (max-width: 767.98px) {
    margin: 64px 20px 0;
  }
}

.community-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.community-logo-mark {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
}

.community-logo-mark img {
  position: absolute;
  display: block;
  left: -0.69%;
  top: -0.79%;
  /* width: 468.75%; */
  height: 99.9%;
  max-width: none;
}

.community-heading {
  margin: 0;
  flex: 1 1 auto;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--thrive-purple);
}

.community-btn {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--thrive-purple);
}

.footer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-bg-image {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 249.13%;
  max-width: none;
}

.footer-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 61px) clamp(20px, 6vw, 81px) clamp(32px, 6vw, 60px) clamp(20px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  width: 231px;
}

.footer-disclaimer {
  margin: 0;
  max-width: 940px;
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

.footer-copyright {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #6e53a1;
}

.footer-copyright p {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

/* ---------- Article page ---------- */

/* .article-page {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, var(--thrive-eggshell) 41.436%, var(--white) 54.133%);
  overflow: hidden;
} */

main,
.article-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--thrive-eggshell) 41.436%, var(--white) 54.133%);
  overflow: hidden;
}

.page-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero {
  position: relative;
  z-index: 1;
  background: #eeedf8;
  padding: 64px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
@media (max-width: 767.98px) {
padding: 20px;
}
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 830px;
  width: 100%;
  margin-bottom: clamp(160px, 10vw, 220px);
}

.hero-top-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 100%;
}

.hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--thrive-purple);
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.hero-back-link img {
  display: block;
  width: 24px;
  height: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Assistant', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--thrive-purple);
  white-space: nowrap;
}

.hero-meta-item img {
  display: block;
  width: 20px;
  height: 20px;
}

.hero-meta-divider {
  display: block;
  width: 2px;
  height: 16px;
}

.hero-meta-tag {
  font-family: 'Assistant', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: var(--thrive-purple);
}

.hero-title {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.19;
  color: var(--thrive-purple);

  @media (min-width: 1280px) {
    font-size: 46px;
  }
}

.hero-subtitle {
  font-size: 22px;
}

.hero-deck {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: var(--thrive-black);
}

.hero-media-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1022px;
  margin-top: clamp(-140px, -10vw, -60px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 0 40px;

  &.article-image-wrap {
    margin: clamp(-140px, -10vw, -60px) auto 0;
    align-items: center;
  }

  @media (max-width: 767.98px) {
    display: flex;
    align-items: flex-end !important;
  }
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1022 / 575;
  border-radius: 8px;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 12vw, 150px);
  height: clamp(100px, 12vw, 150px);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.hero-play-btn-outer {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-play-btn-inner {
  position: absolute;
  top: 0;
  left: 3%;
  width: 67.56%;
  height: 62.16%;
}

.videoContainer.active .videoObjCode {
  height: 532px;
}

.transcript-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--thrive-purple);
  color: var(--white);
  border: none;
  font-family: 'Assistant', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  padding: 10px 32px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.transcript-toggle.is-active {
  background: #573c89;
}

.transcript-panel,
.article-panel {
  position: relative;
  z-index: 1;
  background: #f7f6f9;
  padding: 24px clamp(16px, 4vw, 24px);
}

.transcript-inner,
.article-inner {
  max-width: 1022px;
  margin: 0 auto;
  /* border-right: 4px solid var(--thrive-purple); */
  /* padding-right: 8px; */
}

.transcript-inner .article-text p {
  margin: 0 0 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: var(--thrive-black);
}

/* ---------- Article body ---------- */

.article-body {
  position: relative;
  z-index: 1;
  /* max-width: 824px; */
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-text {
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: var(--thrive-black);
}

.article-text p {
  margin: 0 0 20px;
}

.article-text p:last-child {
  margin-bottom: 0;
}

.article-text sup {
  font-size: 14px;
  line-height: 32px;
}

.callout-box {
  background: #eff4f5;
  border-radius: 8px;
  padding: 24px;
}

.callout-box p {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: var(--thrive-black);
}

.microsteps-lead {
  font-weight: 700;
}

.microsteps-list {
  margin: 0 0 20px;
  padding-left: 28px;
}

.microsteps-list li {
  margin-bottom: 20px;
  padding-left: 4px;
}

.microsteps-list li:last-child {
  margin-bottom: 0;
}

/* ---------- Related articles ---------- */

.related-articles {
  position: relative;
  z-index: 1;
  max-width: 1272px;
  margin: 64px auto 0;
  padding: 64px 40px 64px;
  border-top: 1px solid var(--thrive-border);

@media (max-width: 767.98px) {
padding: 64px 20px 64px;
}
}

.related-articles-heading {
  margin: 0 0 24px;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--thrive-black);
}

.related-articles-grid {
  padding: 0;
  margin: 0;
  max-width: none;
}

/* ---------- Responsive breakpoints ---------- */

@media (max-width: 991.98px) {
  .header-container {
    justify-content: center;
  }

  .nav-logos {
    justify-content: center;
    width: 100%;
  }

  .cta-button {
    margin: 0 auto;
  }

  .banner-container {
    justify-content: center;
    text-align: center;
  }

  .banner-copy {
    align-items: center;

    @media (max-width: 767.98px) {
      text-align: left;
    }
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .filter-anchors {
    display: none;
  }

  .filter-dropdown {
    display: block;
  }

  .article-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .community-related-wrap {
    background: linear-gradient(135deg,
        #dff0f0 0%,
        #ede9f7 100%);
  }

  .community-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin-top: 40px;
  }

  .community-logo {
    flex-direction: column;
    text-align: center;
  }

  .community-btn {
    width: 100%;
  }

  .hero-media-wrap {
    align-items: center;
    padding: 0;
  }

  .hero-inner {
    margin-bottom: clamp(90px, 15vw, 220px);
  }

  .videoContainer.active .videoObjCode {
    height: 160px;
  }


  .related-articles-heading {
    font-size: 30px;
    line-height: 37px;
  }
}

@media (max-width: 575.98px) {
  .nav-logos {
    gap: 12px;
  }

  .bms-logo {
    width: clamp(130px, 40vw, 180px);
  }

  .thrive-logo {
    width: clamp(150px, 46vw, 210px);
  }

  .bms-logo,
  .thrive-logo {
    @media (max-width: 767.98px) {
      width: 100px;
    }

  }

  .cta-button {
font-weight: 700;
    width: 100%;
    padding: 10px 24px;

    @media (max-width: 767.98px) {
      width: 33.33%;
padding: 6px 16px;
    }
  }

  .banner-image {
    width: clamp(180px, 60vw, 260px);
  }

  .footer-logo {
    width: 180px;
  }
}