.callouts {
    width: 100%;
}

.callouts__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
}

.callouts__item {
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
}

.callouts__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.callouts__photo {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.callouts__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 380;
    object-fit: cover;
}

.callouts__headline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 10px;
}

.callouts__headline-text {
    position: relative;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #71605C;
    text-transform: uppercase;
    transition: color 0.3s ease 0s;
}
.callouts__headline-text:after {
    content:'';
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.592' height='12'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23aa4a4d' d='M0 0h12v21.592H0z' data-name='Rectangle 3'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Group 9' transform='rotate(-90 6 6)'%3E%3Cpath fill='%23aa4a4d' d='m10.193 0 1.449 1.449-9.167 9.168L12 20.143l-1.449 1.449L.3 11.342a1.024 1.024 0 0 1 0-1.449Z' data-name='Path 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width:22px;
    height: 12px;
    display: inline-block;
    margin-left: 6px;
}

/* Tablet: 2 per row */
@media (max-width: 991px) {
    .callouts__item {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile: 1 per row */
@media (max-width: 500px) {
    .callouts__item {
        flex: 0 0 100%;
    }
}