section[data-cattype="83009"].osp-83009-section {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
    padding: 0;
    overflow: visible;
    background-color: #D87958;
}

[data-cattype="83009"] .osp-83009-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 75px clamp(24px, 5vw, 80px);
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.07),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #D87958 0%,
            #C96746 100%
        );
    color: #FFFFFF;
}

/* ================================
   Decorative Vertical Lines
================================ */

[data-cattype="83009"] .osp-83009-container::before,
[data-cattype="83009"] .osp-83009-container::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 50px;
    background-color: #FAD68A;
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
}

[data-cattype="83009"] .osp-83009-container::before {
    top: -25px;
}

[data-cattype="83009"] .osp-83009-container::after {
    bottom: -25px;
}

/* ================================
   Header
================================ */

[data-cattype="83009"] .osp-83009-header {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

[data-cattype="83009"] .osp-83009-eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

[data-cattype="83009"] .osp-83009-header h2 {
    margin: 0 0 15px;
    color: #FFFFFF;
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    text-transform: none;
}

[data-cattype="83009"] .osp-83009-paragraph,
[data-cattype="83009"] .osp-83009-paragraph p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    text-align: center;
}

[data-cattype="83009"] .osp-83009-paragraph p {
    margin: 0;
}

/* ================================
   Accordion
================================ */

[data-cattype="83009"] .osp-83009-accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0;
    gap: 9px;
}

[data-cattype="83009"] .osp-83009-accordion-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease;
}

[data-cattype="83009"] .osp-83009-accordion-item:hover,
[data-cattype="83009"] .osp-83009-accordion-item.is-open {
    border-color: rgba(255, 255, 255, 0.38);
    background-color: rgba(255, 255, 255, 0.14);
}

/* ================================
   Accordion Trigger
================================ */

[data-cattype="83009"] .osp-83009-accordion-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    margin: 0;
    padding: 17px 22px;
    border: 0;
    outline: 0;
    background-color: transparent;
    color: #FFFFFF;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

[data-cattype="83009"] .osp-83009-trigger-title {
    display: block;
    padding-right: 18px;
    text-align: left;
}

[data-cattype="83009"] .osp-83009-trigger-icon {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

[data-cattype="83009"] .osp-83009-trigger-icon::before,
[data-cattype="83009"] .osp-83009-trigger-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #FFFFFF;
    transform: translate(-50%, -50%);
}

[data-cattype="83009"] .osp-83009-trigger-icon::before {
    width: 12px;
    height: 1.5px;
}

[data-cattype="83009"] .osp-83009-trigger-icon::after {
    width: 1.5px;
    height: 12px;
    transition: opacity 0.25s ease;
}

[data-cattype="83009"]
.osp-83009-accordion-item.is-open
.osp-83009-trigger-icon {
    transform: rotate(180deg);
    background-color: rgba(255, 255, 255, 0.12);
}

[data-cattype="83009"]
.osp-83009-accordion-item.is-open
.osp-83009-trigger-icon::after {
    opacity: 0;
}

/* ================================
   Accordion Panel
   Desktop: 4 cards
================================ */

[data-cattype="83009"] .osp-83009-accordion-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    padding: 5px 18px 20px;
}

/* ================================
   Branch Card
================================ */

[data-cattype="83009"] .osp-83009-branch-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(83, 107, 59, 0.12);
    border-radius: 11px;
    background-color: #FBFAF6;
    color: #1E241C;
    box-shadow: 0 10px 24px rgba(93, 53, 36, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

[data-cattype="83009"] .osp-83009-branch-card:hover {
    transform: translateY(-2px);
    border-color: rgba(83, 107, 59, 0.24);
    box-shadow: 0 14px 28px rgba(93, 53, 36, 0.1);
}

/* ================================
   Card Image
================================ */

[data-cattype="83009"] .osp-83009-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #EEE8DD;
}

[data-cattype="83009"] .osp-83009-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    color: transparent;
    font-size: 0;
    text-indent: -9999px;
    transition: transform 0.45s ease;
}

[data-cattype="83009"]
.osp-83009-branch-card:hover
.osp-83009-card-image img {
    transform: scale(1.035);
}

/* Hide empty, blank or invalid images */

[data-cattype="83009"] .osp-83009-card-image:empty,
[data-cattype="83009"] .osp-83009-card-image:has(img:not([src])),
[data-cattype="83009"] .osp-83009-card-image:has(img[src=""]),
[data-cattype="83009"] .osp-83009-card-image:has(img[src="#"]),
[data-cattype="83009"] .osp-83009-card-image:has(img[src*="blank.jpg"]),
[data-cattype="83009"] .osp-83009-card-image:has(img[src*="%thumbnail%"]),
[data-cattype="83009"] .osp-83009-card-image:has(img[src*="undefined"]),
[data-cattype="83009"] .osp-83009-card-image:has(img[src*="null"]) {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ================================
   Card Content
================================ */

[data-cattype="83009"] .osp-83009-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 18px 20px;
}

[data-cattype="83009"] .osp-83009-card-content h3 {
    margin: 0 0 10px;
    color: #263421;
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(21px, 1.7vw, 26px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
    text-transform: none;
}

[data-cattype="83009"] .osp-83009-card-content p {
    width: 100%;
    margin: 0;
    padding: 8px 0;
    border-top: 1px solid #E6DDCF;
    color: #4C5149;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
    text-align: center;
}

[data-cattype="83009"] .osp-83009-card-content p:last-child {
    padding-bottom: 0;
}

[data-cattype="83009"] .osp-83009-card-content strong {
    display: block;
    width: 100%;
    margin-bottom: 2px;
    color: #536B3B;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

/* ================================
   Cards Without Image
================================ */

[data-cattype="83009"]
.osp-83009-branch-card:not(:has(.osp-83009-card-image)) {
    justify-content: center;
}

[data-cattype="83009"]
.osp-83009-branch-card:not(:has(.osp-83009-card-image))
.osp-83009-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 28px 24px;
    text-align: center;
}

[data-cattype="83009"]
.osp-83009-branch-card:not(:has(.osp-83009-card-image))
.osp-83009-card-content h3 {
    width: 100%;
    margin-top: 0;
    text-align: center;
}

[data-cattype="83009"]
.osp-83009-branch-card:not(:has(.osp-83009-card-image))
.osp-83009-card-content p,
[data-cattype="83009"]
.osp-83009-branch-card:not(:has(.osp-83009-card-image))
.osp-83009-card-content strong {
    width: 100%;
    text-align: center;
}

/* Support before JavaScript removes blank.jpg */

[data-cattype="83009"]
.osp-83009-branch-card:has(.osp-83009-card-image img[src*="blank.jpg"]) {
    justify-content: center;
}

[data-cattype="83009"]
.osp-83009-branch-card:has(.osp-83009-card-image img[src*="blank.jpg"])
.osp-83009-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 28px 24px;
    text-align: center;
}

/* ================================
   Mobile Counter
================================ */

[data-cattype="83009"] .osp-83009-mobile-counter {
    display: none;
}

/* ================================
   Laptop
================================ */

@media (max-width: 1199px) {

    [data-cattype="83009"] .osp-83009-accordion-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

    [data-cattype="83009"] .osp-83009-container {
        padding: 68px 28px;
    }

    [data-cattype="83009"] .osp-83009-header {
        margin-bottom: 30px;
    }

    [data-cattype="83009"] .osp-83009-accordion-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
        padding: 5px 14px 17px;
    }

    [data-cattype="83009"] .osp-83009-accordion-trigger {
        padding: 17px 20px;
    }

    [data-cattype="83009"] .osp-83009-container::before,
    [data-cattype="83009"] .osp-83009-container::after {
        height: 44px;
    }

    [data-cattype="83009"] .osp-83009-container::before {
        top: -22px;
    }

    [data-cattype="83009"] .osp-83009-container::after {
        bottom: -22px;
    }

}

/* ================================
   Mobile Horizontal Slider
================================ */

@media (max-width: 767px) {

    [data-cattype="83009"] .osp-83009-container {
        padding: 58px 0;
    }

    [data-cattype="83009"] .osp-83009-container::before,
    [data-cattype="83009"] .osp-83009-container::after {
        width: 2px;
        height: 36px;
    }

    [data-cattype="83009"] .osp-83009-container::before {
        top: -18px;
    }

    [data-cattype="83009"] .osp-83009-container::after {
        bottom: -18px;
    }

    [data-cattype="83009"] .osp-83009-header {
        width: calc(100% - 40px);
        margin-bottom: 27px;
    }

    [data-cattype="83009"] .osp-83009-eyebrow {
        margin-bottom: 8px;
        font-size: 13px;
    }

    [data-cattype="83009"] .osp-83009-header h2 {
        margin-bottom: 13px;
        font-size: 34px;
        line-height: 1.08;
    }

    [data-cattype="83009"] .osp-83009-paragraph,
    [data-cattype="83009"] .osp-83009-paragraph p {
        font-size: 16px;
        line-height: 1.65;
    }

    [data-cattype="83009"] .osp-83009-accordion {
        width: calc(100% - 32px);
        gap: 8px;
    }

    [data-cattype="83009"] .osp-83009-accordion-trigger {
        min-height: 58px;
        padding: 14px 16px;
        font-size: 17px;
    }

    [data-cattype="83009"] .osp-83009-trigger-icon {
        width: 29px;
        height: 29px;
    }

    [data-cattype="83009"] .osp-83009-accordion-panel {
        display: flex;
        grid-template-columns: none;
        align-items: stretch;
        width: 100%;
        gap: 10px;
        padding: 4px 10px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    [data-cattype="83009"] .osp-83009-accordion-panel::-webkit-scrollbar {
        display: none;
    }

    [data-cattype="83009"] .osp-83009-branch-card {
        flex: 0 0 87%;
        width: 87%;
        height: auto;
        min-height: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-shadow: 0 8px 18px rgba(93, 53, 36, 0.07);
    }

    [data-cattype="83009"] .osp-83009-card-image {
        aspect-ratio: auto;
        height: 155px;
    }

    [data-cattype="83009"] .osp-83009-card-content {
        padding: 15px 16px 17px;
    }

    [data-cattype="83009"] .osp-83009-card-content h3 {
        margin-bottom: 8px;
        font-size: 23px;
        line-height: 1.12;
    }

    [data-cattype="83009"] .osp-83009-card-content p {
        padding: 7px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    /* No image mobile card */

    [data-cattype="83009"]
    .osp-83009-branch-card:not(:has(.osp-83009-card-image))
    .osp-83009-card-content {
        min-height: 220px;
        padding: 24px 20px;
    }

    [data-cattype="83009"]
    .osp-83009-branch-card:has(.osp-83009-card-image img[src*="blank.jpg"])
    .osp-83009-card-content {
        min-height: 220px;
        padding: 24px 20px;
    }

    [data-cattype="83009"]
    .osp-83009-accordion-item.is-open
    > .osp-83009-mobile-counter {
        display: flex;
    }

    [data-cattype="83009"] .osp-83009-mobile-counter {
        align-items: center;
        justify-content: center;
        padding: 8px 10px 15px;
        color: rgba(255, 255, 255, 0.72);
        font-family: 'DM Sans', Arial, sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.08em;
    }

    [data-cattype="83009"] .osp-83009-counter-current {
        color: #FFFFFF;
    }

    [data-cattype="83009"] .osp-83009-counter-divider {
        margin: 0 7px;
        color: rgba(255, 255, 255, 0.5);
    }

    [data-cattype="83009"] .osp-83009-counter-total {
        color: rgba(255, 255, 255, 0.7);
    }

}

/* ================================
   Small Mobile
================================ */

@media (max-width: 480px) {

    [data-cattype="83009"] .osp-83009-container {
        padding: 52px 0;
    }

    [data-cattype="83009"] .osp-83009-container::before,
    [data-cattype="83009"] .osp-83009-container::after {
        height: 32px;
    }

    [data-cattype="83009"] .osp-83009-container::before {
        top: -16px;
    }

    [data-cattype="83009"] .osp-83009-container::after {
        bottom: -16px;
    }

    [data-cattype="83009"] .osp-83009-header {
        width: calc(100% - 32px);
    }

    [data-cattype="83009"] .osp-83009-header h2 {
        font-size: 32px;
    }

    [data-cattype="83009"] .osp-83009-accordion {
        width: calc(100% - 24px);
    }

    [data-cattype="83009"] .osp-83009-accordion-trigger {
        padding: 14px 15px;
    }

    [data-cattype="83009"] .osp-83009-accordion-panel {
        gap: 9px;
        padding-right: 8px;
        padding-left: 8px;
    }

    [data-cattype="83009"] .osp-83009-branch-card {
        flex-basis: 86%;
        width: 86%;
    }

    [data-cattype="83009"] .osp-83009-card-image {
        height: 140px;
    }

    [data-cattype="83009"] .osp-83009-card-content {
        padding: 14px 15px 16px;
    }

    [data-cattype="83009"] .osp-83009-card-content h3 {
        font-size: 22px;
    }

    [data-cattype="83009"]
    .osp-83009-branch-card:not(:has(.osp-83009-card-image))
    .osp-83009-card-content {
        min-height: 205px;
        padding: 22px 18px;
    }

}