.press-mentions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.press-mentions__heading {
    grid-column: 1 / -1;
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2933;
}

.press-mentions__item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 120px;
    padding: 18px;
    color: #1f2933;
    text-decoration: none;
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.press-mentions__item:hover,
.press-mentions__item:focus {
    color: #0f4c81;
    text-decoration: none;
    border-color: #b8c8d8;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
    transform: translateY(-2px);
}

.press-mentions__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 120px;
    height: 66px;
    padding: 10px;
    border: 1px solid #eef1f5;
    border-radius: 6px;
    background: #fff;
}

.press-mentions__logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.press-mentions__title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

@media (max-width: 1040px) {
    .press-mentions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .press-mentions {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .press-mentions__item {
        min-height: 104px;
        padding: 14px;
    }

    .press-mentions__logo {
        flex-basis: 96px;
        height: 56px;
    }
}
