/*
* This file should contain only those style that'll be in the body content of any article, normally defined by a class
* of content on the containing node but also any global unchanging content styles.
**/

/******************************
 * Global styles.
 ******************************/
:before, :after,
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video, dl, dt, dd, ol, ul, li {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

pre {
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 1em;
    line-height: 1.3;
    padding: 0 2rem;
    background-color: var(--colour-grey1);
    border: solid 1px var(--colour-grey1);
    color: var(--colour-black);
}

/******************************
 * Global Titles
 ******************************/
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-family: var(--ff-sans2);
    margin-bottom: 1rem;
    clear: left;
    text-overflow: ellipsis;
    font-family: var(--ff-sans1);
}

h1 {
    font-size: var(--size-xxlarge);
}

h2 {
    font-size: var(--size-large);
}

h3 {
    font-size: var(--size-medium);
}

h4 {
    font-size: var(--size-normal);
}

h5 {
    font-size: var(--size-small);
}

h6 {
    font-size: var(--size-small);
    font-style: italic;
}

h1.red,
h2.red,
h3.red,
h4.red,
h5.red,
h6.red {
    color: var(--colour-red);
}

h1.yellow,
h2.yellow,
h3.yellow,
h4.yellow,
h5.yellow,
h6.yellow {
    color: var(--colour-yellow);
}

h1.green,
h2.green,
h3.green,
h4.green,
h5.green,
h6.green {
    color: var(--colour-green);
}

h1.blue,
h2.blue,
h3.blue,
h4.blue,
h5.blue,
h6.blue {
    color: var(--colour-blue);
}

h1.underline,
h2.underline,
h3.underline,
h4.underline,
h5.underline,
h6.underline {
    border-bottom: solid 2px currentColor;
}

h1.underline[class="underline"],
h2.underline[class="underline"],
h3.underline[class="underline"],
h4.underline[class="underline"],
h5.underline[class="underline"],
h6.underline[class="underline"] {
    border-bottom: solid 2px var(--colour-grey2);
}

h1 a,
.content h1 a,
h2 a,
.content h2 a,
h3 a,
.content h3 a,
h4 a,
.content h4 a,
h5 a,
.content h5 a,
h6 a,
.content h6 a {
    color: inherit;
    text-decoration: none;
}

/******************************
 * Links
 ******************************/
a {
    color: var(--colour-red);
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    text-decoration: underline;
}

.content a {
    text-decoration: underline;
    color: var(--colour-red);
}

.content a[href^='tel:'],
.content a[href^='mailto:'] {
    font-weight: bold;
    text-decoration: none;
	display: inline-flex;
	gap: 0.5em;
	justify-content: center;
	align-items: center;
}

.content a[href^='tel:']:before,
.content a[href^='mailto:']:before {
    content: "\e601";
    font-family: var(--ff-icon);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

.content a[href^='tel:']:before {
    content: '\e600';
}

.to-read-link {
    font-family: var(--ff-sans1);
    font-size: var(--size-small);
    font-weight: bold;

    padding: 1rem 0;
    margin: 2rem 0;

    border-top: solid 1px var(--colour-grey1);
    border-bottom: solid 1px var(--colour-grey1);

    transition: transform ease-in-out var(--duration);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: var(--colour-grey3) !important;
    background-color: var(--colour-white);

}

.to-read-link:hover,
.to-read-link:focus {
    transform: scale(1.02)
}

.content .to-read-link {
    text-decoration: none;
}

.to-read-link:hover {
    text-decoration: none;
}

.to-read-link:after {
    /*content: '\e912';*/
    font-family: var(--ff-icon);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: block;
    clear: both;
    color: inherit;
    order: 0;
    flex: 0 0 auto;
    margin-right: var(--width-gutter);
    line-height: 1;
}

.to-read-link:before {
    content: 'You should read';
    display: block;
    margin: 0 0 1em;
    text-decoration: none;
    flex: 1 0 100%;
    order: -2;
    line-height: 1.1;
}

.to-read-link[data-to-read]:before {
    content: attr(data-to-read);
}


aside.embedded-content .hentry-title {
    flex: 1;
    font-family: var(--ff-sans1);
    font-size: var(--size-small);
    font-weight: bold;
}

aside.embedded-content .thumb {
    flex: 1 1 100px;
    order: -1;
    max-width: 50px;
    margin-right: 12px;
}

a.external-link:before {
    content: '\e60b';
    font-family: var(--ff-icon);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: 0.8em;
}

.content a br {
}

/******************************
 * Content
 ******************************/
p {
    word-break: break-word;
}

p:not(:last-child) {
    margin-bottom: 1.5rem;
}

p:empty {
    display: none;
}

/* Stop users messing around */
p span[style*="font-size"] {
    font-size: inherit !important;
}

.content {
    font-size: 1.125rem;
    max-width: 100%;
}

.content :last-child {
    margin-bottom: 0;
}

address {
    font-style: normal;
}

address > p:not(:last-child) {
    margin: 0;
}

/******************************
 * Content
 ******************************/
footer:empty,
header:empty {
    display: none;
}

hr {
    background-color: var(--colour-grey1);
    border: 0;
    height: 1px;
    margin-bottom: 20px;
}

.standfirst {
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 22px;
    font-family: var(--ff-serif);
    line-height: 1.3636;
    font-style: italic;
    flex: 1 1 100%;
}

/******************************
 * Lists
 ******************************/
.content ul,
.content ol {
    margin: 0 0 2rem 2rem;
}

.content ul {
    list-style: disc;
}

.content ol {
    counter-reset: ordered;
    list-style-type: none;
}

.content ol > li {
    counter-increment: ordered;
    overflow: hidden;
}

.content ol > li:before {
    display: inline-block;
    float: left;
    content: counter(ordered, decimal);
    margin-right: 1rem;
    color: var(--colour-high);
    font-weight: bold;
    clear: left;
}

.content ol > li li:before {
    content: counter(ordered, lower-roman);

}

.content li > ul,
.content li > ol {
    margin-bottom: 0;
    margin-left: 1.25rem;
}

.content dt {
    font-weight: bold;
}

.content .blink {
    text-decoration: blink;
}

.content dd {
    margin: 0 20px 20px;
}

.inline-list {
    list-style-type: none;
    font-style: italic;
    font-family: var(--ff-serif);
    margin-bottom: 1.5em;
}

.inline-list ol,
.inline-list ul,
.inline-list li {
    display: inline-block;

}

.inline-list li:not(:last-child):after {
    content: '/';
    margin: 0 0.25em;
}

.inline-list2 {
    list-style-type: none;
}

.content .inline-list2 {
    margin: 0;
    padding: 0;
}

.inline-list2 ol,
.inline-list2 ul,
.inline-list2 li {
    display: inline-block;
    white-space: nowrap;
}

.inline-list2 > li:not(:last-child):after {
    content: '';
    margin: 0 0.5em;
    border-right: solid 2px;
    filter: invert(0.8);
}

.inline-list2 a {
    font-weight: bold;
}

.lined-list,
.content .lined-list {
    margin: 0 0 2rem 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
}

.lined-list ul {
    padding: 0;
    list-style-type: none;
}

.lined-list > li {
    border-top: solid 1px;
    padding: 0.75em 0;
    margin: 0;
    font-weight: bold;
}

.lined-list > li > ul {
    font-size: var(--size-small);
    font-weight: normal;
}

.lined-list > li:last-child {
    border-bottom: solid 1px;
}

.lined-list > li,
.lined-list > li:last-child {
    border-color: var(--colour-grey2);
}

.inline-list:not(:last-child),
.inline-list2:not(:last-child),
.faq-list:not(:last-child) {
    margin: 0 0 1rem 0;
    padding: 0;
}

.faq-list > li {
    list-style-type: none;
    font-weight: bold;
    border-bottom: solid 1px var(--colour-grey2);
    margin: 0.5em 0;
    padding-bottom: 0.5em;
    cursor: pointer;
}

.faq-list > li.active {
    cursor: default
}

.faq-list > li:before {
    font-family: var(--ff-icon) !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e906' !important;
    display: inline-block;
    margin-right: 1em;
    color: var(--colour-white);
    background-color: var(--colour-green);
    border-radius: 50%;
    padding: 0.524em 0.5em 0.5em;
    vertical-align: text-bottom;
    /* width: 1rem; */
    /* height: 1rem; */
    font-size: 0.75rem;
    transition: background-color ease-in-out var(--duration);
}

.faq-list > li:last-child {
    margin-bottom: 0;
}

.faq-list > li > ol,
.faq-list > li > ul {
    list-style-type: none;
    font-weight: normal;
    font-family: var(--ff-serif);
    font-style: italic;
    /* color: var(--col-grey3); */
    padding: 1rem 0;
    cursor: default;
    /* filter: brightness(0.8); */
    opacity: 0.8;
}

.faq-list.running > li.active > ol,
.faq-list.running > li.active > ul,
.faq-list:not(.running) > li:first-child > ol,
.faq-list:not(.running) > li:first-child > ul {
    display: block;
}

.faq-list.running > li.active:before,
.faq-list:not(.running) > li:first-child:before {
    content: '\e905';
    background-color: var(--colour-grey2);
}

.article-body {
    /* overflow: hidden; */
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: var(--ff-serif);
}

.content .features-list ol,
.content .features-list ul,
.content .features-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.content .features-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -0.5em 1.5rem;
    list-style-type: none;
}

.content .features-list > li {
    flex: 1 1 280px;
    margin: 0.5em;
    font-weight: bold;
    position: relative;
}

.content .features-list ol,
.content .features-list ul {
    margin-top: 0.5em;
}

.content .features-list > li li {
    font-weight: normal;
    font-style: italic;
    font-family: var(--ff-serif);
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}

.content .features-list:last-child,
.content .lined-list:last-child {
    margin-bottom: 0;
}

.tick-list {
    list-style: none outside;
    margin-left: 0 !important;
    padding-left: 2em;
}

.tick-list:last-child {
    margin-bottom: 0;
}

.tick-list li {
    margin-bottom: 0.666em;
    list-style-type: none;
}

.tick-list li:before {
    content: '\e60f';
    font-family: icomoon, sans-serif;
    color: var(--colour-white);
    display: block;
    width: 2ch;
    height: 2ch;
    border-radius: 50%;
    background-color: var(--colour-green);
    text-align: center;
    line-height: 2ch;
    margin: 0 1em 0 -2em;
    float: left;
    font-size: 0.75rem;
}

.tick-list li:last-child {
    margin-bottom: 0;
}

@media screen {
    .faq-list > li > ol,
    .faq-list > li > ul {
        display: none;
    }
}

/******************************
 * Quotes
 ******************************/
blockquote,
q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote p::before,
q::before {
     content: open-quote;
}

blockquote p::after,
q::after {
     content: close-quote;
}

.content blockquote p > cite {
    display: inline-block;
    margin: -1em;
    position: relative;
    z-index: 2;
    height: 24px;
    line-height: 24px;
    top: -0.1em
}

.content blockquote {
    margin: 1.5rem auto;
    clear: both;
    font-family: var(--ff-sans2);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    border-top: solid 0.375rem;
    padding-top: 1rem;
    display: block;
}

.content blockquote > p {
    margin-bottom: 0;
    line-height: 1.2;
}

.content blockquote > p:last-of-type {
    margin-bottom: 0.5em;
}

.content blockquote > h1,
.content blockquote > h2,
.content blockquote > h3,
.content blockquote > h4,
.content blockquote > h5,
.content blockquote > h6 {
    font-family: var(--ff-sans1);
    font-size: var(--size-small);
    font-style: normal;
    font-weight: bold;
    line-height: var(--size-normal);
}

.content blockquote > p:last-child {
    margin-bottom: 0;
}

.content blockquote:before,
.content q:before {
    line-height: 1;
    float: left;
    margin-right: 0.3ex;
}

.content blockquote:after,
.content q:after {
    line-height: 1;
    text-align: right;
    position: absolute;
    top: 0.6em;
    right: 0;
}

.content cite {
    display: block;
    font-weight: bold;
    font-family: var(--ff-sans1);
    font-style: normal;
    background-color: var(--colour-white);
    font-size: var(--size-small);
    min-height: 1em;
}

.content blockquote + cite {
    margin: -1.5em 0 1em;
}

.content blockquote cite .company {
    font-style: italic;
    margin-left: 1ex;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .content blockquote {
        /* margin: 0 -20px 2rem -46px; */
    }
}

/**************************************
 * Breakout boxes
 **************************************/
.breakout-box {
    padding: 2.5rem;
    background: var(--colour-grey1);
    clear: both;
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    font-size: var(--size-normal);
}

.pullbox,
.boxout {
    color: var(--colour-red);
    font-family: var(--ff-sans1);
    width: 100%;
    margin-bottom: 1rem;
    min-width: 280px;
    padding: 15px;
    font-weight: normal;
    font-size: 16px;
    background-color: #FCF6F7;
}

.breakout-box + .breakout-box {
    margin-top: -20px;
}

.breakout-box > p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .pullbox,
    .boxout {
        float: right;
        width: 100%;
        margin: 0 0 2rem 0;
        min-width: var(--width-02-col);
        padding: 30px;
        clear: right;
    }
}

.pullbox h1,
.boxout h1,
.breakout-box h1,
.pullbox h2,
.boxout h2,
.breakout-box h2,
.pullbox h3,
.boxout h3,
.breakout-box h3,
.pullbox h4,
.boxout h4,
.breakout-box h4,
.pullbox h5,
.boxout h5,
.breakout-box h5,
.pullbox h6,
.boxout h6,
.breakout-box h6 {
    color: var(--colour-blue);

}

.breakout-box.breakout-header {
    background-color: var(--colour-blue3);
    color: var(--colour-blue);
    font-family: var(--ff-sans1);
}

/******************************
 * Contact box
 ******************************/
.contact-boxout {
    margin-bottom: 1rem;
    border: solid 1px var(--colour-grey2);
    padding: 1rem;
}

@media screen and (min-width: 768px ) {
    .contact-boxout {
        margin: 0 -2rem 2rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-boxout > * {
        flex: 1 1 40%;
        min-width: var(--width-02-col);
        margin: 1rem 1rem 0;
    }

    .contact-boxout > h1,
    .contact-boxout > h2,
    .contact-boxout > h3,
    .contact-boxout > h4,
    .contact-boxout > h5,
    .contact-boxout > h6 {
        flex: 1 1 100% !important;
        color: var(--colour-blue);
    }
}

article.single-post .content .pds-box {
    overflow: hidden;
}

article.single-post .content .pds-box-outer {
    padding: 30px 20px 20px !important;
}

/**
 * White paper consent forms
 */

.consent-form {
    background-color: var(--colour-grey1);
    padding: 20px;
    margin: var(--width-gutter) 0;
    font-family: var(--ff-sans2);
}

.consent-form .consent-field {
    text-align: center;
}

.consent-form .consent-field > span {
    display: block;
    margin-bottom: 1em;
}

.webinar-blocks .consent-form .cf h2 {
    text-transform: unset;
}

.content .sectioned {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.content .sectioned > section:first-child {
    flex: 1 1 var(--width-08-col);
}

.content .sectioned > section {
    flex: 1 1 var(--width-04-col);
    margin: 0 6px 1.5em;
}

.content .widgetlike-title-grey,
.content .widgetlike-title {
    color: var(--colour-blue);
    background-color: var(--colour-blue3);
    display: block;
    text-align: left;
    font-weight: bold;
    padding: 1rem 2em;
    margin: 0 -2rem 1rem;
    font-family: var(--ff-sans1);
    max-width: none;
    font-size: inherit;
}

.content .widgetlike-title-grey {
    color: var(--colour-grey3);
    background-color: var(--colour-grey1);
}

.content .rankbox {
    float: right;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: var(--ff-sans2);
    border: solid 2px var(--colour-red);
    color: var(--colour-black);
    min-width: var(--width-03-col);
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--size-medium);
    line-height: 24px;
    padding: 24px 32px;
    margin-left: var(--width-01-col);
    margin-bottom: 24px;
}

.content a.rankbox:hover {
    border-color: var(--colour-blue);
    background-color: var(--colour-blue2);
}

.rankbox .rank {
    font-weight: bold;
}

.rankbox .description {
    margin-right: 2ch;
}

.rankbox .description:empty,
.rankbox .rank:empty {
    display: none;
}

/******************************
 * Images/Media
 ******************************/
svg {
    display: inline-block;
}

svg,
img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
    image-rendering: auto;
}

figure figcaption {
    font-size: var(--size-small);
    color: var(--colour-grey2);
    font-style: italic;
    font-family: var(--ff-serif);
    padding: 0.5em 2em;
    border-bottom: solid 2px var(--colour-grey1);
}

.content > figure:first-child:not(.alignnone),
.content > .media:not(.alignnone) {
    /* max-width: 100vw; */
    /* margin-left: -20px; */
    /* margin-right: -20px; */
}

.content > .media:not(.alignnone) > iframe {
    max-width: 100vw;
    width: 100%;
}

.content > .media > iframe,
.content > figure > img {
    display: block;
    width: 100%;
}

.content > .media > iframe {
    background-color: var(--colour-black);
}

@media screen and (min-width: 768px) {
    .content > p > img.aligncenter,
    .content > p > img.alignnone,
    .content > figure:not(.alignleft):not(.alignright),
    .content > .media:not(.alignleft):not(.alignright) {
        /*max-width: none;*/
        overflow: hidden;
    }

    .content > figure:not(.alignleft):not(.alignright) > img,
    .content > .media:not(.alignleft):not(.alignright) > img,
    .content > .media > iframe:not(.alignnone) {
        max-width: calc(100% + 52px);
        width: 100%;
    }

    .content > figure:not(.alignleft):not(.alignright) > img,
    .content > .media:not(.alignleft):not(.alignright) > img {
        height: auto;
    }
}

@media screen and (min-width: 1132px) {
    .feature .content > figure.alignnone {
        max-width: var(--width-12-col);
        position: relative;
        left: 50%;
        transform: translatex(calc(-50% + 1rem));
        width: 100vw;
        margin: 0 -2rem 2rem;
    }
}

.content figure.alignnone > img {
    width: 100%;
}

aside.embedded-content {
    background-color: var(--colour-white);
    padding: 1rem 0;
    border-top: solid 1px var(--colour-grey1);
    border-bottom: solid 1px var(--colour-grey1);
    display: flex;
}

.content > .wp-embedded-content + .media.embed-iframe:hover {
    transform: scale(1.02);
}

.content > .wp-embedded-content + .media.embed-iframe {
    max-width: 100%;
    margin: 0 0 2rem;
    transition: transform ease-in-out var(--duration);
}

.content > .wp-embedded-content + .media.embed-iframe > iframe {
    background-color: #ffffff;
    height: 84px;
}

/** Images **/
.content .media.alignleft,
.content .media.alignright {
    width: auto;
}

.content .alignright,
.content .alignleft {
    clear: none;
    display: block;
    margin: 0 auto 1rem;
    max-width: 100%;
    width: auto;
}

.content .alignright > img,
.content .alignleft > img {
    max-width: 100vw;
    margin: 0;
    height: auto;
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {
    .content .alignleft {
        display: inline;
        float: left;
        margin-right: 1rem;
        margin-left: 0;
        max-width: 50%;
    }

    .alignleft > .alignleft {
        margin-right: 0;
    }

    .content .alignright {
        display: inline;
        float: right;
        margin: 0 0 2rem 1rem;
        max-width: 50%;
    }

    .media > .alignright,
    .alignright > .alignright {
        margin-right: 0;
    }

    .media > .alignleft,
    .alignleft > .alignleft {
        margin-left: 0;
    }
}

.content figure,
.content p,
.content span,
.content iframe,
.content div {
    max-width: 100%;
}

.content .button.outline {
    background-color: var(--colour-red);
    color: var(--colour-white);
}


ol.ordered {
    column-count: 3;
    column-gap: 11rem;
    column-width: 180px;
    margin: 1rem;
}

@media screen and (min-width:768px) {
    ol.ordered {
        margin: 2rem;
    }
}

ol.ordered > li:before {
    content: '\e60a';
    font-family: var(--ff-icon);
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
}

.gfield_description {
    font-weight: normal;
    font-size: var(--size-medium);
}

.ginput_container {
    margin-bottom: 1rem;
}

.gform_title {
    font-size: var(--size-xlarge);
}

/* Agenda tweaks */
a.agenda-item .body {
    text-align: left;
    display: grid;
    grid-template: auto auto/1fr max-content;
    gap: 1rem;
    text-decoration: none;
}

a.agenda-item .body::after {
    content: "More Info";
    background-color: var(--gradient-stop-1);
    border: 1px solid var(--gradient-stop-1);
    color: var(--colour-white);
    padding: 5px 20px;
    align-items: center;
    display: flex;
    align-self: self-end;
}

a.agenda-item:hover .body::after {
    background-color: transparent;
    color: var(--gradient-stop-1);
}

/* New footer */

.site-footer svg {
    max-width: unset;
}