/*
 * Tarjeta de empresa para grillas (listados, "Empresas recomendadas", etc.).
 * Layout: logo arriba (65%) + banda blanca con nombre y ubicación (35%).
 */

.tarjetas-empresas .strip figure {
    height: 300px;
    background-color: #f5f6f8;
}

.tarjetas-empresas .strip figure img {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 65%;
    max-width: none;
    max-height: none;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

.tarjetas-empresas .strip figure:hover img {
    transform: none;
}

.tarjetas-empresas .strip figure .item_title {
    top: auto;
    bottom: 0;
    height: 35%;
    background: #fff;
    padding: 10px 14px;
    border-top: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tarjetas-empresas .strip figure .item_title h3   { color: #1a1a1a; }
.tarjetas-empresas .strip figure .item_title small { color: #5b6770; }

@media (max-width: 991px) {
    .tarjetas-empresas .strip figure { height: 250px; }
}
@media (max-width: 767px) {
    .tarjetas-empresas .strip figure { height: 270px; }
}
