.single-works {
    & * {box-sizing: border-box;}
    & .single__main {
        margin-top: 70px;
    }
    & .section__sub.single__title {
        padding-left: 2rem;
        text-align: left;
        line-height: 1.5em;
        border-left: 2px solid #494949;
    }
    & .single__content {
        & .example_wrap {
            display: block;
            > .example-img_block {
                > .content_block {
                    margin-bottom: 8rem;
                    & p {
                        padding-inline: 1rem;
                        line-height: 1.5em;
                    }
                }
            }
            > .example-data_block {
                margin-top: 4rem;
                > .data_item {
                    padding: 3rem;
                    background-color: #E7E7E7;
                    border-radius: 5px;
                    > h3 {
                        margin-bottom: 1rem;
                        padding-bottom: 5px;
                        font-weight: 600;
                        font-size: 1.4rem;
                        line-height: 1em;
                        border-bottom: 2px solid #494949;
                        > span {
                            margin-right: .5rem;
                            padding-left: .5em;
                            font-size: .6em;
                            line-height: 1.4rem;
                            vertical-align: middle;
                            &.mobile {
                                display: inline-block;
                            }
                            &.desktop {
                                display: none;
                            }
                        }
                    }
                    & .field-data {
                        > li {
                            font-size: 1.2rem;
                            > span {
                                padding-left: 2rem;
                                font-weight: 500;
                                font-size: 1.6rem;
                            }
                        }
                    }
                }
                & .works-tags {
                    display: flex;
                    margin-top: 4rem;
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    gap: .5rem;
                    & .works-tag-item {
                        font-size: 1.1rem;
                        line-height: 1em;
                        padding: .5rem 1rem;
                        background: #FFFFFF;
                        border-radius: 1.2rem;
                    }
                }
            }
        }
        & .works-gallery {
            > figure {
                margin-top: 6rem;
                &:first-child {
                    margin-top: 0;
                }
                > figcaption {
                    margin-top: 1rem;
                    padding-inline: 1rem; 
                }
            }
        }
    }
    @media screen and (min-width: 767px) {
        & .single__main {
            margin-top: 0;
        }
        & .section__sub.single__title {
            font-size: 3rem;
            line-height: 1.2em;
        }
        & .single__inner {
            width: 1280px;
            max-width: none;
            & .single__main {
                width: 100%;
                & .single__content {
                    & .featured-image {
                        margin-bottom: 10px;
                    }
                    & .example_wrap {
                        display: flex;
                        margin: 4rem auto;
                        justify-content: center;
                        flex-wrap: wrap;
                        gap: 4rem;
                        > .example-img_block {
                            flex: 1;
                        }
                        > .example-data_block {
                            width: 400px;
                            margin-top: 0;
                            > .data_item {
                                position: sticky;
                                top: 70px;
                                & h3 {
                                    > span {
                                        &.mobile {
                                            display: none;
                                        }
                                        &.desktop {
                                            display: inline-block;
                                        }
                                    }
                                }
                            }
                        }
                        
                    }
                }
            }
        }
    }
}
.works-video {
    margin-block: 4rem;
    & h3 {
        font-weight: 700;
        font-size: 2rem;
        margin-block: 0 2rem;
        line-height: 1em;
      & .h-icon {
          display: inline-block;
          width: 30px;
        }
    }
    & iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    @media (width > 768px) {
        & h3 {
            font-weight: 700;
            font-size: 3rem;
            margin-block: 0 2rem;
            line-height: 1em;
          & .h-icon {
              display: inline-block;
              width: 40px;
            }
        }
    }
}