/* Container */
#wl-wall {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  background: #fffaf3;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(30, 10, 0, 0.12);
  font-family: Georgia, "Times New Roman", serif;
}

/* Grid layout */
#wl-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  #wl-list { grid-template-columns: 1fr 1fr; }
}

/* Prayer card */
#wl-list article {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#wl-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Name + time */
.wl-name {
  font-weight: 700;
  color: #7b4e30;
  font-size: 16px;
}
.wl-time {
  font-size: 13px;
  color: #8a7a70;
}

/* Prayer text */
.wl-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #3a2d24;
  white-space: pre-wrap;
}
