html {
    overflow-x: inherit;
}

/* ---------- Post banner - START ---------- */

.post-banner__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 730px;
    z-index: -1;
    object-fit: cover;
}

.post-banner__content {
    margin: 100px 0px 0px;
    padding: 0px 0px 20px;
    min-height: 425px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-banner__title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.post-banner__title-container:has(.post-banner__author-container.is-multiple) {
    flex-direction: column;
    align-items: flex-start;
}

.post-banner__title {
    max-width: 788px;
}

.post-banner__author-container {
    display: flex;
    justify-content: flex-end;
}

.content-author__wrap {
    display: flex;
    flex-direction: column;
    gap: 300px;
}

.content-author__item {
    position: relative;
    max-width: 252px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-author__image img {
    position: absolute;
    bottom: calc(100% - 70px);
    left: -180px;
    z-index: -1;
    width: 268px;
    height: auto;
}

.content-author__social {
    margin: 10px 0px 0px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.content-author__social-item {
    transition: var(--transition);
}

.content-author__social-item:hover {
    color: var(--red);
}

.content-author__item .content-author__name,
.content-author__item .content-author__position {
    transition: var(--transition);
}

.content-author__item .content-author__box:hover .content-author__name,
.content-author__item .content-author__box:hover .content-author__position{
    color: var(--red);
}

.content-author__button {
    margin: 10px 0px 0px;
}

.content-author__button .button.button-link {
    width: max-content;
}

.post-banner__date-rating-container {
    padding: 64px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Multiple authors */

.post-banner__author-container.is-multiple {
    margin-top: 246px;
    margin-left: 182px;
    justify-content: flex-start;
}

.post-banner__author-container.is-multiple .content-author__wrap {
    flex-direction: row;
}

@media (max-width: 1279px) {
    .post-banner__title {
        max-width: 638px;
    }
    .content-author__wrap {
        gap: 200px;
    }
    .content-author__image img {
        left: -150px;
        bottom: calc(100% - 60px);
        width: 229px;
    }
}

@media (max-width: 1099px) {
    .post-banner__background {
        max-height: 610px;
    }
    .post-banner__title-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .post-banner__content {
        margin: 80px 0px 0px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .post-banner__title {
        max-width: 100%;
    }
    .content-author__wrap {
        gap: 180px;
    }
    .post-banner__author-container {
        margin: 157px 0px 0px;
        justify-content: flex-start;
    }
    .content-author {
        margin-left: 145px;
    }
    .content-author__image img {
        left: -145px;
        bottom: 20px;
    }

    .post-banner__date-rating-container {
        padding: 80px 0px 0px;
    }
     /* Multiple authors */

    .post-banner__author-container.is-multiple {
        margin-top: 197px;
        margin-left: 0px;
    }

    .post-banner__author-container.is-multiple .content-author__wrap {
        flex-wrap: wrap;
    }

    .post-banner__author-container.is-multiple .content-author__image img {
        left: -70px;
        bottom: calc(100% - 30px);
        width: 194px;
    }
}

@media (max-width: 767px) {
    .post-banner__background {
        max-height: 475px;
    }
    .post-banner__content {
        margin: 60px 0px 0px;
    }
    .post-banner__author-container {
        margin: 216px 0px 0px;
        justify-content: center;
    }
    .content-author {
        margin-left: 0px;
    }
    .content-author__wrap {
        gap: 200px;
    }
    .content-author__item {
        align-items: flex-end;
        text-align: left;
    }
    .content-author__image img {
        left: 0px;
        bottom: 100%;
        width: 194px;
    }
    .content-author__box-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .content-author__social {
        align-self: center;
    }

    .post-banner__date-rating-container {
        padding: 30px 0px 0px;
    }
    /* Multiple authors */

    .post-banner__author-container.is-multiple {
        margin: 216px 0px 0px;
        justify-content: center;
    }

    .post-banner__author-container.is-multiple .content-author__wrap {
        flex-direction: column;
    }

    .post-banner__author-container.is-multiple .content-author__image img {
        left: 0px;
    }
}

@media (max-width: 479px) {
    .post-banner__date-rating-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- Post banner - END ---------- */

/* ---------- Post body - START ---------- */

.post-content-layout {
    position: relative;
    margin-top: 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 80px;
    align-items: start;
}

.post-content-layout:has(.post-sidebar-container) .post-body {
    margin: 60px 0px 0px;
}

.post-content-layout:has(.suscribe-form__body) {
    --post-subscribe-form-height: 457px;
    --post-subscribe-form-gap: 20px;
    --post-subscribe-form-offset: calc(var(--post-subscribe-form-height) + var(--post-subscribe-form-gap));
}

.post-body h2 {
    scroll-margin-top: 140px;
}

.post-body p {
    min-height: 1px;
}

.post-body *+.wp-block-image,
.post-body .wp-block-image+* {
    margin-top: 24px;
}

.post-body a:not(.button) {
    color: var(--blue-light);
    background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
    transition: color 0.3s ease, background-position 0s ease, background-size .45s ease;
}

.post-body a:not(.button):hover {
    background-position: 100% 100%;
    background-size: 0% 1px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}
.post-body ol, .post-body ul {
    margin: 24px 0;
}

/* Yoast FAQ accordion */
.post-body .schema-faq {
    margin: 40px 0;
}

.post-body .schema-faq-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-border);
}

.post-body .schema-faq-section:first-child {
    border-top: 1px solid var(--grey-border);
}

.post-body .schema-faq-question {
    position: relative;
    margin: 0;
    padding: 0px 0px 0px 50px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 1%;
    cursor: pointer;
    transition: var(--transition);
}

.post-body .schema-faq-question:hover {
    color: var(--red);
}

.post-body .schema-faq-question::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    height: 20px;
    width: 20px;
    background: url('./images/faq-icon-plus.svg') no-repeat center / contain;
}

.post-body .schema-faq-section.active .schema-faq-question::before {
    height: 2px;
    background-image: url('./images/faq-icon-minus.svg');
    background-size: 20px 2px;
}

.post-body .schema-faq-answer-panel {
    display: none;
    margin-top: 0;
}

.post-body .schema-faq-section .schema-faq-answer {
    margin: 15px 0 0;
    padding: 0 0 0 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1%;
}

@media (prefers-reduced-motion: reduce) {
    .post-body .schema-faq-answer-panel {
        transition: none;
    }
}

.post-body .schema-faq-answer ul,
.post-body .schema-faq-answer ol {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.post-body .schema-faq-answer li {
    position: relative;
    margin: 10px 0 0;
    padding-left: 32px;
    list-style: none;
}

.post-body .schema-faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 20px;
    height: 2px;
    background: url('./images/faq-icon-minus.svg') no-repeat center / 20px 2px;
    transform: translateY(-50%);
}
.post-body ol>li {
    list-style: none;
    counter-increment: item;
    margin-top: 10px;
}
.post-body ol>li:before {
    content: counter(item) ". ";
    position: relative;
    float: left;
    margin-right: .4em;
    font-weight: 600;
}
.post-body ol>li>:not(:first-child) {
    clear: both;
}
.post-body ul>li {
    padding-left: 35px;
    position: relative;
    list-style: none;
}
.post-body ul>li+li {
    margin-top: .4em;
}
.post-body ul > li::before {
    content: "";
    position: absolute;
    top: .4em;
    left: 10px;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 2.77461L7.0314 1.1644L4.95389 2.36429V0H3.04611V2.36429L0.966338 1.1644L0 2.77461L2.12051 3.99889L0 5.2254L0.968599 6.8356L3.04611 5.63349V8H4.95389V5.63571L7.0314 6.8356L8 5.2254L5.87723 3.99889L8 2.77461Z' fill='%237791B2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.post-body ul>li p {
    margin: 0;
}
.post-body ul>li p+p {
    margin-top: 1em;
}
.post-body p {
    margin: 0;
}
.post-body p+p {
    margin-top: 1em;
}

.post-body * + h2,
.post-body * + .post-heading-with-copy {
    margin-top: 60px;
    margin-bottom: 30px;
}

.post-body h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    letter-spacing: -1%;
}

.post-body .post-heading-with-copy {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.post-body .post-heading-with-copy h2 {
    margin: 0;
    cursor: pointer;
}

.post-body .post-heading-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue-light);
    font: inherit;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.post-body .post-heading-copy__icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.post-body .post-heading-copy__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.post-body .post-heading-with-copy:hover .post-heading-copy,
.post-body .post-heading-with-copy:focus-within .post-heading-copy,
.post-body .post-heading-copy.is-copied {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.post-body .post-heading-copy:hover,
.post-body .post-heading-copy:focus-visible {
    color: var(--white);
}

.post-body .post-heading-copy.is-copied {
    color: var(--red);
}

@media (hover: none) {
    .post-body .post-heading-copy {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.post-body *+h3 {
    margin-top: 60px;
    margin-bottom: 20px;
}

.post-body h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1%;
}

.post-body *+h4 {
    margin-top: 1em;
    margin-bottom: 18px;
}

.post-body h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1%;
}

.post-body *+h5 {
    margin-top: 1em;
    margin-bottom: 16px;
}

.post-body h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1%;
}

.post-body *+h6 {
    margin-top: 1em;
    margin-bottom: 16px;
}

.post-body h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1%;
}

.post-body blockquote {
    position: relative;
    margin: 60px 0;
    padding-left: 70px;
    display: grid;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1%;
}

.post-body blockquote::before {
    content: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2215%22%20viewBox%3D%220%200%2020%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M8.4602%20-1.64509e-05V2.93999C4.6202%202.99998%203.4202%205.39998%203.4202%207.61998C3.4202%207.91999%203.4202%208.15998%203.4802%208.39998C3.9602%207.91999%204.8002%207.67998%205.5202%207.67998C7.3202%207.67998%208.7002%208.75999%208.7002%2010.92C8.7002%2012.9%207.2602%2014.4%204.7402%2014.4C1.8002%2014.4%200.000195384%2011.58%200.000195384%208.27998C0.000195384%203.17998%203.1802%200.119982%208.4602%20-1.64509e-05ZM18.8402%20-1.64509e-05V2.93999C15.0002%202.99998%2013.8002%205.39998%2013.8002%207.61998C13.8002%207.91999%2013.8002%208.15998%2013.8602%208.39998C14.3402%207.91999%2015.1802%207.67998%2015.9002%207.67998C17.7002%207.67998%2019.0802%208.75999%2019.0802%2010.92C19.0802%2012.9%2017.6402%2014.4%2015.1202%2014.4C12.1802%2014.4%2010.3802%2011.58%2010.3802%208.27998C10.3802%203.17998%2013.5602%200.119982%2018.8402%20-1.64509e-05Z%22%20fill%3D%22%231C477E%22/%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.post-body table {
    margin: 2em 0;
    border-collapse: collapse;
    border: 1px solid var(--blue-light);
}
.post-body table td, 
.post-body table th {
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    padding: 1em;
}
.post-body table th,
.post-body table tr:first-child td {
    color: var(--blue-dark);
}
.post-body table td {
    color: var(--blue-light);
}
.post-body table td strong {
    font-weight: 400;
}
.post-body .table-with-popups tr {
    display: grid;
    grid-auto-flow: column;
    grid-template: auto/1fr 1fr 1fr 1fr;
}
.post-body .table-with-popups thead>tr, .post-body .table-with-popups tr:not(:last-child) {
    border-width: 0;
    border-bottom: 2px solid rgba(23, 30, 42, .1);
}
.post-body .table-with-popups td, .post-body .table-with-popups th {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 0;
    padding: 0 20px;
    height: 50px;
    position: relative;
    font-size: 18px;
}
.post-body .table-with-popups td:first-child, .post-body .table-with-popups th:first-child {
    min-width: 185px;
}
.post-body .table-with-popups td:not(:last-child), .post-body .table-with-popups th:not(:last-child) {
    border-width: 0;
    border-right-width: 2px;
}
.post-body .table-with-popups td>*, .post-body .table-with-popups th>* {
    display: inline-flex;
    align-items: center;
}
.post-body .table-with-popups td .icon, .post-body .table-with-popups td img, .post-body .table-with-popups th .icon, .post-body .table-with-popups th img {
    margin: 0;
}
.post-body .table-with-popups td br, .post-body .table-with-popups td sub, .post-body .table-with-popups th br, .post-body .table-with-popups th sub {
    display: none!important;
}
.post-body .table-with-popups .loaded-svg {
    cursor: pointer;
}
.post-body .table-with-popups .loaded-svg.active [fill-opacity], .post-body .table-with-popups .loaded-svg:hover [fill-opacity] {
    fill-opacity: 1;
}
.post-body .table-with-popups .loaded-svg.active [fill="#171E2A"], .post-body .table-with-popups .loaded-svg:hover [fill="#171E2A"] {
    fill: #809ccf;
}

/* Subscribe form */

.suscribe-form__body .heading-with-star {
    margin-bottom: 30px;
}

.post-body .suscribe-form__body {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    padding: 50px 40px;
    width: 420px;
    grid-area: body;
    background: url("./images/blog-subscribe-form.webp") no-repeat;
    background-position: left;
    background-size: cover;
}

.post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Row {
    margin: 0px;
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] {
    position: relative;
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] label {
    position: absolute;
    top: 22px;
    left: 0px;
    transition: var(--transition);
    pointer-events: none;
    color: var(--blue);
    z-index: 1;
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] label .hsfc-FieldLabel__RequiredIndicator {
    margin-left: 4px;
    color: var(--blue);
    transition: var(--transition);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input {
    height: 52px;
    padding-top: 22px;
    border-bottom-width: 1px;
    border-bottom-color: var(--blue-10);
    color: var(--blue);
    outline: none !important;
    background-color: transparent !important;
    transition: var(--transition);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:not(:-webkit-autofill) {
    box-shadow: none !important;
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input::placeholder {
    color: var(--blue);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:disabled {
    color: var(--white-20);
    border-bottom-color: var(--white-20);
}

.post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-RichText p {
    color: var(--blue);
}

/*
 * Safari/iOS autofill paints yellow and often ignores background-color.
 * Cover with white (form card) + keep blue text.
 */
@keyframes subscribe-form-autofill-bg {
    from {
        -webkit-text-fill-color: #1C477E;
        caret-color: #1C477E;
        color: #1C477E;
        background-color: #F6F7F8;
        background-image: none;
        -webkit-box-shadow: inset 0 0 0 1000px #F6F7F8;
        box-shadow: inset 0 0 0 1000px #F6F7F8;
    }
    to {
        -webkit-text-fill-color: #1C477E;
        caret-color: #1C477E;
        color: #1C477E;
        background-color: #F6F7F8;
        background-image: none;
        -webkit-box-shadow: inset 0 0 0 1000px #F6F7F8;
        box-shadow: inset 0 0 0 1000px #F6F7F8;
    }
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:-webkit-autofill,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:-webkit-autofill:hover,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:-webkit-autofill:focus,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:-webkit-autofill:active,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea:-webkit-autofill,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea:-webkit-autofill:hover,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea:-webkit-autofill:focus,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea:-webkit-autofill:active,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:autofill,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea:autofill {
    -webkit-text-fill-color: #1C477E !important;
    caret-color: #1C477E !important;
    color: #1C477E !important;
    border-bottom-color: rgba(28, 71, 126, 0.1) !important;
    background-color: #F6F7F8 !important;
    background-image: linear-gradient(#F6F7F8, #F6F7F8) !important;
    -webkit-box-shadow: inset 0 0 0 1000px #F6F7F8 !important;
    box-shadow: inset 0 0 0 1000px #F6F7F8 !important;
    animation: subscribe-form-autofill-bg 0.001s forwards;
    transition: background-color 99999s ease-out 0s !important;
}

/* Data Privacy Field */
.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] > [data-hsfc-id='Row'] {
    margin-bottom: 0;
}

.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] > [data-hsfc-id='Row']:nth-child(1),
.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] > [data-hsfc-id='Row']:nth-child(3) {
    display: none;
}

.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] label {
    position: relative;
    top: initial;
    left: initial;
    align-items: flex-start;
    gap: 15px;
    pointer-events: all;
    cursor: pointer;
}

.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] label span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43em;
    letter-spacing: 0.01em;
    color: var(--blue-light);
    transition: var(--transition);
}

/* Checkbox Field */
.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] label::before{
    content: '';
    position: relative;
    top: 3px;
    display: inline-flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--blue-light);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] label:hover::before {
    border-color: var(--blue-dark)
}

.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] label:has(input[type='checkbox']:checked)::before {
    border-color: var(--blue-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231C477E'%3E%3Cpath d='M17.2559 4.41107C17.5814 4.73651 17.5814 5.26414 17.2559 5.58958L8.08926 14.7562C7.76382 15.0817 7.23618 15.0817 6.91074 14.7562L2.74408 10.5896C2.41864 10.2641 2.41864 9.73651 2.74408 9.41107C3.06951 9.08563 3.59715 9.08563 3.92259 9.41107L7.5 12.9885L16.0774 4.41107C16.4028 4.08563 16.9305 4.08563 17.2559 4.41107Z'/%3E%3C/svg%3E");
}

.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] input {
    display: none;
}

.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] [data-hsfc-id='ErrorAlert'] {
    margin-top: 4px;
}

/* Form - Hover and focus effects */
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:hover,
.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:focus,
.post-body .suscribe-form__body [data-hsfc-id$='Field'].filled input {
    border-bottom-color: var(--blue-20);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:hover::-webkit-input-placeholder {
    color: var(--blue);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input:hover:-moz-placeholder {
    color: var(--blue);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] label:has(+ input:focus),
.post-body .suscribe-form__body [data-hsfc-id$='Field'].filled label {
    top: 0;
    font-size: 14px;
    color: var(--blue-light);
    --hsf-field-label-requiredindicator__color: var(--blue-light);
}

.post-body .suscribe-form__body [data-hsfc-id='DataPrivacyField'] label:hover span,
.post-body .suscribe-form__body [data-hsfc-id='CheckboxField'] label:has(input[type='checkbox']:checked) span {
    color: var(--blue);
}

.post-body .suscribe-form__body .button-attach-files:hover,
.post-body .suscribe-form__body .button-attach-files:focus {
    color: var(--red);
}

.post-body .suscribe-form__body .button-attach-files:hover::after,
.post-body .suscribe-form__body .button-attach-files:focus::after {
    background-color: var(--red);
}

/* Form - Errors */
.post-body .suscribe-form__body [data-hsfc-id$='Field'] .hsfc-ErrorAlert {
    position: absolute;
    font-size: 14px;
    line-height: 1.43em;
    letter-spacing: 0.01em;
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] label:has(+ input[aria-invalid="true"]),
.post-body .suscribe-form__body [data-hsfc-id$='Field'] label:has(+ input[aria-invalid="true"]) .hsfc-FieldLabel__RequiredIndicator {
    color: var(--red);
    --hsf-field-label-requiredindicator__color: var(--red);
}

.post-body .suscribe-form__body [data-hsfc-id$='Field'] input[aria-invalid="true"],
.post-body .suscribe-form__body [data-hsfc-id$='Field'] textarea[aria-invalid="true"] {
    border-color: var(--red);
}

/* Form - Button */
.post-body .suscribe-form__body .hsfc-NavigationRow {
    margin: 0px;
}

.post-body .suscribe-form__body .hsfc-NavigationRow__Alerts {
    display: none;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'] {
    position: relative;
    margin: 10px 0px 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 100px;
    height: 50px;
    padding: 0px 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.563em;
    text-decoration: none;
    color: var(--white);
    background-color: transparent;
    border-radius: 100px;
    transition: var(--transition);
    transform: none !important;
    z-index: 1;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    border-radius: 100px;
    transition: var(--transition);
    z-index: -1;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']::after {
    content: '';
    position: absolute;
    left: 20px;
    width: 8px;
    height: 8px;
    background-color: var(--white);
    mask-image: var(--star);
    mask-size: contain;
    mask-repeat: no-repeat;
    transform: translateY(6px) rotate(0deg);
    opacity: 0;
    transition: var(--transition);
}

/* Hover */
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:hover::before {
    transform: scale(0.96);
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:hover::after {
    transform: translateY(-9px) rotate(-180deg);
    opacity: 1;
}

/* Focus (active) */
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:focus::before {
    transform: scale(0.92);
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:focus::after {
    transform: translateY(-9px) rotate(180deg);
    opacity: 1;
}

/* Focus (using TAB) */
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:focus-visible::before {
    box-shadow: 0px 0px 0px 2px var(--white), 0px 0px 12px 0px #FF6AA1;
    transform: none;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:focus-visible::after {
    content: none;
}

/* Disabled */
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:disabled,
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'].disabled {
    color: var(--blue-20) !important;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:disabled::before,
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'].disabled::before {
    background-color: var(--grey) !important;
}

.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit']:disabled::after,
.post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'].disabled::after {
    content: none;
}

@media (min-width:768px) {
    .post-body .table-with-popups {
        overflow: visible!important;
    }
}

@media (max-width: 1023px) {
    .post-body .suscribe-form__body {
        background-position: top center;
    }
    .suscribe-form__body .heading-with-star {
        margin-bottom: 20px;
    }
    .post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'] {
        margin: 0px;
    }
}
@media (max-width:767px) {
    .container {
        padding: 0 24px;
    }
    .post-body {
        overflow: hidden;
    }
    .post-body .table-with-popups {
        overflow-x: scroll;
    }
    .post-body .table-with-popups::-webkit-scrollbar {
        width: 6px;
    }
    .post-body .table-with-popups::-webkit-scrollbar-track {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .11);
    }
    .post-body .table-with-popups::-webkit-scrollbar-thumb {
        height: 76px;
        width: 6px;
        background-color: #e3e3e3;
    }
    .post-body .table-with-popups::-webkit-scrollbar-thumb:hover {
        background-color: #c0bdbd;
    }
    .post-body .table-with-popups table {
        min-width: 790px;
    }
    .post-body blockquote {
        margin: 30px 0;
        font-size: 18px;
        line-height: 25px;
        letter-spacing: 1%;
    }
    .post-body .wp-block-image img {
        object-position: center;
    }
    .post-body .schema-faq-question {
        font-size: 18px;
        line-height: 25px;
    }
    /* Subscribe form */
    .post-body .suscribe-form__body {
        background-position: bottom left;
    }
    .post-body .suscribe-form__body .hsfc-NavigationRow button[type='submit'] {
        margin: 10px 0px 0px;
    }
 
}
.post-body .wp-block-table {
    margin: 2em 0;
    overflow-x: auto;
}
.post-body .wp-block-table thead {
    border: 0px;
}
.post-body .wp-block-table table thead tr>* {
    text-align: center;
    font-weight: 400;
}
.post-body .wp-block-table table thead tr>:not(:first-child) {
    border: none;
}
.post-body .wp-block-table table {
    margin: 0!important;
}



/* ---------- Post body - END ---------- */

/* ---------- Post sidebar - START ---------- */
.post-sidebar-container {
    height: 100%;
}
.post-sidebar {
    position: sticky;
    top: 120px;
}

.post-content-layout:has(.suscribe-form__body) .post-sidebar {
    padding-bottom: var(--post-subscribe-form-offset);
}

.post-sidebar__title {
    margin: 0;
}

.post-sidebar__nav {
    margin: 30px 0px 0px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-sidebar__nav-link {
    display: flex;
    gap: 20px;
    align-items: baseline;
    color: var(--blue);
}

.post-sidebar__nav-text {
    color: var(--blue);
    text-decoration-line: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.post-sidebar__nav-link:hover .post-sidebar__nav-text {
    text-decoration-color: transparent;
}


@media (max-width: 1023px) {
    .post-content-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .post-sidebar {
        position: static;
        bottom: auto;
        max-height: none;
        overflow-y: visible;
    }

    .post-content-layout:has(.suscribe-form__body) .post-sidebar {
        padding-bottom: 0;
    }
    /* Subscribe form */

    .post-body .suscribe-form__body {
        position: initial;
        margin: 60px 0px 0px;
        padding: 40px;
        width: 100%;
        max-width: 100%;
        min-height: 302px;
    }
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Row:has([data-hsfc-id$='TextField']),
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Row:has([data-hsfc-id$='EmailField']) {
        width: calc(50% - 10px);
    }
    .post-body .suscribe-form__body [data-hsfc-id=NavigationRow] {
        margin: 0px;
    }
}

@media (max-width: 767px) {
    .post-body .suscribe-form__body {
        padding: 30px;
        min-height: 370px;
    }
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content,
    .post-body .suscribe-form__body [data-hsfc-id=NavigationRow] {
        margin: 10px 0px 0px;
    }
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Row:has([data-hsfc-id$='TextField']),
    .post-body .suscribe-form__body [data-hsfc-id=Renderer] .hsfc-Row:has([data-hsfc-id$='EmailField']) {
        width: 100%;
    }
}
/* ---------- Post sidebar - END ---------- */

.post-content-layout .blog-inner-socials {
    grid-column: 1 / -1;
    margin-top: 60px;
}

/* ---------- Related posts - START ---------- */

.related-posts.posts-list .posts-list__items:not(:first-child) {
    margin: 100px 0px 0px;
}

.related-posts.posts-list .posts-list__items {
    overflow: hidden;
}

.related-posts.posts-list .posts-list__items.is-static .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.related-posts.posts-list .posts-list__items.is-static .swiper-controls {
    display: none;
}

.related-posts.posts-list .posts-list__items.is-slider .swiper-wrapper {
    display: flex;
}

.related-posts.posts-list .posts-list__item {
    display: flex;
    height: auto;
    box-sizing: border-box;
}

.related-posts.posts-list .posts-list__items.is-slider .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.related-posts.posts-list .posts-list__item .blog-post-card {
    width: 100%;
}

.blog-post-card {
    margin: 0;
    background-color: #F6F7F8E5;
}

.blog-post-card__link {
    padding: 50px 50px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    transition: var(--transition);
}

.blog-post-card__thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-post-card__title {
    transition: var(--transition);
}

.blog-post-card__link:hover .blog-post-card__title {
    color: var(--red);
}

.blog-post-card__meta {
    padding: 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--grey-border);
}

.blog-post-card__meta .button.button-link.button-with-icon.button-without-border {
    padding-inline: 20px;
}

.blog-post-card__meta .button.button-link.button-with-icon.button-without-border::after {
    display: none;
}

@media (max-width: 1439px) {
    .blog-post-card__link {
        padding: 50px 24px 10px;
    }
    .blog-post-card__meta {
        gap: 10px;
    }
}

@media (max-width: 1279px) {
    .blog-post-card__meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 1023px) {
    .related-posts.posts-list .posts-list__items.is-static .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .related-posts.posts-list .posts-list__items:not(:first-child) {
        margin: 50px 0px 0px;
    }

    .related-posts.posts-list .posts-list__items.is-static .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-post-card__link {
        padding: 30px;
        gap: 20px;
    }
}

/* ---------- Related posts - END ---------- */