#site-header {
    > div:first-child {
        position: relative;
    }
    .logo {
        width: 300px;
        @media screen and (min-width: 782px) {
            position: absolute;
            top: 0;
            right: 0;
        }
    }
    @media screen and (max-width: 781px) {
        border-bottom: 1px dashed;
        background-color: var(--wp--preset--color--black-10);
        .logo {
            width: 125px;
        }
    }
    #menu-toggle svg rect {
        transition: 0.2s ease;
    }
    &&.active {
        #menu-toggle {
            svg {
                overflow: visible;
                rect:nth-child(1) {
                    transform-origin: top left;
                    transform: translateX(5px) rotate(25deg);
                }
                rect:nth-child(2) {
                    opacity: 0;
                }
                rect:nth-child(3) {
                    transform-origin: bottom left;
                    transform: translateX(5px) rotate(-25deg);
                }
            }
        }
    }
}

.entry-content {
    .title {
        .term {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-decoration-style: dashed;
            text-underline-offset: 6px;
        }
        .definition {
            display: inline-flex;
            place-items: center;
            font-size: var(--wp--preset--font-size--x-small);
            padding: 3px;
            border: 1px dashed;
            border-radius: 50%;
            margin-left: 7px;
            aspect-ratio: 1;
            width: fit-content;
            height: 100%;
        }
    }
}