.firma-container {
    max-width: 100%;
    transition: all 0.25s ease;
}

.firma-image {
    height: 350px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; /* Solo mantenemos una propiedad para el background-position */
    overflow: hidden;
    position: relative;
}

.firma-image img {
    display: none; /* Si no necesitas mostrar imágenes, podrías considerar eliminar esta línea */
}

.firma-content {
    padding: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    position: absoluta;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.firma-content h3 {
    font-size: 1.4em;
    font-weight: bold; /* Solo es necesario una vez */
    line-height: 1.2em;
    margin: 0;
    font-family: 'Helvetica condensed', Helvetica, Arial, sans-serif; /* Asegúrate de usar una fuente válida */
	text-shadow:1px 1px 10px black;
}

.firma-content a {
    color: #fff;
    text-decoration: none;
}

.firma-content a:hover {
    color: #ff0000; /* Color de hover */
}

.firma-content p {
    font-size: 14px;
    margin: 0;
    font-family: 'Helvetica ', Helvetica, Arial, sans-serif;
    color: #fff;
    margin-left: 0.8em; /* Considera la posibilidad de usar padding en lugar de margin si es necesario */
}

.firma-meta {
    display: block; /* Decidí mantenerlo como block, pero puedes ajustar según tus necesidades */
}
.firma-title-container {font-size: 16px;
    margin: 0;

    font-weight: bold;
    color: #fff;}

.firma-enfasis {
    font-size: 14px;
    margin: 0;
    font-family: 'Helvetica condensed', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    background: #bb0000;
    padding: 3px 5px; /* Comprimido padding para simplificar */
}