.news__title {
    position: relative;
    z-index: 20;
}

.news__meta {
    display: flex;
    align-items: center;
    gap: 38px;
    position: relative;
    z-index: 20;
}

.news__date {
    font-size: 14px;
    color: #575759;
}

.news__type {
    font-size: 9px;
    padding: 0 12.5px;
    background: #535353;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    color: #ffffff;
    height: 19px;
    display: flex;
    align-items: center;
}

.news__content iframe {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.news__content p {
    font-size: 16px;
    color: #415465;
    line-height: 24px;
    position: relative;
    z-index: 20;
}

.news__content p em {
    font-style: italic;
}

.news__content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news__content ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news__content ul li {
    padding: 0 0 0 20px;
    position: relative;
}


.news__content ol li {
    padding: 0 0 0 20px;
    position: relative;
}

.news__content ol {
    counter-reset: my-counter;
    list-style: none;
}

.news__content ol li {
    counter-increment: my-counter;
    color: #415465;
    font-size: 16px;
    line-height: 24px;
}

.news__content ol li::before {
    content: counter(my-counter) ". ";
    font-weight: bold;
    left: 0;
    position: absolute;
    background: linear-gradient(187.93deg, #FFCB00 4.5%, #FF5736 90%, #FF005E 126.04%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news__content ul li em {
    font-style: italic;
}

.news__content ol li em {
    font-style: italic;
}

.news__content ul li:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(to top right, #FF005E, #FFCB00);
    left: 0;
    top: 5px;
}

.news__content ul li {
    color: #415465;
    font-size: 16px;
    line-height: 24px;
}

.news__content h2 {
    color: #415465;
    font-size: 34px;
    font-weight: 900;
    position: relative;
    z-index: 20;
}

.news__content h3 {
    color: #415465;
    font-size: 26px;
    font-weight: 700;
    position: relative;
    z-index: 20;
}

.news__content h4 {
    color: #415465;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 20;
}

.news__content a {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(187.93deg, #FFCB00 4.5%, #FF5736 90%, #FF005E 126.04%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 20;
}

.news__content i {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: #415465;
    position: relative;
    z-index: 20;
}

.news__content p img {
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 20;
}

blockquote {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}


blockquote p {
    line-height: 16px !important;
}

blockquote p:first-child {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #415465;
    position: relative;
    z-index: 20;
    text-align: center;
    position: relative;
    padding-top: 28px;
}

blockquote p:first-child:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 13px;
    background-image: url('/wp-content/themes/safetech/assets/img/quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

.quote__author {
    font-size: 16px;
    font-style: normal !important;
    color: #415465;
    font-weight: 700;
}

.bg-news {
    position: absolute;
    right: 0;
    bottom: -600px;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/safetech/assets/img/news-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: -2;

}

@media(max-width:768px) {
    .news__content img {
        width: 100%;
    }
}