div#block-insider2022-content {
    min-height: 65vh;
}

p > a {
    font-weight: 600;
}

@media (min-width: 768px) {
    #mobile-menu {
        display: none;
    }
}

@media (min-width: 768px) {
    .responsive-text {
        font-size: 1.125rem;
        line-height: 1.95rem;
    }
}

/* Content Block and Basic Page Body Text Styling */
.page--basic p,
.paragraph--type--content-block p {
    font-size: 1rem;
    line-height: 1.6rem;
}

@media (min-width: 768px) {
    .page--basic p,
    .paragraph--type--content-block p {
        font-size: 1.125rem;
        line-height: 1.925rem;
    }
}

.site-wide-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-height: 46px;
    padding: 6px 10px;
    color: white;
    font-family: var(--ohto-sans);
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.03em;
    text-decoration: none!important;
    background-color: var(--ohto-gold);
}

.site-wide-banner a:any-link {
    color: white;
}

.region--header {
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--ohto-palest-pale);
}

.region--header .inner {
    position: relative;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
}

#logo {
    margin-right: 4rem;
}


.main-navigation ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: inline-flex;
}

.main-navigation ul a {
    padding: 10px 0;
    margin: 0 10px;
    color: var(--ohto-darkest-brown);
    text-decoration: none;
}

.main-navigation ul a.active {
    color: var(--ohto-red);
    text-decoration: underline;
    text-align: center;
}

.main-navigation nav {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation nav {
        display: block;
    }
}


.region--testimonial {
    z-index: -1 !important;
    margin-top: 5rem;
    margin-bottom: -1rem;
    --wrapper-width: 750px;
}

figure {
    position: relative;
    width: var(--wrapper-width, 100%);
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
    margin-left: auto !important;
    margin-right: auto !important;
}

figure[class^='banner'] {
    position: relative;
    width: 100%;
    height: 410px;
    max-height: 60vh;
    margin: 0;
    z-index: 0;
    overflow: visible;
    background-color: var(--ohto-palest-pale);
}

/* Logos Block Styles - Scoped only to logos block */
.logos-block__container {
    padding: 3rem var(--body-margin, 24px);
    max-width: 1200px;
    margin: 0 auto;
}

.logos-block__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logos-block__title {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--ohto-darkest-brown);
    margin: 0;
}

.logos-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logos-block__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 80px;
    width: 100%;
}

.logos-block__logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logos-block__logo-image {
    max-width: 100%;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logos-block__logo-item:hover .logos-block__logo-image {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for logos block only */
@media (min-width: 768px) {
    .logos-block__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2.5rem;
    }

    .logos-block__logo-item {
        min-height: 100px;
        padding: 1.5rem;
    }

    .logos-block__logo-image {
        max-height: 91px;
    }

    .logos-block__title {
        font-size: 2.2rem;
    }
}

@media (min-width: 1024px) {
    .logos-block__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
    }

    .logos-block__logo-item {
        min-height: 120px;
        padding: 2rem;
    }

    .logos-block__logo-image {
        max-height: 104px;
    }
}

/* Handle very few logos (1-3) - logos block only */
@media (max-width: 767px) {
    .logos-block__grid:has(.logos-block__logo-item:nth-child(-n+3):last-child) {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Special handling for single logo - logos block only */
.logos-block__grid:has(.logos-block__logo-item:only-child) {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.logos-block__grid:has(.logos-block__logo-item:only-child) .logos-block__logo-item {
    justify-content: center;
}

/* Special handling for 2 logos - logos block only */
.logos-block__grid:has(.logos-block__logo-item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

/* Special handling for 3 logos - logos block only */
.logos-block__grid:has(.logos-block__logo-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* Jump Menu Styles - Scoped only to jump menu */
.jump-menu__container {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin: 1.5rem auto 2rem auto;
    overflow: hidden;
}

.jump-menu__header {
    background-color: #FFFAEE;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin-bottom: 0;
}

.jump-menu__title {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ohto-medium-brown);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jump-menu__nav {
    width: 100%;
    background-color: #FFFAEE;
}

.jump-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jump-menu__item {
    margin: 0;
}

.jump-menu__link {
    display: block;
    padding: 0.6rem 1.5rem;
    font-family: var(--ohto-sans);
    font-size: 0.9rem;
    color: var(--ohto-darkest-brown);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #FFFAEE;
    line-height: 1.3;
}

.jump-menu__link:hover {
    color: var(--ohto-red);
    padding-left: 2rem;
    text-decoration: underline;
    background-color: #FFF8E6;
}

.jump-menu__link:last-child {
    border-bottom: none;
}

.jump-menu__link--download {
    position: relative;
    padding-right: 3rem;
    display: flex;
    align-items: center;
}

.jump-menu__download-icon {
    margin-right: 0.4rem;
    flex-shrink: 0;
    color: var(--ohto-medium-brown);
    opacity: 0.8;
    width: 14px;
    height: 14px;
}

.jump-menu__link--download::after {
    content: '↗';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.7;
}

.jump-menu__item--image {
    border-bottom: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.jump-menu__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.jump-menu__item--divider {
    border-bottom: none;
    padding: 0;
    margin: 0.75rem 0 0.25rem 0;
}

.jump-menu__divider {
    position: relative;
    background-color: #FFFAEE;
    padding: 0.6rem 1.5rem;
}

.jump-menu__divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background-color: rgba(104, 146, 93, 0.3);
}

.jump-menu__divider-label {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ohto-medium-brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile-first jump menu styles */
@media (max-width: 767px) {
    .jump-menu__header {
        padding: 1.25rem 1.25rem 1rem 1.25rem;
    }
    
    .jump-menu__title {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .jump-menu__link {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .jump-menu__link:hover {
        padding-left: 1.75rem;
    }
    
    .jump-menu__link--download {
        padding-right: 2.75rem;
    }
    
    .jump-menu__divider {
        padding: 0.5rem 1.25rem;
    }
    
    .jump-menu__divider::before {
        left: 1.25rem;
        right: 1.25rem;
    }
    
    .jump-menu__divider-label {
        font-size: 0.75rem;
        text-align: center;
    }
}

/* Responsive adjustments for jump menu */
@media (min-width: 768px) {
    .jump-menu__container {
        width: 320px;
        float: right;
        margin: 0 0 0 2rem;
    }
    
    .jump-menu__header {
        padding: 1.75rem 1.75rem 1.25rem 1.75rem;
    }
    
    .jump-menu__title {
        font-size: 1rem;
    }
    
    .jump-menu__link {
        font-size: 0.95rem;
        padding: 0.7rem 1.75rem;
    }
    
    .jump-menu__link:hover {
        padding-left: 2.25rem;
    }
    
    .jump-menu__link--download {
        padding-right: 3.25rem;
    }
    
    .jump-menu__divider {
        padding: 0.7rem 1.75rem;
    }
    
    .jump-menu__divider::before {
        left: 1.75rem;
        right: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .jump-menu__list {
        gap: 0;
    }
}

/* Call to Action Section Styles */
.section--call-to-action {
    padding: 4rem 0;
    background-color: var(--ohto-pale-green);
}

.call-to-action__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.call-to-action__columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.call-to-action__content {
    flex: 1;
    max-width: 500px;
}

.call-to-action__text {
    color: var(--ohto-darkest-brown);
    margin-bottom: 2rem;
}

.call-to-action__text h1,
.call-to-action__text h2,
.call-to-action__text h3 {
    font-family: var(--ohto-sans);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ohto-darkest-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.call-to-action__text p {
    font-size: 1rem;
    color: var(--ohto-darkest-brown);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.call-to-action__text p:last-child {
    margin-bottom: 0;
}

.call-to-action__button {
    margin-top: 2rem;
}

.call-to-action__link {
    color: var(--ohto-medium-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--ohto-medium-brown);
    transition: all 0.3s ease;
}

.call-to-action__link:hover {
    color: var(--ohto-darkest-brown);
    border-bottom-color: var(--ohto-darkest-brown);
}

.call-to-action__image {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.call-to-action__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Desktop layout */
@media (min-width: 768px) {
    .call-to-action__columns {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    
    .call-to-action__content {
        flex: 0 0 45%;
    }
    
    .call-to-action__image {
        flex: 0 0 50%;
    }
    
    .call-to-action__text h1,
    .call-to-action__text h2,
    .call-to-action__text h3 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section--call-to-action {
        padding: 5rem 0;
    }
    
    .call-to-action__columns {
        gap: 5rem;
    }
}

/* Subscribe Now Section Styles */
.section--subscribe-now {
    padding: 3rem 0;
}

.subscribe-now__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.subscribe-now__header {
    text-align: center;
    margin-bottom: 3rem;
}

.subscribe-now__header h3 {
    font-family: var(--ohto-sans);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subscribe-now__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.subscribe-now__columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.subscribe-now__image-column {
    flex: 1;
    max-width: 500px;
}

.subscribe-now__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subscribe-now__widget-column {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.subscribe-now__widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* Responsive layout for larger screens */
@media (min-width: 768px) {
    .subscribe-now__columns {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }
    
    .subscribe-now__header h3 {
        font-size: 3rem;
    }
    
    .subscribe-now__description {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .section--subscribe-now {
        padding: 4rem 0;
    }
    
    .subscribe-now__inner {
        padding: 0 2rem;
    }
    
    .subscribe-now__columns {
        gap: 4rem;
    }
    
    .subscribe-now__widget {
        padding: 2.5rem;
    }
}

/* Content Slider Decorative Dividers - Scoped only to content slider */
.content-slider__top-divider,
.content-slider__bottom-divider {
    width: 100vw;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.content-slider__top-divider svg,
.content-slider__bottom-divider svg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

/* Ensure no gaps between dividers and content slider */
.content-slider__top-divider {
    margin-bottom: -1px;
}

.content-slider__bottom-divider {
    margin-top: -1px;
}

.content-slider__top-divider + .paragraph,
.paragraph + .content-slider__bottom-divider {
    margin-top: 0;
    margin-bottom: 0;
}

/* Additional negative margin adjustments for perfect alignment */
.content-slider__top-divider + .paragraph .section--content-slider {
    margin-top: -1px;
}

.paragraph .section--content-slider + .content-slider__bottom-divider {
    margin-top: -2px;
}

@media (min-width: 768px) {
    figure[class^='banner'] {
        height: 485px;
    }
}

@media (min-width: 1024px) {
    figure[class^='banner'] {
        height: 560px;
    }
}

.page--basic figure[class^='banner'] {
    max-height: 400px;
}

figure[class^='banner'] > figcaption {
    position: absolute;
    top: 10px;
    right: 0;
    max-width: 138px;
    padding: 10px 12px;
    border-radius: 15px 0 0 15px;
    background: #fff;
    word-break: break-word;
}

figure[class^='banner'] > figcaption * {
    margin: 0;
}

figure[class^='banner'] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure[class^='banner'] video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-video {
    width: 100vw !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    z-index: 1 !important;
    max-width: none !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    transform: translateX(-50%) !important;
}

.banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 60%;
    max-height: 60%;
    pointer-events: none;
}

.banner-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.title--landing {
    top: -10px;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

.title--landing > svg {
    fill: var(--ohto-med-green);
}

.title--landing h1 {
    margin: 0 var(--body-margin);
    letter-spacing: -0.015em;
    color: #FFF;
}

.page--basic .article__title {
    color: var(--page-accent, #68925D);
}


a.card {
    transition: filter 125ms ease-in;
}

a.card:hover, a.card:focus {
    filter: brightness(1.1);
    transition: filter 25ms;
}

.link--simple {
    display: block;
}

.link--simple h3 {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.02em;
    color: var(--page-accent, #68925D);
}

.grid--links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 380px));
    column-gap: 24px;
    row-gap: 1.25rem;
    justify-content: center;
    padding-left: calc(var(--body-margin, 1rem) / 2);
    padding-right: calc(var(--body-margin, 1rem) / 2);
}

@media (min-width: 1024px) {
    .grid--links .teaser--link {
        flex: 0 1 calc(100% / 3 - (var(--body-margin)));
    }
}

.teaser--link {
    display: flex;
    flex-direction: column;
    height: 300px;
    /*max-width: 380px;*/
    margin: 0;
    text-decoration: none;
}

.teaser--link .link__img {
    flex-basis: 224px;
    background-color: var(--ohto-palest-pale);
}

.teaser--link .link__title {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding: 0.5rem 0;
    background: var(--page-accent, #68925D);
    font-family: var(--ohto-sans);
    color: #fff;
}

.teaser--link h3 {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: calc(var(--body-margin) / 2);
    margin-right: calc(var(--body-margin) / 2);
}

.teaser--tiny {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin-left: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .teaser--tiny__img {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        margin-right: 14px;
    }

    .teaser--tiny__title {
        max-width: 440px;
        font-size: 14px;
        line-height: 18px;
    }
}

.teaser--tiny:hover::after, .teaser--tiny:focus::after {
    opacity: 1;
    transition: opacity 25ms;
}

.teaser--tiny::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: calc(100% - 4px);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
    background: var(--ohto-palest-pale);
    transform: translateX(-8px);
    opacity: 0;
    transition: opacity 100ms ease-out;
}

.teaser--blog {
    height: 310px;
    font-family: var(--ohto-sans);
    text-decoration: none;
    margin: 0;
}

/*.teaser--blog:not(.teaser--big) {*/
/*    max-width: 380px;*/
/*}*/
.teaser--blog > .teaser__img {
    flex: 0 1 50%;
}

.teaser--blog > .teaser__details {
    flex: 0 0 50%;
}

.teaser--blog.teaser--large > .teaser__img, .teaser--blog.teaser--large > .teaser__details {
    flex: 1 1 50%;
}

.teaser--blog .teaser__details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-shrink: 1;
    padding: 0.5rem 0.75rem 1.25rem;
}

.teaser--blog .teaser__date {
    margin-bottom: 0.5rem;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
}

.teaser__title--lg {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--ohto-darkest-brown) !important;
}

.teaser--blog .teaser__excerpt {
    font-family: var(--ohto-serif);
    font-size: 14px;
    line-height: 23px;
    color: var(--ohto-darkest-brown);
}

.teaser--blog .teaser__meta {
    align-self: flex-end;
    padding-top: 5px;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.02em;
}

.teaser--blog.teaser--large {
    height: auto;
    min-height: max-content;
}

.teaser--large .teaser__img {
    min-height: 272px;
}

.views-element-container {
    width: auto;
}

.page--landing .view-industry-blog {
    margin-left: var(--body-margin);
    margin-right: var(--body-margin);
    padding-bottom: 5rem;
}

/* Hide button under search field on News Page */
.view-industry-blog .form-actions {
    display: none;
}

.view-industry-blog .views-exposed-form > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    padding-bottom: 3rem;
}

.view-industry-blog .views-exposed-form .form-item {
    width: 350px;
    max-width: 100%;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .view-industry-blog .views-exposed-form .form-item {
        margin-right: 3rem;
    }
}

.view-industry-blog .pager {
    display: flex;
    justify-content: center;
    padding-left: 0;
}

/* Create grid on news page and front page */
.view-industry-blog .view-content > div,
.view-industry-blog.view-display-id-front_page .view-content {
    display: grid;
    grid-template-columns: minmax(200px, 420px);
    column-gap: 24px;
    row-gap: 1.25rem;
    justify-content: center;
}

.view-industry-blog .teaser--blog {
    width: auto;
}

@media (min-width: 768px) {
    .teaser--blog.teaser--large {
        grid-column: span 2;
        flex-direction: row;
        flex: 0 0 50%;
    }

    .teaser--blog.teaser--large .teaser__img {
        max-width: calc(50% - 12px);
        flex: 1 0 50%;
    }

    .teaser--blog.teaser--large .teaser__details {
        padding: 24px 24px 0.75rem;
    }

    .view-industry-blog .views-exposed-form > div {
        display: block;
        margin: 0;
    }

    .view-industry-blog .view-content > div,
    .view-industry-blog.view-display-id-front_page .view-content {
        grid-template-columns: repeat(2, minmax(380px, 440px));
    }
}

@media (min-width: 1024px) {
    .view-industry-blog .view-content > div,
    .view-industry-blog.view-display-id-front_page .view-content {
        grid-template-columns: repeat(3, minmax(320px, 440px));
    }
}

.view-empty {
    padding-bottom: 6rem;
}

/* Full screen throbber */
div.ajax-progress-fullscreen {
    position: fixed;
    z-index: 1050;
    top: 48.5%;
    left: calc(50% - 100px);
    width: 150px;
    height: 150px;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 100%;
    opacity: 0.6;
    background-color: #fff;
    background-image: url(/themes/insider2022/css/../../ohto2022/img/ui/ajax_loading.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0 0 50vw 50vw #fff;
}

.block--accordion {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 480px) {
    .block--accordion {
        --body-margin: 0;
        max-width: 100%;
    }
}

.accordion > * {
    margin: 0;
    padding: 1rem 2rem 1rem 2rem;
    border-bottom: solid 1px var(--ohto-bone);
    background: var(--ohto-palest-pale);
    overflow: hidden;
}

.accordion__header {
    min-height: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 6rem;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    color: var(--ohto-medium-brown);
    transition: filter 100ms ease-in-out;
    cursor: pointer;
}

.accordion__header::after {
    content: "";
    position: absolute;
    right: 0;
    width: 4rem;
    height: 100%;
    background-color: var(--ohto-med-green);
    background-image: url(/themes/ohto2022/img/ui/dropdown-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px;
    transition: background 100ms ease-in-out;
}

.accordion__header:hover {
    filter: brightness(1.05);
}

.accordion__header:hover::after, .accordion__header:focus::after {
    background-position: center 45%;
}

.accordion__header.collapsed + .accordion__content {
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
}

.accordion__content {
    max-height: 0;
    transition: max-height 200ms ease-in-out, padding 200ms ease-in-out, visibility 200ms;
}

.accordion__content > * {
    max-width: calc(820px - 8rem);
}

.accordion__content > *:first-child {
    margin-top: 1rem;
}

.accordion__content > *:last-child {
    margin-bottom: 1rem;
}


/*** Blog ***/

/* Make images in the article body displays as block elements */
article [class*='oh-wrapper'].center > * {
    display: block;
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

.article__title {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.03em;
}

.article__meta {
    font-family: var(--ohto-sans);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--ohto-medium-brown);
}

.article__meta label {
    margin-bottom: 1.25rem;
    font-size: 12px;
}

.article__tags .item {
    display: inline-block;
    margin-right: 0.6rem;
    margin-bottom: 0.6rem;
    padding: 5px 13px 3px;
    border: 1px solid var(--ohto-medium-brown);
    border-radius: 8px;
    font-family: var(--ohto-sans);
    font-size: 12px;
    color: var(--ohto-darkest-brown);
    background: var(--ohto-palest-pale);
    box-shadow: var(--button-shadow);
}

.article__footer {
    min-height: 1px;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.banner--post {
    --body-gap: 1.25rem;
    box-sizing: border-box;
    position: relative;
}

.banner-post .breadcrumb {
    margin: 1rem 0 1.5rem;
}

.article__poster {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: max-content;
}

.article__poster picture {
    background-color: var(--ohto-palest-pale);
}

.article__poster img {
    display: block;
    width: auto;
}

.article__poster img[data-img=loaded] {
    background-color: transparent;
}

.article__poster figcaption {
    width: 100%;
    margin-top: 0.5rem;
}

.article__poster figcaption * {
    margin: 0;
}

/*.article__poster + div {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    z-index: 1;*/
/*    margin-bottom: 2rem;*/
/*    margin-top: 0;*/
/*    left: 0;*/
/*    background: #fff;*/
/*    right: 0;*/
/*}*/


/*** Front Page ***/

.page--front {
    overflow: hidden;
}

.banner--front {
    z-index: -1;
}

.section--intro {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .section--intro {
        padding-top: 0;
    }
}

.section--intro > div {
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .section--intro .oh-wrapper--md,
    .section--intro .oh-wrapper--sm {
        margin: var(--body-gap) auto;
    }
}

@media (min-width: 768px) {
    .section--intro > div {
        flex-wrap: nowrap;
    }

    .section--intro .oh-wrapper--md > *,
    .section--intro .oh-wrapper--sm > * {
        max-width: var(--wrapper-width);
    }

    .intro__text,
    .intro__links {
        width: auto;
    }
}

.section--intro .intro__headline {
    position: relative;
    top: -60px;
    z-index: 10;
    width: 350px;
}

.section--intro .intro__headline::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -330px;
    z-index: -1;
    width: 760px;
    height: 400px;
    background-image: url(/themes/ohto2022/img/ui/bg-front-headline.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.intro__links {
    --body-margin: 12px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.intro__links::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: -1;
    width: 760px;
    height: 655px;
    background-image: url(/themes/ohto2022/img/ui/bg-important-links.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.intro__links a {
    flex-direction: column;
    flex: 1 1 35%;
    height: 220px;
    text-decoration: none;
    color: #fff;
}

.intro__links .teaser__img {
    flex-basis: 140px;
}

.intro__links .teaser__title {
    flex-grow: 1;
    padding: 12px;
    background-color: var(--ohto-darkest-brown);
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.page--front .section--news {
    background-color: var(--ohto-darkest-brown);
}

.page--front .section--support {
    background-color: var(--ohto-forest-green);
    background-image: url(/themes/ohto2022/img/ui/bg-help-links-m.jpeg);
    background-position: center;
    background-size: cover;
}

@media (min-width: 768px) {
    .page--front .section--support {
        background-image: url(/themes/ohto2022/img/ui/bg-help-links.jpeg);
    }
}

.page--front .section--news,
.page--front .section--support,
.page--front .section--sustainability,
.page--front .section--success-highlight {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section__header {
    font-family: var(--ohto-sans);
    margin-bottom: 1.5rem;
}

.section__header h2 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.5rem;
}

.section__header > * {
    display: inline-block;
    width: max-content;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.support__links {
    --body-margin: 12px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.support__testimonial {
    --body-margin: 24px;
}

@media (min-width: 1024px) {
    .support__links {
        flex: 0 0 calc(100% / 1.55);
    }

    .support__testimonial {
        flex: 0 0 calc(100% / 4);
    }
}

.support__links a {
    box-sizing: border-box;
    position: relative;
    max-width: 500px;
    min-height: 160px;
    max-height: 200px;
    margin: 0;
    padding: 1.5rem 5.5rem 1.5rem 1.5rem;
    display: flex;
    flex: 1 1 312px;
    align-items: center;
}

.support__links a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 4rem;
    height: 100%;
    background-color: var(--ohto-med-green);
    background-image: url(/themes/ohto2022/img/ui/link-arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
    transition: background 100ms ease-in-out, width 125ms ease-in-out;
}

.support__links a:hover::after {
    width: 4.5rem;
}

.section--sustainability {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section--sustainability::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ohto-pale-green);
}

@media (min-width: 768px) {
    .section--sustainability::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.5;
        background-image: url(/themes/ohto2022/img/ui/bg-front-headline.png);
        background-position: 120%;
        background-size: 62% 92%;
        background-repeat: no-repeat;
        mix-blend-mode: luminosity;
    }
}

.section--sustainability .blurb {
    max-width: 100%;
    flex: 1 1 580px;
}

@media (min-width: 1024px) {
    .section--sustainability .blurb {
        flex: 0 1 580px;
    }
}

@media (min-width: 1200px) {
    .section--sustainability .oh-wrapper > div {
        justify-content: flex-start;
    }
}

.section--sustainability .icon--lg {
    padding: 2rem 3rem;
}

.section--sustainability .item {
    width: 100%;
    margin: 0.625rem;
}

.section--sustainability .item__icon {
    flex-basis: 60px;
    margin-right: 20px;
    text-align: center;
}

.section--sustainability .item__title {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: var(--ohto-forest-green);
}

.section--success-highlight article {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background-color: var(--ohto-palest-pale);
}

@media (min-width: 768px) {
    .section--success-highlight article {
        margin-top: 1.5rem;
        padding: 2rem;
    }
}

.section--success-highlight .teaser__img {
    max-width: 100%;
    margin: 2rem auto;
}

@media (min-width: 768px) {
    .section--success-highlight .teaser__img {
        float: right;
        max-width: 50%;
        margin: 0 0 1rem 4rem;
    }
}

.pre-footer {
    --theme-bg: transparent;
    position: relative;
    z-index: 1;
    margin-top: -2rem;
    padding-bottom: 2rem;
    background-color: var(--ohto-red);
    font-family: var(--ohto-sans);
}

.pre-footer p {
    font-size: 15px;
}

@media (min-width: 768px) {
    .pre-footer .section__header {
        text-align: center;
    }
}

.pre-footer::before {
    content: "";
    position: absolute;
    top: -80px;
    width: 100%;
    height: 80px;
    z-index: -1;
    background-image: url(/themes/insider2022/img/ui/bg-pre-footer.svg);
    background-position: 75% 0;
    background-size: 200%;
}

@media (min-width: 768px) {
    .pre-footer::before {
        top: -100px;
        height: 200px;
        background-position: top;
        background-size: 100%;
    }
}

.pre-footer .col-1 {
    flex: 1 1 400px;
}

.pre-footer .col-2 {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    text-align: center;
}

.search-results {
    padding-left: 0;
}

.search-results li {
    margin-bottom: 1.5rem;
}

.search-results__item {
    padding: var(--body-margin, 1rem);
}

@media (max-width: 400px) {
    .search-results__item {
        --body-margin: 1rem;
        flex-wrap: wrap;
    }
}

.search-results__item p {
    margin: 0;
    font-weight: 400;
}

.container--error {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 5rem;
}

.container--error h2 {
    font-family: var(--ohto-sans);
    color: var(--ohto-medium-brown);
}

.container--error form {
    width: 400px;
    max-width: 100%;
    margin: 2rem auto;
}

.operator-registration .field--type-address {
    position: absolute;
    display: none !important;
}

.operator-registration .field--type-geolocation {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.operator-registration .geolocation-map-wrapper > * {
    margin: 0;
}

.operator-registration .geolocation-map-control {
    width: calc(100% - 2em);
}

.operator-registration [class*='form-item-field-website'] .description,
.operator-registration .field--type-geolocation .description,
.operator-registration .field--name-revision-log {
    display: none;
}

.geolocation-map-wrapper > * {
    --wrapper-width: 100%;
}

 .embed-responsive video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

.block--button {
    margin-bottom: var(--body-gap, 2rem);
}
.block--button + .block--button .button {
    margin-top: 0;
}

/*   hidden fields for accessibility */
.visually-hidden{
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Content Slider Styles */
.section--content-slider + .section--content-slider {
    background-color: var(--ohto-darkest-brown);
    padding-top: 2rem;
    color: #fff;
}

.section--content-slider--brown {
    background-color: var(--ohto-darkest-brown);
    color: #fff;
}

.section--content-slider--green {
    background-color: #719162;
    color: #fff;
}

.section--content-slider .oh-wrapper--slider {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.section--content-slider .oh-wrapper--slider .slider {
    max-width: 100%;
    margin-right: 0;
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.section--content-slider .oh-wrapper--slider a {
    height: 98%;
}
.section--content-slider > .flex {
    flex-direction: column;
    padding-top: 2rem;
}
.section--content-slider .teaser--portal {
    min-height: 285px;
}
.section--content-slider .oh-wrapper--sm {
    margin-top: 0;
    margin-bottom: 0;
}
.section--content-slider .oh-wrapper--sm h3 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 1.6rem;
}
.splide__track {
    position: relative;
}

@media (min-width: 768px) {
    .section--content-slider > .flex {
        flex-direction: row;
        padding-top: 0;
    }
    .section--content-slider .oh-wrapper--sm {
        --wrapper-width: 350px;
    }
    .section--content-slider .oh-wrapper--slider {
        width: calc(100% - 350px);
        overflow: hidden;
    }
    .section--content-slider .oh-wrapper--slider .slider {
        padding-top: 2.5rem;
    }
}
/* Curated Content Slider Styles - Scoped only to content slider */
.section--content-slider {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    width: 100vw;
}

.section--content-slider.section--content-slider--brown {
    background-color: var(--ohto-red);
    color: #fff;
}

.section--content-slider.section--content-slider--green {
    background-color: #719162;
    color: #fff;
}

.section--content-slider.section--content-slider--bone {
    background-color: var(--ohto-bone);
    color: var(--ohto-darkest-brown);
}

.section--content-slider .content-slider__inner {
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.section--content-slider .content-slider__header {
    max-width: 1200px;
    margin: 0 auto 0.5rem auto;
    padding-left: var(--body-margin, 24px);
    padding-right: var(--body-margin, 24px);
    text-align: left;
}

.section--content-slider .content-slider__content {
    margin-left: calc((100vw - 1200px) / 2 + var(--body-margin, 24px));
    padding-right: var(--body-margin, 24px);
    overflow: hidden;
}



.section--content-slider .content-slider__header h3 {
    margin: 0;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: inherit;
}

.section--content-slider .content-slider__header p {
    margin: 0.25rem 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.section--content-slider .content-slider__header .button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--ohto-red);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.section--content-slider .content-slider__header .button:hover {
    background-color: var(--ohto-darkest-brown);
    transform: translateY(-2px);
}

.section--content-slider .content-slider__content {
    position: relative;
    overflow: hidden;
}

.section--content-slider .slider {
    width: 100%;
    padding: 0;
}

.section--content-slider .splide__track {
    position: relative;
    overflow: hidden;
}

.section--content-slider .splide__list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.section--content-slider .splide__slide {
    padding: 0 0.5rem;
    box-sizing: border-box;
    height: auto;
    width: 350px;
    flex: 0 0 350px;
}

.section--content-slider .splide__slide a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section--content-slider .splide__slide a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section--content-slider .teaser {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 491px;
    width: 350px;
    display: flex;
    flex-direction: column;
}

.section--content-slider .teaser:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section--content-slider .teaser__img {
    flex: 0 0 280px;
    overflow: hidden;
    background-color: var(--ohto-palest-pale);
}

.section--content-slider .teaser__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section--content-slider .teaser:hover .teaser__img img {
    transform: scale(1.05);
}

.section--content-slider .teaser__details {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.section--content-slider .teaser__type {
    font-family: var(--ohto-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.section--content-slider .teaser__title {
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: var(--ohto-darkest-brown);
}

.section--content-slider .teaser__summary {
    font-family: var(--ohto-serif);
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--ohto-medium-brown);
    margin: 0 0 0.5rem 0;
    flex: 1;
}

.section--content-slider .teaser__meta {
    font-size: 0.8rem;
    color: var(--ohto-medium-brown);
    margin-top: auto;
}

.section--content-slider .teaser__button {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 8px 20px;
    font-family: var(--ohto-sans);
    background: var(--ohto-red);
    appearance: none;
    border: none;
    border-radius: 40px;
    color: #fff !important;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    height: auto !important;
    margin-top: auto;
}

.section--content-slider .teaser__button:hover {
    background: var(--ohto-darkest-brown);
    transform: translateY(-1px);
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.35);
}

.section--content-slider .teaser__title--lg {
    font-size: 14px !important;
    line-height: 18px !important;
    margin: 0 0 0.5rem 0;
}

/* Single Image Paragraph - Responsive */
.paragraph--single-image {
    width: 100%;
    margin: 2rem 0;
}

.single-image__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--body-margin, 24px);
}

.single-image__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.single-image__link {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.single-image__link .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--ohto-red);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-family: var(--ohto-sans);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.single-image__link .button:hover {
    background: var(--ohto-darkest-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive breakpoints */
@media (min-width: 768px) {
    .paragraph--single-image {
        margin: 3rem 0;
    }
    
    .single-image__container {
        max-width: 1400px;
    }
    
    .single-image__link {
        margin-top: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .single-image__container {
        padding: 0;
    }
}

/* Navigation arrows for content slider */
.section--content-slider .splide__arrows {
    position: absolute;
    bottom: -60px;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.section--content-slider .splide__arrow {
    width: 40px;
    height: 40px;
    background: var(--ohto-red);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    opacity: 1;
    position: static;
    transform: none;
}

.section--content-slider .splide__arrow:hover {
    background: var(--ohto-darkest-brown);
    transform: scale(1.1);
}

.section--content-slider .splide__arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.section--content-slider .splide__arrow--prev {
    order: 1;
}

.section--content-slider .splide__arrow--next {
    order: 2;
}

/* Responsive adjustments for content slider */
@media (min-width: 768px) {
    .section--content-slider {
        padding: 0.75rem 0;
    }
    
    .section--content-slider .content-slider__header h3 {
        font-size: 1.75rem;
    }
    
    .section--content-slider .splide__slide {
        padding: 0 0.75rem;
    }
    
    .section--content-slider .teaser__img {
        flex: 0 0 160px;
    }
    
    .section--content-slider .teaser__details {
        padding: 1.25rem;
    }
    
    .section--content-slider .teaser__title {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .section--content-slider .content-slider__header h3 {
        font-size: 2rem;
    }
    
    .section--content-slider .teaser__img {
        flex: 0 0 180px;
    }
}

@media (min-width: 1280px) {
    .section--content-slider .splide__track::after {
        content: '';
        position: absolute;
        top: 0;
        right: -50vw;
        width: calc(6rem + 50vw);
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .section--content-slider + .section--content-slider .splide__track::after {
        content: '';
        position: absolute;
        top: 0;
        right: -50vw;
        width: calc(6rem + 50vw);
        height: 100%;
        background: linear-gradient(90deg, rgba(59, 53, 45, 0) 0%, rgba(59, 53, 45, 1) 100%);
    }
    .section--content-slider--brown .splide__track::after {
        content: '';
        position: absolute;
        top: 0;
        right: -50vw;
        width: calc(6rem + 50vw);
        height: 100%;
        background: linear-gradient(90deg, rgba(59, 53, 45, 0) 0%, rgba(59, 53, 45, 1) 100%);
    }
    .section--content-slider--green .splide__track::after {
        content: '';
        position: absolute;
        top: 0;
        right: -50vw;
        width: calc(6rem + 50vw);
        height: 100%;
        background: linear-gradient(90deg, rgba(56, 70, 30, 0) 0%, rgba(56, 70, 30, 1) 100%);
    }
}
.section--content-slider .content-slider__content {
    position: relative;
    margin-bottom: 40px; /* Reduced space for arrows */
}
.section--content-slider .splide__arrow svg {
    display: none;
}
.section--content-slider .splide__arrow {
    opacity: 1;
    background-color: var(--ohto-link-red);
    box-shadow: var(--card-shadow);
}
.section--content-slider .splide__arrow--prev {
    left: unset;
    right: 7em;
    transform: rotate(90deg);
}
.section--content-slider .splide__arrow--next {
    transform: rotate(-90deg);
    left: unset;
    right: 4em;
}
.section--content-slider .splide__arrow::before {
    content: '';
    width: 16px;
    height: 18px;
    background-image: url(/themes/ohto2022/img/ui/dropdown-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
