.list-section-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.list-section-grid .list-item {
    display: flex;
    flex-direction: column;
}

/* Specific adjustments for cards if needed */
.list-section-grid .list-item > * {
    width: 100%;
}

/* List Item Component */
.list-item-card {
    display: flex;
    gap: 2.25rem;
    align-items: flex-start;
}

.list-item-image {
    width: 25%;
    flex-shrink: 0;
}

.list-item-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Optional enhancement */
}

.list-item-content {
    flex-grow: 1;
}

@media screen and (max-width: 736px) {
    .list-item-image {
        width: 33.33333%;
    }
}

@media screen and (max-width: 480px) {
    .list-item-card {
        flex-direction: column;
    }
    
    .list-item-image {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}
