/* Share this project — PDF previews (right column, Acts 13 layout) */
#section_d06cd6e6ffc09b5c98500555ed0e50e3 .share-pdf-previews {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  text-align: left;
}

.share-pdf-preview {
  display: block;
  flex: 1 1 calc(50% - 0.375rem);
  max-width: 240px;
  text-decoration: none;
  color: inherit;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.share-pdf-preview__img-wrap {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.share-pdf-preview__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: filter 0.2s ease;
}

.share-pdf-preview__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.share-pdf-preview:hover .share-pdf-preview__img-wrap img,
.share-pdf-preview:focus-visible .share-pdf-preview__img-wrap img {
  filter: grayscale(100%);
}

.share-pdf-preview:hover .share-pdf-preview__overlay,
.share-pdf-preview:focus-visible .share-pdf-preview__overlay {
  opacity: 1;
}

/* Same pill style as .mceButton in this section */
#section_d06cd6e6ffc09b5c98500555ed0e50e3 .share-pdf-preview__download {
  display: inline-block;
  font-family: var(--global-buttonFontFamily, 'Raleway', sans-serif);
  font-weight: var(--global-buttonFontWeight, 700);
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--global-buttonColor, #ffffff);
  background-color: var(--global-buttonBackgroundColor, #151515);
  border: var(--global-buttonBorderSize, 1px) var(--global-buttonBorderStyle, solid) var(--global-buttonBorderColor, transparent);
  border-radius: var(--global-buttonBorderRadius, 54px);
  padding: 0.5rem 1rem;
  box-shadow: var(--global-buttonBoxShadowHOffset, 3px) var(--global-buttonBoxShadowVOffset, 3px) var(--global-buttonBoxShadowBlur, 6px) var(--global-buttonBoxShadowSpread, 3px) rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
}

#section_d06cd6e6ffc09b5c98500555ed0e50e3 .share-pdf-preview:hover .share-pdf-preview__download,
#section_d06cd6e6ffc09b5c98500555ed0e50e3 .share-pdf-preview:focus-visible .share-pdf-preview__download {
  background-color: var(--global-buttonHoveredBackgroundColor, #3b3b3b);
}

@media (max-width: 860px) {
  #section_d06cd6e6ffc09b5c98500555ed0e50e3 .share-pdf-previews {
    margin-top: 1.25rem;
    justify-content: flex-start;
  }

  .share-pdf-preview {
    flex: 1 1 calc(50% - 0.375rem);
    max-width: 200px;
  }
}
