* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    background: #fefefe;
    min-width: 1500px;
}



.informer-card {
    width: 320px;
    margin: 0 8px 24px 8px;
    box-shadow: 0px 4px 16px rgb(0 0 0 / 6%);
    border-radius: 8px;
    transition: 0.25s linear all;
}

.informer-card:hover {
    box-shadow: 0px 4px 16px rgb(0 0 0 / 20%);
}
.informer-card__img {
    width: 320px;
    height: 220px;
    overflow: hidden;
    margin: 0 0 8px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.informer-card__img img {
    width: auto;
    height: 220px;
    border-radius: 8px 8px 0 0;
    
}

.informer-card__category {
    margin: 8px 0 24px 0;
}

.informer-card__category a {
    display: block;
    /* Card title */

    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    /* or 140% */

    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    /* black */

    color: #111112;

}
.informer-card__title {
    margin-bottom: 16px;    
    text-align: center;
    padding: 0 12px;
}
.informer-card__title a {
    /* txt main */

    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */

    text-decoration: none;
    /* black */

    color: #111112;
}