.single-news {
    display: block;
    max-width: 100%;
    padding-bottom: 200px;

    & .breadcrumbs-container {
        display: flex;
        width: calc(100% - 42px);
        justify-content: space-between;
        margin: 30px auto 55px;
        max-width: 1140px;

        & .breadcrumbs {
            display: flex;
            flex-flow: row nowrap;
            justify-content: center;
            align-items: center;
            gap: 30px;

            & a {
                display: flex;
                align-items: center;
                gap: 30px;
                flex: 1 0 0;
                display: flex;
                padding: 6px 16px;
                gap: 8px;
                color: var(--color-dark-gray);
                border-radius: 4px;
                border: 1px solid var(--color-dark-gray);
                text-decoration: none;
                text-transform: uppercase;
            }

            & .news-date {
                color: var(--color-dark-gray);
                text-transform: uppercase;
            }

        }

        & .go-back {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--color-dark-gray);
            background-color: none;
            border: none;
            text-decoration: none;
            text-transform: uppercase;

            & svg {
                fill: var(--color-dark-gray);
            }
        }
    }

    & .news-hero {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        flex-flow: row;
        max-width: 1140px;
        margin: 0 auto;
        width: calc(100% - 2rem);
        gap: 72px;




        & .hero-content {
            flex: 1 1 100%;
            padding: 0;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 16px;

            & h1 {
                color: var(--color-blue-dark);
            }

            & p.txt-large {
                color: var(--color-dark-gray);
            }
        }

        & .hero-image {
            flex: 1 1 auto;
            position: relative;
            overflow: hidden;

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    & .news-content-aside {
        display: flex;
        flex-flow: column nowrap;
        max-width: 1140px;
        width: calc(100% - 2rem);
        padding: 0;
        align-items: flex-start;
        gap: 48px;
        margin: 64px auto;
        border-radius: 20px;



        & .news-social {
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-start;
            justify-content: flex-start;
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0;
            gap: 16px;
            border-radius: 20px;

            & .share-buttons {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                width: 1140px;
                height: 87px;
                align-items: center;
                gap: 24px;
                border-top: solid 1px var(--color-gray-300);
            }

            & .share-button {
                border-radius: 8.333px;
                background: var(--GC-Grey---200, #F0F2F4);
                height: 40px;
                width: 40px;
            }

            & p.txt-large {
                color: var(--color-gray);
                text-align: center;
                text-transform: uppercase;
            }

            & .social-icons {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 18px;

                & a {
                    color: var(--color-dark-gray);
                    display: flex;
                    padding: 6.667px;
                    justify-content: center;
                    align-items: center;
                    gap: 8.333px;
                    border-radius: 8.333px;
                    background: var(--GC-Grey---200, #F0F2F4);

                    &:hover {
                        color: var(--color-blue-dark);
                    }
                }
            }
        }

        & .section-hero-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin: 8px 0 64px 0;

            & .hero-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 8px;

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 8px;
                }
            }

        }

        & .section-content-text {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1140px;
            width: calc(100% - 2rem);
            margin: 0 auto;
            padding: 0;

            & .content-text {
                display: flex;
                width: 752px;
                padding-left: 30px;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 16px;
                border-left: 4px solid var(--GC-Green, #25C3C1);

                & p {
                    color: var(--color-dark-gray);
                    font-family: var(--font-family-primary);
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 160%;
                    /* 28.8px */
                    letter-spacing: 0.18px;
                    width: 100%;
                }
            }
        }

        & .section-content-image {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1140px;
            width: calc(100% - 2rem);
            margin: 0 auto;
            padding: 0;

            & .content-image {
                display: flex;
                width: 752px;
                height: auto;
                object-fit: cover;
                border-radius: 8px;

                & img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 8px;
                }
            }
        }

        & .news-quote {
            width: calc(100% - 2rem);
            max-width: 752px;
            margin: 0 auto 64px;
            border-radius: 20px;
            border-left: none;
            background-color: #00000000;
            display: flex;
            gap: 24px;
            padding: 0;

            & .quote-text {
                flex-flow: column;
                display: flex;
                padding: 45px;
                justify-content: center;
                align-items: flex-start;
                gap: 30px;
                align-self: stretch;
                border-radius: 20px;
                background: var(--color-gray-100);
                position: relative;
                width: 100%;


                & img {
                    position: absolute;
                    width: 40px;
                    height: 40px;
                    padding: 0;
                    border-radius: 0;

                    &.left {
                        left: 2rem;
                        top: 2rem;
                    }

                    &.right {
                        right: 2rem;
                        bottom: 2rem;
                    }
                }

                & p {
                    color: var(--GC-Grey---800, #3F4C56);
                    font-family: var(--font-family-primary);
                    font-size: 18px;
                    font-style: italic;
                    font-weight: 400;
                    line-height: 130%;
                    /* 23.4px */
                    letter-spacing: 0.18px;
                    max-width: 528px;
                    margin: 0 auto;
                }

                & p.txt-footer {
                    margin-top: 8px;
                    font-size: 16px;
                    color: var(--color-gray);

                    /* TXT - Small */
                    font-family: var(--font-family-primary);
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 160%;
                    /* 22.4px */
                    letter-spacing: 0.14px;
                    width: 100%;
                    max-width: 528px;
                }
            }

            & img {
                display: flex;
                padding: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
                width: 364px;
                height: 338px;
                align-self: stretch;
                border-radius: 20px;
            }
        }

        & .news-external-link {
            display: flex;
            flex-flow: column nowrap;
            max-width: 1140px;
            width: calc(100% - 2rem);
            justify-content: center;
            align-items: center;


            & .external-link-card {
                display: flex;
                width: 752px;
                padding: 48px;
                align-items: center;
                gap: 48px;
                border-radius: 24px;
                background: var(--color-gray-100, #F7F8FA);

                & .link-content {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    gap: 24px;

                    & .h3-title {
                        color: var(--color-blue-dark);
                        font-size: 28px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 110%;
                        /* 30.8px */
                        letter-spacing: -0.56px;
                    }

                    & p {
                        font-family: 'Lato', sans-serif;
                        font-size: 18px;
                        font-style: italic;
                        font-weight: 400;
                        line-height: 130%;
                        letter-spacing: 0.18px;
                        color: var(--color-dark-gray);

                    }

                    & a {}
                }
            }
        }

        & .pdf-card-section {
            display: flex;
            flex-flow: column nowrap;
            max-width: 1140px;
            width: calc(100% - 2rem);
            justify-content: center;
            align-items: center;
            margin: 8px 0 64px 0;

            & .pdf-card-container {
                display: flex;
                width: 752px;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                border-radius: 16px;
                background: var(--White, #FFF);
                mix-blend-mode: multiply;

                & .card {
                    display: flex;
                    width: 100%;
                    padding: 0;
                    align-items: center;
                    gap: 0;
                    border-radius: 16px;
                    background: var(--color-gray-100, #F7F8FA);

                    & .pdf-card-image {
                        width: 100%;
                        height: 515px;
                        object-fit: cover;
                        border-radius: 12px 12px 0 0;
                        flex: 1 0 0;
                        align-self: stretch;

                    }

                    & .pdf-card-content {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;
                        padding: 48px 24px;
                        width: 100%;
                        gap: 24px;

                        & h3 {
                            color: var(--color-blue-dark);
                            font-family: 'Lato', sans-serif;
                            font-size: 28px;
                            font-style: normal;
                            font-weight: 500;
                            line-height: 110%;
                            /* 30.8px */
                            letter-spacing: -0.56px;
                        }

                        & .pdf-card-buttons {
                            display: flex;
                            gap: 16px;

                            & .btn {
                                text-transform: uppercase;
                                font-family: var(--font-family-primary);
                            }
                        }
                    }
                }


            }
        }

        & .section-content-press-release {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1140px;
            width: calc(100% - 2rem);
            margin: 0 auto 64px;
            padding: 0;

            & .content-press-release {
                display: flex;
                width: 752px;
                height: 228px;
                justify-content: center;
                align-items: stretch;
                gap: 24px;

                & .press-release-text {
                    color: var(--color-dark-gray);
                    font-family: var(--font-family-primary);
                    border-left: 4px solid var(--GC-Green, #25C3C1);
                    padding-left: 30px;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 160%;
                    /* 28.8px */
                    letter-spacing: 0.18px;
                    width: 50%;
                    gap: 16px;
                    display: flex;
                    flex-direction: column;

                    & p {
                        color: var(--color-gray);

                        /* TXT - Small */
                        font-family: var(--font-family-primary);
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 130%;
                        /* 20.8px */
                        letter-spacing: 0.16px;
                        width: 100%;
                    }
                }

                & .press-release-link {
                    display: flex;
                    flex-flow: column nowrap;
                    padding: 48px;
                    align-items: center;
                    gap: 24px;
                    flex: 1 0 0;
                    align-self: stretch;
                    margin-top: 0;
                    border-radius: 24px;
                    background: var(--GC-Grey---100, #F7F8FA);
                    height: 100%;
                    width: 50%;

                    & h3 {
                        color: var(--color-blue-dark);
                        font-family: var(--font-family-primary);
                        font-size: 28px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 110%;
                        /* 30.8px */
                        letter-spacing: -0.56px;
                    }
                }
            }
        }
    }



    & .related-news-widget {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 1140px;
        margin: 64px auto;
        padding: 0 1rem;
        box-sizing: border-box;

        & h3.h3-title.widget-title {
            color: var(--color-blue-dark);
            font-family: var(--font-family-primary);
            font-size: 36px;
            font-style: normal;
            font-weight: 500;
            line-height: 110%;
            letter-spacing: -0.72px;
            text-align: left;
            background: var(--GC-MainGradient, linear-gradient(42deg, #25C3C1 4.8%, #377EF7 98.12%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        & h3.h3-title {
            color: var(--color-blue-dark);
            font-family: var(--font-family-primary);
            font-size: 36px;
            font-style: normal;
            font-weight: 500;
            line-height: 110%;
            letter-spacing: -0.72px;
            text-align: left;

        }

        & .related-news-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            width: 100%;
            margin-top: 24px;
        }

        & .related-news-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
            border-radius: 20px;
            border: 1px solid var(--GC-Grey---200, #F0F2F4);
            background: #FFF;
            backdrop-filter: blur(2px);
            margin-right: 24px;

            &:hover {
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            }

            & .card-image {
                border-radius: 20px 20px 0 0;
                -webkit-border-radius: 20px 20px 0 0;
                -moz-border-radius: 20px 20px 0 0;
                -ms-border-radius: 20px 20px 0 0;
                -o-border-radius: 20px 20px 0 0;
                height: 240px;
                max-height: 240px;
                overflow: hidden;

                & img {
                    border-radius: 20px 20px 0 0;
                    -webkit-border-radius: 20px 20px 0 0;
                    -moz-border-radius: 20px 20px 0 0;
                    -ms-border-radius: 20px 20px 0 0;
                    -o-border-radius: 20px 20px 0 0;
                    object-fit: cover;
                    max-width: 100%;
                    height: 240px;
                    width: 100%;
                    display: block;
                }
            }

            & .card-content {
                padding: 24px;
                display: flex;
                flex-direction: column;
                gap: 24px;


                & .post-date {
                    text-transform: uppercase;
                    color: #999;
                }

                & .h3-title {
                    text-align: left;
                    font-size: 28px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 110%;
                    height: 155px;
                }

                & .post-title {
                    color: #333;

                }

                & .btn-container {
                    & .btn.btn-link-blue {
                        text-transform: uppercase;
                        font-family: var(--font-family-primary);
                    }
                }
            }
        }
    }

}

.news-template-default {
    .section__use-cases.tree-use-cases .use-cases__hero-container {
        display: none;
    }

    #use-cases-container {
        display: none;
    }

    .section__use-cases.tree-use-cases {
        height: 422px;
        padding: 0;

        &::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 422px;
            background-position: center center;
            background-image: url(../img/Misc.png);
            background-repeat: no-repeat;
            background-size: 100%;
        }
    }
}

@media (max-width: 768px) {

    .single-news {
        & .breadcrumbs-container {
            flex-flow: column-reverse;
            gap: 30px;

            & .breadcrumbs {
                width: fit-content;
                justify-content: flex-start;
                gap: 16px;
                flex-wrap: wrap;

                & a {
                    display: flex;
                    height: 28px;
                    padding: 4px 12px;
                    align-items: center;
                    margin-right: auto;
                }
            }

            & .go-back {
                margin-left: auto;

                & svg {
                    width: 16px;
                    height: 16px
                }
            }
        }

        & .news-content-aside {
            margin: 48px auto;
            border-radius: 20px;

            & .news-social {
                & .share-buttons {
                    height: 60px;
                    padding: 0;
                    gap: 24px;
                    display: flex;
                    width: 100%;
                    flex-flow: row wrap;
                    align-items: flex-start;

                    & .share-label.tag-large {
                        color: var(--GC-Grey---500, #8F979D);
                        font-size: 12px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 160%;
                        /* 19.2px */
                        letter-spacing: 0.72px;
                        text-transform: uppercase;
                        width: 100%;
                    }

                    & a {
                        width: 32px;
                        height: 32px;
                        padding: 4px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                }
            }

            & .section-hero-image {
                margin: 8px 0 24px 0;
            }

            & .section-content-text {
                & .content-text {
                    & p {
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 140%;
                        /* 19.6px */
                        letter-spacing: 0.14px;
                    }
                }
            }

            & .news-quote {
                margin: 0 auto;

                & .quote-text {
                    flex-flow: column;
                    display: flex;
                    padding: 80px 2rem;
                    justify-content: center;
                    align-items: flex-start;
                    gap: 30px;
                    align-self: stretch;
                    border-radius: 20px;
                    background: var(--color-gray-100);
                    position: relative;
                    width: 100%;
                }
            }

            & .news-external-link {
                display: flex;
                flex-flow: column nowrap;
                max-width: 100%;
                width: 100%;
                justify-content: center;
                align-items: center;

                & .external-link-card {
                    display: flex;
                    flex-flow: column;
                    width: 100%;
                    padding: 24px;
                    align-items: center;
                    gap: 24px;
                    border-radius: 24px;
                    background: var(--color-gray-100, #F7F8FA);

                    & .link-logo {
                        width: calc(100% - 16px);
                        height: auto;
                        display: flex;

                        & img {
                            width: 100%;
                            height: auto;
                            object-fit: contain;
                        }
                    }

                    & .link-content {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;
                        gap: 16px;

                        & .h3-title {
                            font-size: 22px;
                            font-style: normal;
                            font-weight: 500;
                            line-height: 110%;
                            /* 24.2px */
                            letter-spacing: -0.22px;
                        }

                        & p {
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 140%;
                            /* 22.4px */
                            letter-spacing: 0.16px;
                        }
                    }
                }
            }

            & .section-content-press-release {
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 100%;
                width: calc(100% - 2rem);
                margin: 0 auto 64px;
                padding: 0;

                & .content-press-release {
                    display: flex;
                    width: 100%;
                    height: auto;
                    flex-direction: column;
                    justify-content: center;
                    align-items: stretch;
                    gap: 24px;

                    & .press-release-text {
                        width: 100%;
                    }

                    & .press-release-link {
                        width: 100%;
                    }
                }
            }


        }
    }

    & .related-news-widget {
        & .related-news-card {
            padding: 0;
            margin-right: 24px;
        }
    }
}