body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0; padding: 20px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  colour: #222;
  line-height: 1.6;
}
a {
  color: #2a6ebb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 6px;
}
header {
  text-align: center;
  margin-bottom: 40px;
}
header h1 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
}
header p.title {
  margin: 4px 0 0 0;
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
}
section {
  margin-bottom: 30px;
}
h2 {
  border-bottom: 2px solid #2a6ebb;
  padding-bottom: 6px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2a6ebb;
}
ul {
  list-style: none;
  padding-left: 0;
}
li {
  margin-bottom: 12px;
}
strong {
  color: #222;
}
.date {
  float: right;
  font-style: italic;
  color: #666;
}
.summary {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}
/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
  .date {
    float: none;
    display: block;
    margin-top: 4px;
    font-style: normal;
    color: #666;
  }
}
.postnominals {
  font-size: 1.2rem;
  font-weight: normal;
  font-style: italic;
  color: #666;
}

.noscript-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noscript-popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px rba(0,0,0,0.2);
  font-size: 1rem;
  color: #333;
}