/* 1. Base Reset & Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    max-width: 680px; /* Optimal reading width */
    margin: 60px auto;
    padding: 0 25px;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* 2. Global Link Styling (No Underlines) */
a {
    text-decoration: none;
    color: #111;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #666;
}

/* 3. Header & Navigation */
header {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 4. Homepage List (The "Elegant Blurb") */
.post-preview {
    margin-bottom: 4rem;
}

.post-preview h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    line-height: 1.2;
}

.post-preview p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999 !important;
}

.read-more:hover {
    color: #111 !important;
}

/* 5. Post Content Styling */
.post-content {
    font-size: 1.15rem;
    color: #222;
}

.post-content p {
    margin-bottom: 1.5rem;
}

/* Subtle indicator for links inside the actual story text */
.post-content a {
    border-bottom: 1px solid #eee;
}

.post-content a:hover {
    border-bottom-color: #111;
}

/* 6. The Prayer Box */
.prayer-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    margin-top: 60px;
    border: 1px solid #eaeaea;
}

.prayer-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #000;
}

/* 7. Button UI */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: #111;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.button:hover {
    background: #333;
    transform: translateY(-1px);
}

/* 8. Utility */
hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 3rem 0;
}
