.prodejny,
.team {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: calc(100% + 14px);
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -7px;
}
@media (max-width: 480px) {
    .prodejny,
    .team {
        width: 100%;
        margin: 0;
    }
}
.prodejny > div,
.team > div {
    margin: 5px 0;
    width: 100%;
    background: #F6F6F6;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}
@media (min-width: 480px) {
    .prodejny > div,
    .team > div {
        width: calc(50% - 14px);
        margin: 7px;
    }
}
@media (min-width: 992px) {
    .prodejny > div,
    .team > div {
        width: calc(33.333% - 14px);
    }
}
.prodejny > div h3,
.team > div h3 {
    color: black;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}
.prodejny > div p,
.team > div p {
    font-size: 15px;
    color: black;
    margin: 0;
}
.prodejny > div a,
.team > div a {
    font-size: 15px;
    color: white;
    background: black;
    padding: 5px 20px;
}
.team > div {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}
@media only screen and (max-width: 1200px) {
    .team > div {
        width: calc(50% - 14px);
    }
}
@media only screen and (max-width: 480px) {
    .team > div {
        width: 100%;
    }
}
@media only screen and (max-width: 1200px) {
    .team > div h3 {
        font-size: 1.6em;
    }
}
.team > div a {
    background: transparent;
    padding: 0;
    color: #880009;
    margin-bottom: 0;
    display: block;
    line-height: 1em;
    font-size: 1.2em;
}
.team > div a:hover {
    text-decoration: none;
}
.team > div img {
    margin-top: 10px;
}