/* ===== christmas-countdown-theme/assets/css/parchment.css ===== */
/* Festive parchment card/panel for Christmas Countdown Theme */

.cc-parchment-panel,
.parchment-panel {
  background: linear-gradient(135deg, #f5ecd6 94%, #e3c190 100%);
  color: #775032;
  border: 3px solid #e3c190;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(180,146,62,0.14), 0 1.5px 5px 0 rgba(90,55,12,0.11);
  padding: 18px 14px 18px 14px;
  margin: 14px auto;
  max-width: 100%;
  font-family: 'Lora', 'Times New Roman', serif;
  position: relative;
  z-index: 1;
}

.cc-parchment-title,
.parchment-title {
  font-family: 'Playfair Display', serif;
  color: #a77e2d;
  font-size: 1.21rem;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: 1.1px;
  text-shadow: 0 1px 0 #fff8e6;
}

.cc-panel-list,
.parchment-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
.cc-panel-list li,
.parchment-list li {
  padding: 4.5px 0 4.5px 0;
  border-bottom: 1px dashed #e4ca97;
}
.cc-panel-list li:last-child,
.parchment-list li:last-child {
  border-bottom: none;
}

.cc-parchment-panel strong,
.parchment-panel strong {
  font-weight: 700;
  color: #cf932a;
}

/* Subtle festive gold sparkle effect (optional) */
.cc-parchment-panel::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px; right: 15px; width: 38px; height: 11px;
  background: linear-gradient(90deg, rgba(212,175,55,0.12) 0%, rgba(255,255,255,0.19) 100%);
  border-radius: 13px;
  opacity: .50;
  pointer-events: none;
}

/* Decorative bottom shadow */
.cc-parchment-panel::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 5px; left: 7px; width: 90%; height: 15px;
  background: linear-gradient(0deg, rgba(212,175,55,0.07) 70%, transparent 100%);
  border-radius: 10px;
  opacity: .35;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .cc-parchment-panel,
  .parchment-panel {
    padding: 11px 4px 13px 6px;
    font-size: 0.94rem;
    border-radius: 11px;
  }
  .cc-parchment-title,
  .parchment-title {
    font-size: 1.03rem;
    margin-bottom: 7px;
  }
}

/* ===== End parchment.css ===== */
