<style>
.gc-holiday {
  padding: 20px;
  margin: 10px 0;
  background: linear-gradient(135deg, #fdf6f6, #ffecec);
  border: 2px solid #c62828;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: Georgia, serif;
  position: relative;
}
.gc-holiday h2,
.gc-holiday h3 {
  color: #b71c1c;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}
.gc-holiday p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}
.gc-holiday:before,
.gc-holiday:after {
  content: "❄";
  position: absolute;
  font-size: 28px;
  color: #b71c1c;
  opacity: 0.25;
}
.gc-holiday:before { top: 8px; left: 10px; }
.gc-holiday:after { bottom: 8px; right: 10px; }
.gc-holiday .accent {
  color: #1b5e20;
  font-weight: bold;
}
.gc-holiday .divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 15px 0;
}
</style>