.updates-list {

}

html.js.page--home .page__content a {
  color: var(--home-link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

html.js.page--home .page__content a:hover {
  color: var(--global-link-color);  
  text-decoration: underline; 
}

html.js.page--home .page__content h2 {
	color: var(--global-hightlight-color);
}

html.js.page--home .page__content h3 {
	color: var(--global-hightlight-color);
}

.pdf-wrapper-container {
  position: relative;  /* create containing block */
  overflow: visible;   /* allow child to spill out */
  min-height: 75vh;
}

.pdf-wrapper {
  position: absolute;  /* positioned relative to .container */
  top: 0;
  left: 0;

  /* Let it grow to fill the viewport, but not exceed it */
  width: var(--pdf-wrapper-final-width);

  /* Optional: ensure it stays above siblings if overlapping */
  z-index: 10;
}

.pdf-viewer {
  display:block; 
  width:100%; 
  height:75vh; 
  border:none;
}