.coach {
    display: grid;
}

@media screen and (min-width:768px) {
    .coach {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 30px;
        justify-content: space-between;
    }
}

@media screen and (max-width:768px) {
    .coach {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        justify-content: space-between;
    }

}

.coach .item{
    background: #c9d8ef;
    display: block;
}

.coach .item img{
    width: 100%;
}

.coach .item .intro{
    background: #ececec;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.coach .item .intro .leftRed{
    width: 20px;
    background: #a60000;
}

.coach .item .intro .rightCont {
    flex: 1;
    padding: 20px;
    line-height: 1.5;
}
.coach .item .intro .rightCont .coachName{
    color: #a60000;
    font-size: 18px;
    margin-bottom: 10px;
}
.coach .item .intro .gold{
    width: 80px;
    height: 80px;
    position: absolute;
    right: 5px;
    bottom: 10px;
}

@media screen and (max-width:768px) {

    .coach .item .intro .rightCont {
        padding: 10px;
    }
    .coach .item .intro .rightCont .coachName{
        font-size: 14px;
    }
    .coach .item .intro .rightCont .career{
        font-size: 12px;
    }
    .coach .item .intro .gold{
        width: 40px;
        height: 40px;
        right: 3px;
        top: 3px;
    }
}
