
/* Prayers page specific styles */

.prayers-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.prayer-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid  #9a4b1d;
    border-top: 4px solid  #9a4b1d;
    /* border-left: 4px solid #f1c40f; */
}


.prayer-item h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.prayer-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.prayer-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prayer-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .prayer-item h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .prayer-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.footer-bottom {
        width: 100%;
        text-align: center;
    }