.topicHeadline {
    width: 100%;
}

.headlineText {
    font-size: 1.75rem;
}

.allCardsContainer {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 3rem;
}

.cardContainer {
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(29, 36, 48, .08);
}

.cardImageContainer {
    overflow: hidden;
}

img {
    width: 100%;
    object-fit: cover;
}

.textContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.operator {
    margin-top: 0px;
    margin-bottom: .5rem;
    color: #737373;
}

@media (min-width: 576px) {
    .cardContainer {
    width: calc( 540px );
    }
}

@media (min-width: 768px) {
    .cardContainer {
    width: calc( 720px);
    }
}

@media (min-width: 992px) {
    .cardContainer {
    width: calc( (936px - 3rem) / 2 );
    }
}

@media (min-width: 1016px) {
    .cardContainer {
    width: calc( (960px - 3rem) / 2 );
    }
}

@media (min-width: 1200px) {
    .cardContainer {
    width: calc( (1140px - 3rem) / 2 );
    }
}

