* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.sw-mission-tag { 
    width: 100%;
    max-width: 100vw; /* vW = viewport width, el ancho real de la pantalla */
    box-sizing: border-box; /* Esto hace que el padding no "infle" el tamaño */
    overflow: hidden;
}



/* Estilo para el título de la misión */
.sw-reveal-left h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Ajuste dinámico de fuente */
    font-weight: 800;
    color: var(--txt); /* Color base del texto */
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* El secreto del color: SIL (texto base) y WORK (el em) */
.sw-reveal-left h2 em {
    font-style: normal; /* Quitamos la cursiva por defecto */
    color: #6C2BD9; /* <--- TU COLOR MORADO SILWORK */
}
