         .ghost {
            margin-top: 150px;
         }

         .posts {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
         }

         .post {
            /* max-width: 550px; */
            background-color: #fff;
            padding: 20px;
            padding-bottom: 35px;
            border-radius: 64px;
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: start;
            /* justify-content: center; */
            gap: 20px;
         }

         .post-image img {
            width: 100%;
            /* max-width: 550px; */
            border-radius: 34px;
            /* margin: 0 auto; */
         }

         .post-title {
            text-align: start;
            font-size: 36px;
            margin-bottom: 15px;
         }

         @media screen and (max-width: 1024px) {
            .posts {
               grid-template-columns: 1fr;
            }
         }