@layer addon {
    .jobPosting {
        .templateContent.split {
            .inner {
                &.contentLeft {
                    .intro {
                        gap: var(--gutter);
                        display: flex;
                        flex-direction: column;
                        .tags {
                            flex-direction: column;
                            .tag {
                                background-color: transparent;
                                padding: 0;
                                border-radius: 0;
                                display: flex;
                                justify-content: space-between;
                                text-align: right;
                            }
                        }
                    }
                }
                @media (min-width: 56em) {
                    &.contentLeft {
                        grid-column: span 9;
                        .tags {
                            width: 350px;
                        }
                    }
                    &.contentRight {
                        grid-column: span 3;
                        align-items: flex-end;
                        .button {
                            width: fit-content;
                        }
                    }
                }
                @media (--min-fablet) {
                    &.contentLeft {
                        grid-column: span 9;
                        .tags {
                            width: 350px;
                        }
                    }
                    &.contentRight {
                        grid-column: span 3;
                        align-items: flex-end;
                        .button {
                            width: fit-content;
                        }
                    }
                }
            }
        }
    }
    
}