.pauschale-small__outer {
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.pauschale-small__wrapper {
    width: calc(33% - 30px);
    max-width: 360px;
    display: grid;
    grid-template-rows: 200px auto;
    box-sizing: border-box;
    margin: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.pauschale-small__wrapper:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.pauschale-small__image {
    position: relative;
}

.pauschale-small__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pauschale-small__content-wrapper {
    padding: 15px;
    height: 100%;
    box-sizing: border-box;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.pauschale-small__title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.pauschale-small__price-container {
    width: 100%;
    height: 20px;

    position: absolute;
    bottom: 20px;
    background-color: rgba(0, 0, 0, .7);

    text-align: center;
    padding: 15px 0;
}

.pauschale-small__price {
    color: var(--pmg-white);
    font-weight: bold;
}

.pauschale-small__text {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 1em;
    line-height: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pauschale-small__cta {
    width: 240px;
    margin-top: 20px;
    padding: 15px 0;
    font-family: plantin, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--pmg-white);
    background-color: var(--pmg-gold);
    display: inline-block;
    text-align: center;
}

@media only screen and (max-width: 1023px) {
    .pauschale-small__wrapper {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 767px) {
    div.pauschale-small__wrapper {
        width: calc(100% - 15px);
    }
}
