/* Article list button styles */

.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 20px auto;
}

/* shared button shell */
.article-btn {
  display: block;
  background: #eceeee;
  box-shadow:
    inset 1px 1px 0 #ffffff,
    inset -1px -1px 0 #b7bcbc;
  padding: 16px 20px;
  text-align: left;
  text-decoration: none;
  color: #3d4444;
}

.article-btn-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.article-btn-desc {
  display: block;
  font-size: 13px;
  line-height: 1.5;
}

/* The End of Everything button */

.article-btn--end-of-everything {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #3a1206 0%,
    #26102a 40%,
    #120c26 70%,
    #06050f 100%
  );
  transition: box-shadow 0.2s ease;
}

/* dense, mixed-size, mixed-color starfield */
.article-btn--end-of-everything::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 8% 22%, #fff, transparent),
    radial-gradient(1px 1px at 18% 62%, #fff, transparent),
    radial-gradient(2px 2px at 28% 40%, #fff, transparent),
    radial-gradient(1px 1px at 38% 80%, #ffd9b3, transparent),
    radial-gradient(1.4px 1.4px at 48% 15%, #fff, transparent),
    radial-gradient(1px 1px at 58% 55%, #c8d3f5, transparent),
    radial-gradient(2px 2px at 66% 30%, #fff, transparent),
    radial-gradient(1px 1px at 74% 70%, #fff, transparent),
    radial-gradient(1.6px 1.6px at 84% 18%, #ffd9b3, transparent),
    radial-gradient(1px 1px at 90% 50%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 94% 82%, #c8d3f5, transparent),
    radial-gradient(1px 1px at 12% 90%, #fff, transparent);
  background-size: 100% 100%;
  opacity: 0.85;
}

/* two glowing ember in the background */
.article-btn--end-of-everything::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      60px 60px at 85% 25%,
      rgba(224, 138, 79, 0.35),
      transparent 70%
    ),
    radial-gradient(
      90px 90px at 10% 85%,
      rgba(159, 178, 224, 0.28),
      transparent 70%
    );
}

.article-btn--end-of-everything .article-btn-title {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: normal;
  font-size: 23px;
  background: linear-gradient(90deg, #ff9d5c, #eee8dc 55%, #b7c8f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(224, 138, 79, 0.35);
}

.article-btn--end-of-everything .article-btn-desc {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  color: #b7aed6;
}

@media (max-width: 480px) {
  .article-list {
    gap: 12px;
  }
}
