/* Sanctuary Soft — Prayer Wall Styling */

.hoh-prayer-wall {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual Prayer Cards */
.hoh-prayer-entry {
    background: #ffffff;
    border-left: 6px solid #7c5ac8; /* Sanctuary purple */
    padding: 22px;
    margin-bottom: 24px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

/* Hover lift effect */
.hoh-prayer-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* Name / Anonymous */
.hoh-prayer-name {
    font-size: 20px;
    font-weight: 700;
    color: #5a3e8f;
    margin-bottom: 10px;
    font-family: "Georgia", serif;
}

/* Prayer text */
.hoh-prayer-text {
    font-size: 16px;
    line-height: 1.55;
    color: #3f2f63;
    margin-bottom: 14px;
}

/* Date */
.hoh-prayer-date {
    font-size: 13px;
    color: #7a6a9b;
    font-style: italic;
}

/* Divider line between prayers (optional) */
.hoh-divider {
    height: 1px;
    background: #e8e0f7;
    margin: 30px 0;
}

/* Page title styling */
.hoh-prayer-wall-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #5a3e8f;
    margin-bottom: 30px;
    font-family: "Georgia", serif;
}

/* Soft fade-in animation */
.hoh-prayer-entry {
    opacity: 0;
    animation: fadeInSoft 0.6s ease forwards;
}

@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
