.feed-item {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1152px) {
    .container {
        width: 100%;
        margin: 0 10px;
        /* Small margin on sides for smaller screens */
        box-shadow: none;
        /* Remove shadow on smaller screens */
    }
}

.documentation-container {
    padding: 0px;
}

.documentation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.documentation-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.documentation-item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.documentation-item div {
    flex-grow: 1;
}

.documentation-item h2 {
    font-size: 1.5em;
    margin: 0;
    font-family: 'Arvo', serif;
    font-weight: bold;
}

.documentation-item p {
    margin: 5px 0 0 0;
    font-size: 1em;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
    .documentation-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .documentation-item img {
        margin: 0 0 10px 0;
    }
}