:root {
  --study-marquee-padding: 40px 16px;
  --study-marquee-gap: 32px;
}

@media screen and (min-width: 600px) {
  :root {
    --study-marquee-padding: 64px 16px;
  }
}

.study-marquee {
  position: relative;
  padding: var(--study-marquee-padding);
  overflow: hidden;
  color: var(--color-white);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.study-marquee-heading {
  font-family: "Adobe Clean Black", var(--body-font-family);
  font-size: 44px;
  line-height: 1.25;
  font-weight: 900;
  color: inherit;
  margin: 0;
  margin-top: -22px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  letter-spacing: -2.88px;
}

.study-marquee.light,
.study-marquee.mobile-light,
.study-marquee.light .study-marquee-heading,
.study-marquee.mobile-light .study-marquee-heading {
  color: var(--color-black);
}

.study-marquee.mobile-dark {
  color: var(--color-white);
}

.study-marquee .foreground {
  max-width: var(--grid-container-width);
  min-width: var(--grid-container-width);
  margin: 0 auto;
}

.study-marquee-container {
  width: 100%;
  overflow: hidden;
}

.study-marquee-row {
  display: flex;
  flex-direction: column;
  gap: var(--study-marquee-gap);
  align-items: flex-start;
}

.study-marquee-col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.study-marquee-col-right {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.study-marquee-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.study-marquee .acrobat-icon {
  display: inline-flex;
  width: 31.5px;
  height: 30.414px;
  flex-shrink: 0;
}

.study-marquee .acrobat-icon svg {
  width: 100%;
  height: 100%;
}

.study-marquee-title {
  font-size: 20.25px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.42px;
  color: inherit;
  margin: 0;
}

.study-marquee-copy {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  margin: 0;
  opacity: 0.9;
}

.study-marquee-copy-sub {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.98;
  color: inherit;
  margin-top: -10px;
  opacity: 0.8;
}

.study-marquee-copy-sub:empty {
  display: none;
}

.study-marquee.light .study-marquee-copy,
.study-marquee.mobile-light .study-marquee-copy,
.study-marquee.light .study-marquee-copy-sub,
.study-marquee.mobile-light .study-marquee-copy-sub {
  color: var(--color-black);
  opacity: 1;
}

.study-marquee-dropzone {
  border: 1.043px dashed #8F8F8F;
  border-radius: 24px;
  padding: 34px 10px;
  background: #393939;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
  width: 100%;
  align-self: stretch;
}

.study-marquee-dropzone:hover {
  border-color: #B8B8B8;
  background: #4D4D4D;
}

.study-marquee.dragging-block .study-marquee-dropzone {
  border-color: #B8B8B8;
  background: #4D4D4D;
  border-style: dashed;
}

.study-marquee.light .study-marquee-dropzone,
.study-marquee.mobile-light .study-marquee-dropzone,
.study-marquee.tablet-light .study-marquee-dropzone,
.study-marquee.desktop-light .study-marquee-dropzone {
  border: 1px dashed #8F8F8F;
  border-radius: 24px;
  background-color: #F7F7F7;
  backdrop-filter: blur(10px);
}

.study-marquee.light .study-marquee-dropzone:hover,
.study-marquee.mobile-light .study-marquee-dropzone:hover,
.study-marquee.tablet-light .study-marquee-dropzone:hover,
.study-marquee.desktop-light .study-marquee-dropzone:hover {
  border-color: #1473E6;
  background-color: #FFF;
}

.study-marquee-dropzone.dragging {
  border-color: #B8B8B8;
  background: #4D4D4D;
  border-style: dashed;
}

.study-marquee.dragging-block {
  outline: none;
}

.study-marquee.dragging-block::before {
  display: none;
}

/* Light: drag/drop dropzone same as hover */
.study-marquee.light.dragging-block .study-marquee-dropzone,
.study-marquee.mobile-light.dragging-block .study-marquee-dropzone,
.study-marquee.tablet-light.dragging-block .study-marquee-dropzone,
.study-marquee.desktop-light.dragging-block .study-marquee-dropzone,
.study-marquee.light .study-marquee-dropzone.dragging,
.study-marquee.mobile-light .study-marquee-dropzone.dragging,
.study-marquee.tablet-light .study-marquee-dropzone.dragging,
.study-marquee.desktop-light .study-marquee-dropzone.dragging {
  border-color: #1473E6;
  background-color: #FFF;
  border-style: dashed;
}

.study-marquee-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px 14px;
  background-color: #1473E6;
  color: #FFF;
  border: none;
  border-radius: 100px;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.study-marquee-cta:hover {
  background-color: #0D66D0;
}

.study-marquee-cta .upload-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-marquee-drag {
  display: none;
  color: #FFF;
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.study-marquee.light .study-marquee-drag,
.study-marquee.mobile-light .study-marquee-drag,
.study-marquee.tablet-light .study-marquee-drag,
.study-marquee.desktop-light .study-marquee-drag {
  color: var(--color-black);
}

.study-marquee-file-limit {
  font-size: 12px;
  line-height: 1.4;
  color: #FFF;
  margin: 0;
  text-align: center;
}

.study-marquee.light .study-marquee-file-limit,
.study-marquee.mobile-light .study-marquee-file-limit,
.study-marquee.tablet-light .study-marquee-file-limit,
.study-marquee.desktop-light .study-marquee-file-limit {
  color: var(--color-black);
}

.study-marquee-media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-marquee-media .asset {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.study-marquee-media picture,
.study-marquee-media .asset picture,
.study-marquee .background picture {
  width: 100%;
  height: 100%;
  display: flex;
  line-height: 0;
}

.study-marquee-media img,
.study-marquee-media picture img,
.study-marquee-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.study-marquee .background img,
.study-marquee .background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-marquee-media .asset img,
.study-marquee-media .asset picture img,
.study-marquee-media .asset video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.study-marquee .background {
  position: absolute;
  inset: 0;
}

.study-marquee-legal a {
  color: var(--consonant-link-color);
  text-decoration: underline;
}

.study-marquee-legal a:hover {
  color: var(--consonant-link-color-hover);
}

.study-marquee-media .asset a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.study-marquee-media .asset a picture,
.study-marquee-media .asset a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-marquee-footer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0;
  width: 100%;
}

.study-marquee-legal {
  font-size: 12px;
  line-height: 1.5;
  color: #FFF;
  margin: 0;
  text-align: left;
  flex: 1;
}

.study-marquee.light .study-marquee-legal,
.study-marquee.mobile-light .study-marquee-legal,
.study-marquee.tablet-light .study-marquee-legal,
.study-marquee.desktop-light .study-marquee-legal {
  color: #464646;
}

.study-marquee.light .study-marquee-legal a,
.study-marquee.mobile-light .study-marquee-legal a,
.study-marquee.tablet-light .study-marquee-legal a,
.study-marquee.desktop-light .study-marquee-legal a {
  color: var(--link-color);
}

.study-marquee.light .study-marquee-legal a:hover,
.study-marquee.mobile-light .study-marquee-legal a:hover,
.study-marquee.tablet-light .study-marquee-legal a:hover,
.study-marquee.desktop-light .study-marquee-legal a:hover {
  color: var(--link-hover-color);
  opacity: 1;
}

.study-marquee .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  background: none;
  border: none;
  outline: none;
}

.study-marquee .info-icon:hover {
  opacity: 0.8;
}

.study-marquee .info-icon svg {
  width: 18px;
  height: 18px;
}

.study-marquee .info-icon svg,
.study-marquee.dark .info-icon svg,
.study-marquee.mobile-dark .info-icon svg,
.study-marquee.tablet-dark .info-icon svg,
.study-marquee.desktop-dark .info-icon svg {
  filter: brightness(0) invert(1);
}

.study-marquee.light .info-icon svg,
.study-marquee.mobile-light .info-icon svg,
.study-marquee.tablet-light .info-icon svg,
.study-marquee.desktop-light .info-icon svg {
  filter: none;
}

.study-marquee .milo-tooltip {
  position: relative;
  text-decoration: none;
  border-bottom: none;
  min-width: 24px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
}

.study-marquee .milo-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 7px;
  max-width: 140px;
  padding: 10px;
  border-radius: 5px;
  background: #0469E3;
  color: #fff;
  text-align: left;
  display: none;
  z-index: 8;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  width: max-content;
}

.study-marquee .milo-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  margin-left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid #0469E3;
  border-color: transparent #0469E3 transparent transparent;
  display: none;
  z-index: 8;
}

.study-marquee .milo-tooltip.top::before {
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  top: -6px;
  margin-bottom: 15px;
  margin-left: 0;
}

.study-marquee .milo-tooltip.top::after {
  left: 50%;
  top: 2px;
  transform: translateX(-50%) translateY(-50%);
  border: 8px solid #0469E3;
  border-color: #0469E3 transparent transparent;
  margin-left: 0;
}

.study-marquee .milo-tooltip:hover::before,
.study-marquee .milo-tooltip:focus::before,
.study-marquee .milo-tooltip:active::before,
.study-marquee .milo-tooltip:hover::after,
.study-marquee .milo-tooltip:focus::after,
.study-marquee .milo-tooltip:active::after {
  display: block;
}

@supports (-webkit-backdrop-filter: blur(1px)) and (not (backdrop-filter: blur(1px))) {
  .study-marquee .milo-tooltip:focus::before {
    outline: 4px solid -webkit-focus-ring-color;
    outline-offset: 1px;
  }
}

.study-marquee .hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.study-marquee-error {
  cursor: default;
  background: #D31510;
  max-width: 435px;
  color: white;
  position: absolute;
  top: 60px;
  transform: translate(-50%, -50%);
  left: 50%;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.study-marquee .close-icon {
  position: relative;
}

.study-marquee-error-text {
  border-right: 1px solid rgb(255 255 255 / 20%);
  padding: 0;
  margin: 0;
  margin-right: 8px;
  padding-right: 16px;
  max-width: 324px;
  margin-left: 8px;
  min-width: 100px;
}

.study-marquee-errorBtn {
  align-self: self-start;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: block;
}

.study-marquee-errorIcon {
  align-self: self-start;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  margin-right: 4px;
  margin-top: 7px;
}

.study-marquee-errorIcon::after {
  content: '';
  background-image: url('/acrobat/img/icons/ui/alert.svg');
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

@media screen and (min-width: 600px) {
  .study-marquee.tablet-light,
  .study-marquee.tablet-light .study-marquee-heading {
    color: var(--color-black);
  }

  .study-marquee.tablet-dark {
    color: var(--color-white);
  }

  .study-marquee.tablet-light .study-marquee-copy,
  .study-marquee.tablet-light .study-marquee-copy-sub {
    color: var(--color-black);
    opacity: 1;
  }

  .study-marquee.tablet-light .study-marquee-legal a {
    color: var(--link-color);
  }

  .study-marquee.tablet-dark .study-marquee-legal a {
    color: var(--consonant-link-color);
  }
  
  .study-marquee.tablet-dark .study-marquee-legal a:hover {
    color: var(--consonant-link-color-hover);
  }

  .study-marquee.tablet-light .study-marquee-legal a:hover {
    color: var(--link-hover-color);
  }
}

@media screen and (min-width: 600px) and (max-width: 1199px) {
  .study-marquee-row {
    gap: 40px;
  }

  .study-marquee-col-left {
    gap: 32px;
  }

  .study-marquee-heading {
    font-size: 64px;
    line-height: 0.98;
  }

  .study-marquee-copy {
    font-size: 24px;
  }

  .study-marquee-copy-sub {
    font-size: 20px;
  }

  .study-marquee-dropzone {
    gap: 14px;
  }

  .study-marquee-footer {
    margin-top: 0;
  }

  .study-marquee-legal {
    font-size: 11px;
  }
}

@media screen and (min-width: 900px) {
  :root {
    --study-marquee-padding: 80px 40px;
    --study-marquee-gap: 80px;
  }
}

@media screen and (max-width: 1199px) {
  .study-marquee .milo-tooltip.top::before {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-100%);
    max-width: 200px;
  }

  .study-marquee .milo-tooltip.top::after {
    left: auto;
    right: 4px;
    transform: translateX(0) translateY(-50%);
  }

  [dir="rtl"] .study-marquee .milo-tooltip.top::before {
    left: 0;
    right: auto;
    transform: translateX(0) translateY(-100%);
    text-align: right;
  }

  [dir="rtl"] .study-marquee .milo-tooltip.top::after {
    left: 4px;
    right: auto;
    transform: translateX(0) translateY(-50%);
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --study-marquee-padding: 80px;
    --study-marquee-gap: 100px;
  }

  .study-marquee-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
  }

  .study-marquee-col-left {
    min-width: 0;
    gap: 32px;
  }

  .study-marquee-col-right {
    justify-content: center;
  }

  .study-marquee-title {
    font-size: 21px;
  }

  .study-marquee-heading {
    font-size: 96px;
    line-height: 0.98;
    letter-spacing: -4.32px;
  }

  .study-marquee-copy {
    font-size: 24px;
  }

  .study-marquee-copy-sub {
    font-size: 20px;
  }

  .study-marquee-dropzone {
    gap: clamp(12px, 1vw, 16px);
  }

  .study-marquee-drag {
    display: block;
    max-width: 261px;
    font-size: 18px;
    line-height: 0.98;
    letter-spacing: -0.54px;
  }

  .study-marquee-footer {
    margin-top: 0;
  }

  .study-marquee-legal {
    font-size: clamp(10px, 0.8vw, 12px);
  }

  .study-marquee.desktop-light,
  .study-marquee.desktop-light .study-marquee-heading {
    color: var(--color-black);
  }

  .study-marquee.desktop-dark {
    color: var(--color-white);
  }

  .study-marquee.desktop-light .study-marquee-copy,
  .study-marquee.desktop-light .study-marquee-copy-sub {
    color: var(--color-black);
    opacity: 1;
  }

  .study-marquee.desktop-light .study-marquee-legal a {
    color: var(--link-color);
  }

  .study-marquee.desktop-dark .study-marquee-legal a {
    color: var(--consonant-link-color);
  }
  
  .study-marquee.desktop-dark .study-marquee-legal a:hover {
    color: var(--consonant-link-color-hover);
  }

  .study-marquee.desktop-light .study-marquee-legal a:hover {
    color: var(--link-hover-color);
  }
}
@media screen and (max-width: 600px) {
  .study-marquee-error {
    max-width: calc(100% - 32px);
    top: 50px;
    padding: 6px;
  }

  .study-marquee-error-text {
    font-size: 12px;
    max-width: none;
    padding-right: 12px;
    margin-right: 6px;
    margin-left: 6px;
    min-width: auto;
  }

  .study-marquee-errorIcon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    margin-right: 2px;
    margin-top: 5px;
  }

  .study-marquee-errorIcon::after {
    width: 16px;
    height: 16px;
  }

  .study-marquee-errorBtn {
    width: 28px;
    height: 28px;
  }

  .study-marquee .milo-tooltip.top::before {
    max-width: 180px;
  }
}
