* {
  --listWidth: 800px;
}

#siteTitleBig {
  position: fixed; /* or sticky if preferred */
  top: 0;
  left: 50%;
  width: var(--listWidth, 800px);
  margin-left: calc(-0.5 * var(--listWidth, 800px));
  z-index: 1000; /* sufficiently high */
  background-color: white; /* so content below doesn’t show through */
}


.site-title {
  font-family: "American Typewriter";
  font-size: 40px;
  text-transform: uppercase;
  border-bottom: 2px solid black;
  user-select: none;
}

.site-title:hover {
    cursor: help;
}

.site-title::after {
  rotate: 2deg;
right: -35px;
  top: 60px;
  color: grey;
  background-color: aliceblue;
  content: "New and improved!";
  position: absolute;
  transform: translateX(-50%);
  font-size: 10px;
  animation: splashPulse 1s infinite ease-in-out;
  transform-origin: center;
  pointer-events: none;
}

@keyframes splashPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.15);
  }
}


.list-container {
  z-index: 1;
  position: relative;
  /* Setting this below .site-title and #siteTitle so it stacks properly */
  display: block;
  justify-content: space-between;
  gap: 2rem; /* Optional: spacing between columns */
  flex-wrap: wrap;
  max-width: var(--listWidth);
  margin-left: auto;
  margin-right: auto;
  padding-top: 20vh;
}

.list-column-left h1 {
    font-size: 60px;
    border: 1px;
    text-align: center;
      hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.list-column-left .post-link-box, .list-column-left .post-date-box {
    text-align: center;
}

.list-column-left summary {
    text-align: center;
}

.list-column-left {
  flex: 1;
    flex: 2 1 400px;
  flex-direction: column;
}


.list-column-right {
  flex: 2 1 400px;
  gap: 10px;
}

.sequenced-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featuring {
  font-weight: bold;
  margin-bottom: 1rem;
}

.urgent::before {
  content: "PRIORITY";
  position: absolute;
  text-decoration: underline;
  top: -30px;
rotate: -3deg;
  color: red;
}



  @media only screen and (max-width: 700px) {


#siteTitleBig {
    width: 100%;
    margin-left: -50%;
}

.site-title {
  font-size: 30px;
}

.site-title::after {
  top: 50px;
}

.list-container {
    display: block;
    width: 100%;
    overflow: hidden;
}
}