I have text in a div tag. This text has a gradient applied to it. It also needs a drop shadow. When I add the drop shadow it covers the gradient. Needs to look like the attached photo. Below is what I have attempted and this code does not create a drop shadow. I followed other post on here. If I add text-shadow: 10px 10px 11px rgb(0, 0, 0); to the #temp tag the drop shadow is on top of the gradient.
#temp {
font-size: 320px;
position: absolute;
font-family: 'pacificoregular';
text-transform: uppercase;
letter-spacing: 20px;
margin-top: -130px;
margin-left: 410px;
text-align: left;
background-image: linear-gradient(165deg, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 40%, rgba(225,133,0,1) 50%, rgba(225,133,0,1) 50%, rgb(143, 83, 0) 75%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color:rgba(225,133,0,1);
transform: rotate(-10deg);
}
#temp:after {
text-shadow: 10px 10px 11px rgb(0, 0, 0);
color: transparent;
}