body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #f5f6fa;
    color: #222;
}

/* Container */
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: #111;
    color: #fff;
    padding: 18px 0;
}

.header h1 {
    margin: 0;
    font-size: 26px;
}

/* Links */
a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

/* Post Cards */
.post-card {
    background: #fff;
    padding: 18px;
    margin: 18px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.post-card:hover {
    transform: translateY(-3px);
}

/* Titles */
.post-card h1,
.post-card h2,
.post-card h3 {
    margin: 0 0 10px;
    color: #111;
}

/* Paragraph */
.post-card p {
    color: #555;
    line-height: 1.6;
}

/* Featured Section */
.featured {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 10px;
    margin: 20px 0;
}

/* Buttons (future use) */
.btn {
    display: inline-block;
    padding: 8px 14px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
}

.btn:hover {
    background: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
    }

    .post-card {
        padding: 14px;
    }
}