    .post-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1280px;
        width: 100%;
    }
    .post-card {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: calc(33.33% - 20px);
        margin: 10px;
        padding: 16px;
        transition: transform 0.3s ease;
    }
    .post-card:hover {
        transform: translateY(-10px);
    }
    .post-header {
        display: flex;
        align-items: center;
    }
    .post-header img {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    .post-header h3 {
        margin: 0;
        font-size: 18px;
        color: #e53935;
    }
    .post-header p {
        margin: 0;
        font-size: 12px;
        color: #777;
    }
    .post-image {
        margin-top: 16px;
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
    }
    .post-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;
        color: #777;
    }
    .post-footer .interaction {
        display: flex;
        align-items: center;
    }
    .post-footer .interaction span {
        margin-left: 8px;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    .post-footer .interaction span:hover {
        color: #e53935;
    }
    .post-footer a {
        text-decoration: none;
        color: #e53935;
        transition: color 0.3s ease;
    }
    .post-footer a:hover {
        color: #b71c1c;
    }
    @media (max-width: 768px) {
        .post-card {
            width: calc(50% - 20px);
        }
    }
    @media (max-width: 480px) {
        .post-card {
            width: 100%;
        }
    }