/* =============================================================================
   WSS Vibra Trabajos Relacionados
   ============================================================================= */

.wss-trabajos-rel {
    width: 100%;
}

.wss-trabajos-rel__title {
    font-family: "Franklin Gothic URW", "Franklin Gothic Medium", "ITC Franklin Gothic", Franklin, sans-serif;
    font-size: 30px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 24px;
}

.wss-trabajos-rel__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.wss-trabajos-rel__col {
    display: flex;
    flex-direction: column;
}

.wss-trabajos-rel__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wss-trabajos-rel__img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f4f4f4;
}

.wss-trabajos-rel__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wss-trabajos-rel__link:hover .wss-trabajos-rel__img img {
    transform: scale(1.03);
}

.wss-trabajos-rel__txt {
    margin-top: 12px;
}

.wss-trabajos-rel__txt-tit {
    font-family: "Franklin Gothic URW", "Franklin Gothic Medium", "ITC Franklin Gothic", Franklin, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #222222;
}

.wss-trabajos-rel__txt-subtit {
    font-family: "Franklin Gothic URW", "Franklin Gothic Medium", "ITC Franklin Gothic", Franklin, sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #222222;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .wss-trabajos-rel__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wss-trabajos-rel__row {
        grid-template-columns: 1fr;
    }
}
