.golf-pros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 60px;
}

.golf-pro {
    background: #004B31;
}

.golf-pro-image-container {
    height: 386px;
    width: 100%;
}

.golf-pro-image-container > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
}

.golf-pro-content {
    color: #f5f1e8;
    padding: 30px;
}

h3.golf-pro-title {margin-bottom: 10px;line-break: anywhere;}

.golf-pro-function {
    font-weight: 600;
    margin-bottom: 10px;
}

.golf-pro-description {
    margin-bottom: 10px;
}

@media screen and (max-width: 1500px)
{
    h3.golf-pro-title{
        font-size: calc(28 / 16 * 1rem);
    }
}

@media screen and (max-width: 1300px)
{
    h3.golf-pro-title{
        font-size: calc(28 / 16 * 1rem);
    }
    .golf-pros {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 976px)
{
    .golf-pros {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 750px)
{
    .golf-pros {
        grid-template-columns: repeat(1, 1fr);
    }
    .golf-pro-image-container {
        height:auto;
    }
    .golf-pro-image-container > img {
        object-fit: initial;
    }
}
