/*
 * Fixes for template bugs, kept out of main.css so they survive a re-export of
 * the theme and stay easy to review.
 */

/*
 * width="80%" on the home page client logos is not valid HTML — the width
 * attribute takes a pixel count, so browsers dropped it and the intended
 * sizing never applied. Expressed properly in CSS here.
 */
.tourTypeCard__content img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
}
