:root {
    scrollbar-width: thin;
    scrollbar-color: var(--wp--preset--color--contrast) transparent;
}

/* Default block styles */

.wp-block-table.is-style-stripes {
    border-radius: 40px;
}

.wp-block-table.is-style-stripes > table {
    border: 1px solid currentcolor;
    border-collapse: separate;
    border-spacing: 0;
}

.wp-block-table.is-style-stripes > table > thead,
.wp-block-table.is-style-stripes > table > tfoot {
    background-color: currentcolor;
}

.wp-block-table.is-style-stripes > table > thead > tr > th,
.wp-block-table.is-style-stripes > table > tfoot > tr > td {
    color: var(--wp--preset--color--base);
}

.wp-block-table.is-style-stripes > table > thead > tr > th,
.wp-block-table.is-style-stripes > table > tbody > tr > td,
.wp-block-table.is-style-stripes > table > tfoot > tr > td {
    padding: clamp(var(--wp--preset--spacing--30), 2vw, var(--wp--preset--spacing--40)) clamp(var(--wp--preset--spacing--40), 3vw, var(--wp--preset--spacing--50));
}

.wp-block-table.is-style-stripes > table > tbody > tr:nth-child(odd) {
    background-color: var(--wp--preset--color--primary-light);
}

.wp-block-table.is-style-stripes > table > tbody > tr + tr > td {
    border-top: 1px solid currentcolor;
}

.wp-block-table.is-style-stripes > table > tbody > tr > td + td {
    border-left: 1px solid currentcolor;
}

.wp-block-table.is-style-stripes > table:not(:has(tfoot)) > tbody > tr:last-of-type > td:first-of-type {
    border-bottom-left-radius: 40px;
}

.wp-block-table.is-style-stripes > table:not(:has(tfoot)) > tbody > tr:last-of-type > td:last-of-type {
    border-bottom-right-radius: 40px;
}

/* Block classes */

.wp-block-read-more:focus,
.wp-block-query-pagination-next:focus,
.wp-block-query-pagination-previous:focus,
.wp-block-categories-list.is-style-inline > .cat-item > a:focus {
    outline-color: var(--wp--preset--color--blue-2);
    outline-offset: 0.125em;
}

.wp-block-categories-list.is-style-inline > .cat-item:not(.current-cat) > a:focus {
    outline: none;
}

.wp-block-categories-list.is-style-inline > .current-cat > a {
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--base);
}
.wp-block-categories-dropdown {
    position: relative;
}
.wp-block-categories-dropdown select {
    border: 1px solid currentColor;
    border-radius: 10px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: var(--wp--preset--font-size--small);
    appearance: none;
    background-image: url(../icons/chevron-down.svg);
    background-position: calc(100% - 1rem) center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-color: var(--wp--preset--color--base);
    color: currentColor;
}

@media screen and (max-width: 599px) {
    .wp-block-group.is-style-mobile-vertical {
        --menu-gap: var(--wp--preset--spacing--30);
        align-items: flex-start;
        flex-direction: column;
        gap: var(--menu-gap);
    }
}

.wp-block-list > .is-style-tick {
    list-style-image: url('../icons/tick.svg');
}

.wp-block-list > .is-style-cross {
    list-style-image: url('../icons/cross.svg');
}

.wp-block-list.has-base-color .is-style-tick,
.is-style-tick.has-base-color {
    list-style-image: url('../icons/tick-white.svg');
}

.wp-block-list.has-base-color .is-style-cross,
.is-style-cross.has-base-color {
    list-style-image: url('../icons/cross-white.svg');
}

.is-style-bottom-curve {
    position: relative;
}

.is-style-bottom-curve::after {
    background-color: var(--wp--preset--color--base);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    bottom: -1px;
    content: '';
    height: 80px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 1;
}

.is-style-bottom-curve .wp-block-cover__image-background {
    height: calc(100% - 1px);
}

.is-position-sticky {
    top: calc(var(--header-height, 100px) + var(--wp-admin--admin-bar--position-offset, 0px));
}

@media screen and (max-width: 599px) {
    .is-style-bottom-curve::after {
        border-top-left-radius: 48px;
        border-top-right-radius: 48px;
        height: 48px;
    }
}

.is-style-ghost-text {
    line-height: 0;
    opacity: 1;
    pointer-events: none;
    visibility: hidden;
}

.is-style-ghost-text::before {
    content: attr(data-text);
    display: block;
    line-height: 1;
    opacity: 0.16;
    position: absolute;
    transform: scale(2);
    transform-origin: left bottom;
    visibility: visible;
}

.is-style-ghost-text.has-text-align-center::before {
    left: 50%;
    transform: translate(-50%, 0%) scale(2);
    transform-origin: center bottom;
}

.is-style-ghost-text.has-text-align-right::before {
    right: 0;
    transform-origin: right bottom;
}

.is-style-sticky-bottom {
    top: unset !important;
    bottom: 0;
}

/* Block animation classes */
.anim--image-zoom .wp-block-cover__image-background {
    transition: transform 0.5s ease-in-out;
}
.anim--image-zoom:hover .wp-block-cover__image-background {
    transform: scale(1.1);
}
.anim--text-slide-up > div {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .anim--text-slide-up {
        opacity: 1 !important;
    }
}

/* utility */
* {
    box-sizing: border-box;
}

p,
li {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

.wp-block-button__link {
    word-break: keep-all;
    word-wrap: normal;
}

.hide-text {
    background-color: transparent;
    border: 0;
    color: transparent !important;
    display: block;
    font-size: 0 !important;
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-decoration: none;
    text-shadow: none;
    top: 0;
    width: 0;
}

img {
    height: auto;
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

:where(.wp-site-blocks) > .wp-block-template-part {
    margin-block-end: 0;
    margin-block-start: 0;
}

.wp-block-buttons.is-style-tab-buttons {
    & .wp-block-button__link {
        background-color: transparent;
        padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--50);
    }

    & .wp-block-button__link[aria-expanded='true'] {
        background-color: var(--wp--preset--color--contrast) !important;
        color: var(--wp--preset--color--base) !important;
    }
}
.wp-block-button.is-style-button-link .wp-block-button__link {
    &:hover,
    &:focus {
        background-color: transparent !important;
        outline: none;
        &::before {
            max-width: 400px;
        }
        &::after {
            width: 0.6em;
            height: 0.6em;
        }
    }
}
.wp-block-button:not(.is-style-outline, .is-style-button-link) .wp-block-button__link {
    &:hover,
    &:focus {
        color: var(--wp--preset--color--base) !important;
    }

    &.has-secondary-dark-background-color:hover,
    &.has-secondary-dark-background-color:focus {
        background-color: var(--wp--preset--color--primary) !important;
    }
}

.wp-element-button:focus,
.wp-block-button__link:focus,
.wp-element-button:focus-visible,
.wp-block-button__link:focus-visible {
    outline-offset: 2px;
}
.is-style-button-link-arrow-left .wp-block-button__link {
    flex-direction: row-reverse;
    &::after {
        transform: scaleX(-1);
    }
}

/* Details block */

.wp-block-details {
    background-color: var(--wp--preset--color--primary-light);
    border-radius: 10px;
    width: 100%;
}

.wp-block-details > summary {
    align-items: center;
    display: flex;
    font-family: var(--wp--preset--font-family--heading);
    font-size: 1.5em;
    font-weight: 600;
    justify-content: space-between;
    list-style: none;
    padding: 0.5rem 1rem;
}

.wp-block-details > summary::after {
    color: currentcolor;
    content: '+';
    display: block;
    flex-shrink: 0;
    font-family: var(--wp--preset--font-family--body);
    font-size: 2rem;
    font-weight: 600;
    margin-left: 1rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.wp-block-details[open] > summary::after {
    transform: rotate(45deg);
}

.wp-block-details > summary::-webkit-details-marker,
.wp-block-details > summary::marker {
    display: none !important;
}

.wp-block-details[open] > *:not(summary) {
    animation: 0.3s ease details-open 1 forwards;
    margin-left: 1rem;
    margin-right: 1rem;
}

.wp-block-details[open] > *:not(summary):last-child {
    padding-bottom: 1rem;
}

@keyframes details-open {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 599px) {
    .wp-block-details > summary {
        font-size: 1.25em;
    }
}

.wp-block-details > summary > p {
    margin: 0;
}

/* Group style: Folder */

.is-style-folder {
    clip-path: shape(
        from 0 0,
        line to calc(60% - 44px) 0,
        curve to calc(60% - 22px) 12.5px with calc(60% - 30px) 0,
        curve to 60% 23.5px with calc(60% - 12.5px) 25px,
        hline to calc(100% - 2rem),
        curve to 100% calc(25px + 2rem) with 100% 25px,
        vline to 100%,
        hline to 0,
        close
    );
    position: relative;
}

.is-style-folder.has-border-color {
    border-top-right-radius: 30px !important;
    border-width: 1px !important;
}

.is-style-folder.has-border-color::before,
.is-style-folder.has-border-color::after {
    content: '';
    pointer-events: none;
    position: absolute;
}

.is-style-folder.has-border-color::before {
    background-image: url('../lines/folder-notch-secondary-dark.svg');
    background-position: top right;
    background-repeat: no-repeat;
    height: 32px;
    right: 40%;
    top: -1px;
    width: 44px;
}

.is-style-folder.has-border-color::after {
    border: inherit;
    border-bottom-width: 0;
    border-left-width: 0;
    border-radius: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 2rem, calc(60% - 1px) 2rem, calc(60% - 1px) 0);
    height: 100%;
    position: absolute;
    right: -1px;
    top: 22.5px;
    width: 100%;
}

.is-style-folder.has-border-color.has-base-border-color::before {
    background-image: url('../lines/folder-notch.svg');
}

.is-style-folder.has-border-color.has-contrast-border-color::before {
    background-image: url('../lines/folder-notch-contrast.svg');
}

.is-style-folder.has-border-color.has-black-border-color::before {
    background-image: url('../lines/folder-notch-black.svg');
}

.is-style-folder.has-border-color.has-primary-border-color::before {
    background-image: url('../lines/folder-notch-primary.svg');
}

.is-style-folder.has-border-color.has-secondary-border-color::before {
    background-image: url('../lines/folder-notch-secondary.svg');
}

.is-style-folder.has-border-color.has-secondary-dark-border-color::before {
    background-image: url('../lines/folder-notch-secondary-dark.svg');
}

.is-style-folder.has-border-color.has-cream-border-color::before {
    background-image: url('../lines/folder-notch-cream.svg');
}

/* Breadcrumbs */

.yoast-breadcrumbs {
    color: var(--wp--preset--color--white-50);
    font-family: var(--wp--preset--font-family--heading);
}

.yoast-breadcrumbs a {
    color: inherit;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
    transition-property: color, text-decoration-color;
}

.yoast-breadcrumbs a:focus,
.yoast-breadcrumbs a:hover {
    color: var(--wp--preset--color--base);
    text-decoration-color: currentcolor;
}

.yoast-breadcrumbs .breadcrumb_last {
    color: var(--wp--preset--color--base);
}

/* Categories Block */

.wp-block-categories-list.is-style-inline .current-cat > a {
    border-color: currentcolor;
    pointer-events: none;
}

/* Reviews plugin */

.rpi {
    --star-color: var(--wp--preset--color--secondary-dark);
    --head-star-color: var(--wp--preset--color--secondary-dark);
    --card-bg: transparent;
    --head-card-bg: transparent;
    --card-br-color: var(--wp--preset--color--secondary-dark);
    --card-br: 1px solid;
    --card-radius: 20px;
    --card-padding: 1.5rem;
    --name-color: currentcolor;
    --card-color: currentcolor;
    --time-color: currentcolor;
    --head-scale-color: currentcolor;
    --head-based-color: currentcolor;
    --name-weight: 600;
    --name-fs: var(--wp--preset--font-size--small);
    --text-fs: var(--wp--preset--font-size--small);
    --font-family: var(--wp--preset--font-family--body);
    --head-btn-color: var(--wp--preset--color--primary);
    --slider-btn-color: currentcolor;
    --slider-btn: 1.5rem;
    --slider-dot-color: currentcolor;
    --slider-act-dot-color: var(--wp--preset--color--secondary);
    --slider-dot-size: 10px;
}

.rpi .rpi-img {
    display: none;
}

.rpi .rpi-review_us:hover {
    background: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
}

.rpi-header {
    min-width: 140px;
}

.rpi-header .rpi-card-inner {
    align-items: center;
    flex-direction: column;
    padding: 0;
}

.rpi-header .rpi-scale {
    display: none;
}

.wp-block-cover .rpi,
.has-base-color .rpi {
    --star-color: #c3a541;
    --stars-justify-content: center;
    --head-star-color: #c3a541;
    --head-btn-color: var(--wp--preset--color--base);
    --head-btn-txt-color: var(--wp--preset--color--contrast);
    --card-br-color: var(--wp--preset--color--base);
}

.rpi-header .rpi-based {
    text-align: center;
    white-space: nowrap;
}

.rpi-header .rpi-logos + p:empty {
    display: none;
}

.rpi-content .rpi-card-inner.rpi-logo::before,
.rpi-content .rpi-card-inner > .rpi-logos,
.rpi-header .rpi-logo_after::after {
    display: none;
}
.rpi-header .rpi-logo::before {
    filter: saturate(0) brightness(2);
    position: unset;
}
.rpi-slider .rpi-content {
    gap: 1rem;
    justify-content: flex-end;
}

.rpi-slider .rpi-content .rpi-cards {
    flex-basis: 100%;
    order: 1;
}

.rpi-slider .rpi-content .rpi-dots-wrap {
    flex-grow: 1;
    order: 2;
    position: unset;
}

.rpi-slider .rpi-content .rpi-slider-next {
    order: 4;

    &::after {
        mask-image: url("data:image/svg+xml,%3Csvg class='wp-block-staff-slider-arrow-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11' fill='currentColor' width='14' height='11'%3E%3Cpath d='M12.0731 5.61062H0.5C0.357683 5.61062 0.238775 5.56287 0.143275 5.46735C0.0477584 5.37185 0 5.25294 0 5.11062C0 4.96831 0.0477584 4.8494 0.143275 4.7539C0.238775 4.65838 0.357683 4.61062 0.5 4.61062H12.0731L8.33845 0.875999C8.24102 0.778566 8.19006 0.663825 8.18557 0.531775C8.18109 0.399725 8.23205 0.278574 8.33845 0.168324C8.44872 0.0580572 8.56763 0.00196664 8.6952 4.99703e-05C8.82277 -0.00188336 8.94168 0.0522833 9.05193 0.16255L13.4346 4.54525C13.5218 4.63242 13.583 4.72152 13.6183 4.81255C13.6535 4.90357 13.6712 5.00292 13.6712 5.11062C13.6712 5.21832 13.6535 5.31768 13.6183 5.4087C13.583 5.49973 13.5218 5.58883 13.4346 5.676L9.05193 10.0587C8.95449 10.1561 8.83878 10.2071 8.7048 10.2116C8.57083 10.2161 8.44872 10.1632 8.33845 10.0529C8.23205 9.94267 8.17788 9.82472 8.17595 9.69907C8.17403 9.57344 8.2282 9.4555 8.33845 9.34525L12.0731 5.61062Z'/%3E%3C/svg%3E");
        mask-position: center;
        mask-repeat: no-repeat;
        mask-size: contain;
        opacity: 1;
    }
}

.rpi-slider .rpi-content .rpi-slider-prev {
    order: 3;

    &::before {
        mask-image: url("data:image/svg+xml,%3Csvg class='wp-block-staff-slider-arrow-icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11' fill='currentColor' width='14' height='11'%3E%3Cpath d='M12.0731 5.61062H0.5C0.357683 5.61062 0.238775 5.56287 0.143275 5.46735C0.0477584 5.37185 0 5.25294 0 5.11062C0 4.96831 0.0477584 4.8494 0.143275 4.7539C0.238775 4.65838 0.357683 4.61062 0.5 4.61062H12.0731L8.33845 0.875999C8.24102 0.778566 8.19006 0.663825 8.18557 0.531775C8.18109 0.399725 8.23205 0.278574 8.33845 0.168324C8.44872 0.0580572 8.56763 0.00196664 8.6952 4.99703e-05C8.82277 -0.00188336 8.94168 0.0522833 9.05193 0.16255L13.4346 4.54525C13.5218 4.63242 13.583 4.72152 13.6183 4.81255C13.6535 4.90357 13.6712 5.00292 13.6712 5.11062C13.6712 5.21832 13.6535 5.31768 13.6183 5.4087C13.583 5.49973 13.5218 5.58883 13.4346 5.676L9.05193 10.0587C8.95449 10.1561 8.83878 10.2071 8.7048 10.2116C8.57083 10.2161 8.44872 10.1632 8.33845 10.0529C8.23205 9.94267 8.17788 9.82472 8.17595 9.69907C8.17403 9.57344 8.2282 9.4555 8.33845 9.34525L12.0731 5.61062Z'/%3E%3C/svg%3E");
        mask-position: center;
        mask-repeat: no-repeat;
        mask-size: contain;
        opacity: 1;
        transform: rotate(180deg);
    }
}

.rpi-slider .rpi-content .rpi-slider-prev,
.rpi-slider .rpi-content .rpi-slider-next {
    border: 1px solid currentcolor;
    border-radius: 50vw;
    opacity: 0.7;
    padding: 0.675rem;
    transition: opacity 0.25s ease-out;

    &:hover,
    &:focus {
        opacity: 1;
    }
}

.wp-block-group.has-base-color :where(.wp-block-cloudcatch-splide-carousel.is-style-slider-logos) .splide__slide img {
    filter: brightness(0) invert(1);
}

/* Ivory Search ajax search plugin overrides */

.is-search-form {
    position: relative;
}

.is-search-form.is-form-style-3 input.is-search-input {
    border-color: var(--wp--preset--color--primary) !important;
    border-radius: 10px;
    border-right: 1px solid var(--wp--preset--color--primary) !important;
    font-family: var(--wp--preset--font-family--body);
    font-size: var(--wp--preset--font-size--small) !important;
    height: unset;
    line-height: 1;
    padding: 0.5rem 1rem 0.5rem 2.75rem;

    &::placeholder {
        color: var(--wp--preset--color--grey) !important;
        opacity: 1;
    }

    &:focus,
    &:focus-visible {
        border-color: var(--wp--preset--color--blue-2) !important;
        outline: 1px solid var(--wp--preset--color--blue-2) !important;
    }
}

.is-search-form.is-form-style-3 .is-search-submit {
    border-radius: 0;
    font-size: var(--wp--preset--font-size--medium) !important;
    height: unset !important;
    left: 0.5rem;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: unset !important;
    z-index: 1;
}

.is-search-form.is-form-style-3 .is-search-submit .is-search-icon {
    background-color: transparent !important;
    border: none !important;
    font-size: inherit !important;
    height: 1.5em;
    padding: 0 !important;
    width: 1.5em;

    &::after {
        background-color: currentcolor;
        content: '';
        display: block;
        height: 100%;
        mask-image: url('../icons/search.svg');
        mask-position: center;
        mask-repeat: no-repeat;
        mask-size: contain;
        width: 100%;
    }

    & svg {
        display: none;
        height: 100%;
        width: 100%;
    }
}

/* custom read-more toggle component */

.read-more-overflow-toggle .read-more-overflow-toggle-content {
    margin-bottom: var(--wp--preset--spacing--30);
    overflow: hidden;
    position: relative;
}

.read-more-overflow-toggle .read-more-overflow-toggle-content > p:last-of-type {
    margin-bottom: 0;
}

.read-more-overflow-toggle[aria-expanded='false'] .read-more-overflow-toggle-content {
    max-height: 5.55em;
}

.read-more-overflow-toggle .read-more-overflow-toggle-button {
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: currentcolor;
    display: inline-flex;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.read-more-overflow-toggle .read-more-overflow-toggle-button::after {
    background-color: currentcolor;
    content: '';
    display: block;
    height: 0.875em;
    margin-left: 1rem;
    mask-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transform: scaleY(-1);
    transition: transform 0.3s ease;
    width: 0.875em;
}

.read-more-overflow-toggle[aria-expanded='false'] .read-more-overflow-toggle-button::after {
    transform: scaleY(1);
    transition: transform 0.3s ease;
}

/* Pagination */

.wp-block-query-pagination-next,
.wp-block-query-pagination-previous {
    aspect-ratio: 1;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: var(--wp--preset--spacing--30);
    text-decoration: none;
    transition: all 0.25s ease-out;
    transition-property: background-color, border-color, color;
    min-width: var(--wp--preset--spacing--50);
}

.wp-block-query-pagination-next-arrow,
.wp-block-query-pagination-previous-arrow {
    aspect-ratio: 1;
    pointer-events: none;
    width: var(--wp--preset--spacing--50);
}

.wp-block-query-pagination-next-arrow svg,
.wp-block-query-pagination-previous-arrow svg {
    width: 100%;
    height: auto;
}

.wp-block-query-pagination-next:hover,
.wp-block-query-pagination-previous:hover {
    background-color: var(--wp--preset--color--contrast);
    border-color: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
}

.wp-block-query-pagination-next:active,
.wp-block-query-pagination-previous:active,
.wp-block-query-pagination-next:focus,
.wp-block-query-pagination-previous:focus {
    background-color: var(--wp--preset--color--blue-3);
    color: var(--wp--preset--color--base);
    border-color: var(--wp--preset--color--blue-3);
}

.wp-block-query-pagination-next:active,
.wp-block-query-pagination-previous:active {
    transition-duration: 0s;
}

.wp-block-query-pagination .wp-block-query-pagination-next .wp-block-query-pagination-next-arrow,
.wp-block-query-pagination .wp-block-query-pagination-previous .wp-block-query-pagination-previous-arrow {
    display: flex;
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
    margin-right: 0;
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
    margin-left: 0;
}

.wp-block-query-pagination-previous {
    transform: rotate(180deg);
}

/* Read more block */

.wp-block-read-more {
    transition:
        background-color 0.25s ease-out,
        color 0.25s ease-out;
    white-space: nowrap;
}

.wp-block-read-more:hover {
    background-color: var(--wp--preset--color--secondary) !important;
    color: var(--wp--preset--color--base) !important;
}

.wp-block-read-more:active {
    background-color: var(--wp--preset--color--contrast) !important;
    transition-duration: 0.1s;
}

/* Post terms block */

.wp-block-post-terms > a {
    text-decoration-color: transparent;
    text-decoration-thickness: 0.125em;
    transition: text-decoration-color 0.25s ease-out;
}

.wp-block-post-terms > a:hover {
    text-decoration-color: var(--wp--preset--color--secondary);
}

/* wp search block */

.wp-block-search input:focus {
    outline: 1px solid currentColor !important;
}
.wp-block-search button:focus {
    outline: 1px solid currentColor;
}

/* Query loop featured image */

.wp-block-query .wp-block-post-featured-image {
    max-width: 100%;
}
