    /* Posts container */
    .posts-container {
        background: #252525;
        display: flex;
        gap: 2rem;
    }

    /* Left side: posts grid */
    .posts-grid {
        flex: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Each post card */
    .post-card {
        background-color: #2b2b2b;
        border: 1px solid #333;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .post-card:hover {
        background-color: #3a3a3a;
    }

    .post-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border-bottom: 1px solid #444;
    }

    .post-content {
        padding: 15px;
        font-size: 14px;
        line-height: 1.3;
        color: #ddd;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .post-title {
        font-weight: 400;
        margin-bottom: 8px;
        color: #ddd;
        line-height: 1.2;
    }

    .post-date {
        font-size: 12px;
        color: #f57c20;
        font-weight: 500;
    }

    /* Right sidebar */
    .sidebar {
        flex: 1.5;
        font-size: 14px;
        color: #ccc;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 50px;
    }

    /* Section titles in sidebar */
    .sidebar h4 {
        font-family: 'Times New Roman', Times, serif;
        font-weight: 400;
        font-size: 20px;
        color: #eee;
        border-bottom: 1px solid #444;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }

    /* List items (recent posts & categories) */
    .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar ul li {
        padding: 10px 0;
        border-bottom: 1px solid #444;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .sidebar ul li:hover {
        color: #f57c20;
    }

    /* Links inside list */
    .sidebar ul li a {
        color: inherit;
        text-decoration: none;
    }

    /* Search box */
    .search-box {
        display: flex;
        gap: 8px;
    }

    .search-box input {
        flex-grow: 1;
        padding: 8px 12px;
        border: 1px solid #444;
        background-color: #222;
        color: #eee;
        font-size: 14px;
        border-radius: 0;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .search-box input:focus {
        border-color: #f57c20;
        background-color: #2b2b2b;
    }

    .search-box button {
        background-color: #f57c20;
        border: none;
        color: #222;
        padding: 8px 20px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 0;
    }

    .search-box button:hover {
        background-color: #d3690f;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
        .posts-container {
            flex-direction: column;
        }

        .posts-grid {
            grid-template-columns: 1fr;
        }

        .sidebar {
            flex-direction: row;
            justify-content: space-between;
            gap: 20px;
        }
    }