.prayer-wall-hero {
    padding: 115px 20px 95px;
    background: linear-gradient(135deg, rgba(14, 52, 39, .94), rgba(18, 31, 44, .88));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prayer-wall-hero:before {
    content: "";
    position: absolute;
    inset: -120px auto auto 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212, 175, 55, .28), transparent 68%);
    pointer-events: none;
}

.prayer-wall-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prayer-wall-hero span,
.prayer-wall-section-title span {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
}

.prayer-wall-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 58px;
    margin: 18px 0;
}

.prayer-wall-hero p {
    font-size: 18px;
    line-height: 1.75;
    opacity: .94;
}

.prayer-wall-actions {
    margin-top: 30px;
}

.prayer-wall-actions a,
.empty-prayer-wall a {
    display: inline-block;
    text-decoration: none;
    background: #d4af37;
    color: #173d2f;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.prayer-wall-section {
    padding: 80px 20px;
    background: #f7f5ef;
}

.prayer-wall-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prayer-wall-section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}

.prayer-wall-section-title h2 {
    font-family: 'Cinzel', serif;
    color: #173d2f;
    font-size: 38px;
    margin: 12px 0;
}

.prayer-wall-section-title p {
    color: #6b6b6b;
    line-height: 1.75;
}

.prayer-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.prayer-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    border: 1px solid rgba(212, 175, 55, .20);
}

.prayer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.prayer-category {
    background: #fff6d8;
    color: #9a7412;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.prayer-card-top small,
.prayer-name {
    color: #888;
}

.prayer-type-badge {
    display: inline-block;
    margin-bottom: 16px;
    color: #173d2f;
    background: #eef7f1;
    border: 1px solid rgba(23, 61, 47, .12);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.prayer-text {
    color: #333;
    font-size: 16px;
    line-height: 1.75;
    min-height: 120px;
    white-space: pre-line;
}

.prayer-name {
    margin-top: 14px;
    font-size: 14px;
    font-style: italic;
}

.prayer-footer {
    border-top: 1px solid #eee;
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.prayer-count {
    color: #173d2f;
    font-weight: 700;
}

.pray-btn {
    border: none;
    background: #173d2f;
    color: white;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: .25s ease;
}

.pray-btn:hover:not(:disabled) {
    background: #d4af37;
    color: #173d2f;
}

.pray-btn:disabled {
    opacity: .72;
    cursor: default;
}

.empty-prayer-wall {
    text-align: center;
    background: #fff;
    padding: 60px 24px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
}

.empty-prayer-wall h2 {
    color: #173d2f;
    margin-bottom: 8px;
}

.empty-prayer-wall p {
    color: #777;
    margin-bottom: 24px;
}

@media(max-width: 992px) {
    .prayer-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 640px) {
    .prayer-wall-grid {
        grid-template-columns: 1fr;
    }

    .prayer-wall-hero h1 {
        font-size: 38px;
    }

    .prayer-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
