#page-layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 75%;
  margin: auto;
  gap: 40px;
}

#page-layout > #front-page-container,
#page-layout > #container,
#page-layout > #firered-container {
  flex: 1;
}

/* Right feed */
.right-feed {
  width: 220px;
  overflow-y: auto;
  max-height: 100%;   
  background-color: rgba(255, 255, 255, 0.69);
  border: 5px double black;
  padding: 15px;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  color: #12100b;
}

.right-feed h2 {
  text-align: center;
  text-decoration: underline;
  margin-bottom: 1em;
  font-size: 1.25em;
}

.right-feed a {
  font-weight: bold;
  font-size: 1em;
  color: #ff0069;
  text-decoration: underline;
  display: block;
  margin-bottom: 0.25em;
}

.feed-date {
  font-size: 0.75em;
  color: #555;
  margin-bottom: 0.5em;
}

.right-feed p {
  font-size: 0.85em;
  line-height: 1.4;
  margin: 0 0 1em 0;
  color: #12100b;
}

.feed-divider {
  border: none;
  border-top: 3px double #12100b;
  margin: 1em 0;
}

.feed-thumbnail {
  display: block;
  margin: 0.5em auto;
  max-width: 100%;
  height: auto;
  border: 2px solid black;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* optional: adds a soft edge */
}