.collectables-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 50px;
}

.collectables-content img {
    width: 50%;
}

.equine-depictions {
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.collectables-info,
.collectables-image {
    width: 50%;
}

.collectables-image img {
    width: 500px;
}

.debs-work {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

.work-examples {
    display: flex;
    gap: 25px;
}

.work-examples img {
    width: 500px;
    height: auto;
}

/* Mobile */
@media (max-width: 1000px) {

    .work-examples,
    .equine-depictions {
        flex-direction: column;
    }

    .collectables-content img {
        width: 90%;
    }

    .collectables-info,
    .collectables-image {
        width: 100%;
    }
}