.think-ahead-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.think-ahead-photo-gallery a {
    display: block;
    height: 100%;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
}

.think-ahead-photo-gallery a img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}