body {
    font-family: "Georgia", serif;
    background-color: #faf6f2;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

/* Header */

header {
    background: #f4d7d7;
    padding: 25px 15px;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #5a3e36;
    font-size: 2.2rem;
}

header p {
    margin-top: 8px;
}

/* Container */

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
}

/* Post previews */

.post-preview {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}

.post-preview h2 {
    margin-top: 0;
}

.post-preview a {
    text-decoration: none;
    color: #b56576;
    font-weight: bold;
}

/* Images */

.post-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* ========================= */
/* Mobile adjustments */
/* ========================= */

@media (max-width: 600px) {

    header h1 {
        font-size: 1.7rem;
    }

    header p {
        font-size: 0.95rem;
    }

    .container {
        width: 94%;
        padding: 15px 0;
    }

    .post-preview {
        padding: 16px;
    }

    .post-preview h2 {
        font-size: 1.3rem;
    }

    body {
        font-size: 16px;
    }
}

.post-meta {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 10px;
}

.post-meta span {
    margin: 0 8px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.post-navigation a {
    text-decoration: none;
    color: #b56576;
    font-weight: bold;
}

.post-navigation a:hover {
    text-decoration: underline;
}

@media (max-width:600px){

    .post-navigation{
        flex-direction: column;
        gap: 10px;
    }

}
