.resource-image-container {
    max-width: 800px;
    margin: 0;
    text-align: start;  /* Ensures inline content aligns to start */
    display: flex;      /* Use flexbox for more control */
    justify-content: flex-start;  /* Explicitly align to start */
}

.resource-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin: 0;         /* Reset any margin */
    display: block;    /* Removes any inline behavior */
}