h2 {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
    align-items: center;
}

.grid figure {
    font-size: 0.95rem;
    text-align: center;
}

.grid figcaption p {
    font-size: 1em;
    line-height: 1.4;
}

img {
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
    .grid figure {
        font-size: 1rem;
    }
}