/* ======= christmas-countdown-theme/assets/css/chalkboard.css ======= */
/* Festive chalkboard panel for Christmas Countdown Theme */

.cc-chalkboard-panel,
.chalkboard-panel {
  background: linear-gradient(135deg, #23332d 85%, #3e402c 100%);
  color: #F8F9FA;
  border: 2.5px solid #3e402c;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(76,85,74,0.18), 0 1px 3px 0 rgba(34,45,36,0.11);
  padding: 17px 13px 17px 14px;
  margin: 13px auto;
  max-width: 100%;
  font-family: 'Architects Daughter', 'Handlee', 'Caveat', cursive, sans-serif;
  position: relative;
  z-index: 1;
}

/* Chalkboard heading style */
.cc-chalkboard-title,
.chalkboard-title {
  font-family: 'Architects Daughter', 'Caveat', cursive, sans-serif;
  color: #F8F9FA;
  font-size: 1.19rem;
  font-weight: 600;
  margin-bottom: 11px;
  letter-spacing: 1px;
  text-shadow: 0 2.5px 6px #2c2c2c, 0 0.5px 0 #fff8;
}

/* Main panel list styling */
.cc-panel-list,
.chalkboard-list {
  padding-left: 0;
  margin: 0;
  font-size: 1rem;
  list-style: none;
}
.cc-panel-list li,
.chalkboard-list li {
  padding: 5px 0 5px 0;
  border-bottom: 1px dashed #5da183;
  color: #E9FFDD;
  font-family: 'Architects Daughter', 'Caveat', cursive, sans-serif;
  text-shadow: 0 1px 5px #174;
}
.cc-panel-list li:last-child,
.chalkboard-list li:last-child {
  border-bottom: none;
}

/* Chalk effect for numbers */
.cc-chalkboard-panel strong,
.chalkboard-panel strong {
  font-weight: 600;
  color: #8fea9b;
  background: linear-gradient(90deg, #E9FFDD 70%, #8fea9b 100%);
  border-radius: 4px;
  padding: 2px 6px;
  box-shadow: 0 1px 7px #1742;
  font-family: 'Rajdhani', 'Architects Daughter', sans-serif;
}

/* Decorative chalk smudge (optional) */
.cc-chalkboard-panel::after {
  content: '';
  display: block;
  position: absolute;
  top: 6px; right: 12px; width: 34px; height: 13px;
  background: radial-gradient(circle, #fff 0%, #E9FFDD 70%, transparent 100%);
  opacity: 0.18;
  border-radius: 13px;
  pointer-events: none;
}

/* Decorative bottom line/smear */
.cc-chalkboard-panel::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 7px; left: 11px; width: 72%; height: 9px;
  background: radial-gradient(circle, #E9FFDD 0%, #8fea9b 75%, transparent 100%);
  opacity: 0.23;
  border-radius: 10px;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .cc-chalkboard-panel,
  .chalkboard-panel {
    padding: 8.5px 3px 10.5px 4px;
    font-size: 0.93rem;
    border-radius: 10px;
  }
  .cc-chalkboard-title,
  .chalkboard-title {
    font-size: 0.98rem;
    margin-bottom: 7px;
  }
}

