.teams-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.team-card {
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 3px 13px rgba(0,0,0,.08);
    border:1px solid #E9E9E9;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.team-card__icon img {
    width: 30px;
    height: 30px;
    display: block;
}

.team-card__title {
    margin:0;
    font-size:16px;
    line-height: 24px;
    text-transform: uppercase;
}
.team-card__available{
    color:#4C9857;
}

.team-card__progress-section{
    display:flex;
    gap:20px;
    align-items: center;
}
.team-card__progress {
    height: 8px;
    background: #ececec;
    border-radius: 20px;
    overflow: hidden;
    flex:1;
}

.team-card__progress-fill {
    height: 100%;
    background: #4C9857;
    border-radius: 20px;
}

.team-card__footer {
    display: flex;
    align-items: center;
    gap:8px;
}

.team-card__footer .icon{
    width:8px;
    height:8px;
    background-color: #4C9857;
    border-radius: 100%;
}

@media screen and (max-width:767px) {
    .teams-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-card {
        padding: 12px;
    }

    .teams-grid  .team-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .team-card__icon img {
        width: 24px;
        height: 24px;
    }

    .team-card__title {
        margin:0;
        font-size:14px;
        line-height: 20px;
    }
    .team-card__available, .team-card__footer, .team-card__progress-section{
        font-size:14px;
        line-height: normal;
    }
    .team-card__progress-section{
        gap:16px;
    }
    .team-card__progress {
        height: 4px;
    }
    .team-card__footer .icon{
        width:8px;
        height:8px;
        background-color: #4C9857;
        border-radius: 100%;
    }
}