.post-type-archive-integrations {
    background-color: white
}

.df-int-hero {
    padding: 40px 0 10px;
    text-align: center;
}

@media (max-width: 767px) {
    .post-type-archive-integrations .uk-container {
        padding-inline: 24px;
    }
}

.df-int-icons {
    gap: 5px;
    align-items: center;
    max-width: 380px;
    margin: 0 auto 32px;
    justify-content: space-between;
}

.df-int-icon {
    background: white;
    border: 0.3px solid #BFC7C7;
    box-shadow: 4px 4px 35.3px 12px rgba(163, 209, 209, 0.45);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.df-int-icon:nth-child(3) {
    width: 78px;
    height: 74px;
}


.df-int-icon img {
    max-width: 100%;
    height: auto;
}

.df-int-hero-title {
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 0.54px;
}

.df-int-hero-description {
    text-align: start;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #383d3d;
}

.df-int-search-container {
    display: flex;
    justify-content: center;
}

.df-int-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 675px;
}

.df-int-search-input {
    width: 100%;
    height: 54px;
    padding: 0 46px 0 60px;
    border: 1px solid #038181;
    border-radius: 5px;
    font-size: 16px;
    color: #383d3d;
    background: white;
    transition: all 0.3s ease;
    fill: #FFF;
    filter: drop-shadow(0 4px 26.7px rgba(3, 129, 129, 0.28));
}

.df-int-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 129, 129, 0.1);
}

.df-int-search-input::placeholder {
    color: #989898;
    font-size: 16px;
    letter-spacing: 0.45px;
}

.df-int-search-icon {
    position: absolute;
    left: 29px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #989898;
}

.df-int-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.df-int-search-clear:hover {
    opacity: 0.7;
}

.df-int-search-clear svg {
    display: block;
}

.df-int-featured-banner {
    background: #e2f3e3;
    border: 1px solid #038181;
    border-radius: 12px;
    padding: 24px 30px;
    margin: 30px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.df-int-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
}

.df-int-banner-icon {
    flex-shrink: 0;
}

.df-int-banner-text {
    flex: 1;
}

.df-int-banner-title {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #038181;
    margin: 4px 0 4px 0;
    text-align: start;
    line-height: normal;
}

.df-int-banner-title-desktop {
    display: none;
}

.df-int-banner-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin: 0 0 8px 0;
    letter-spacing: 0.19px;
    line-height: 1.2;
    text-align: start;
}

.df-int-banner-description {
    color: #292929;
    margin: 0;
    display: none;
}

.df-int-banner-description strong {
    font-weight: 700;
}

.df-int-banner-cta {
    flex-shrink: 0;
}

.df-int-cta-button {
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 6px 30px;
    max-width: 318px;
    margin: 3px auto 0;
}

.df-int-categories {
    padding: 20px 0 30px;
}

.df-int-items-wrapper {
    background: linear-gradient(180deg, #fefdfc 0%, #faf8f4 42.93%);
    padding: 40px 0;
}

.df-int-filters-sidebar {
    display: none;
}

.df-int-filters-accordion {
    display: block;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.df-int-filters-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.df-int-filters-accordion-item:last-child {
    border-bottom: none;
}

.df-int-filters-accordion-header {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #383d3d;
    gap: 5px;
}

.df-int-filters-accordion-header svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 14px;
}

.df-int-filters-accordion-item[data-open="true"] .df-int-filters-accordion-header svg {
    transform: rotate(180deg);
}

.df-int-filters-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.df-int-filters-accordion-item[data-open="true"] .df-int-filters-accordion-content {
    max-height: 700px;
}

.df-int-filters-accordion-btn {
    background: none;
    border: none;
    padding: 8px 0;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #383d3d;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 100%;
    line-height: normal;
}

.df-int-filters-accordion-btn:first-child {
    margin-top: 14px;
}

.df-int-filters-accordion-btn.active {
    color: #038181;
    font-weight: 700;
}

@media (hover: hover) {
    .df-int-filters-accordion-btn:hover {
        background: #f5f5f5;
    }
}

.df-int-items-wrapper .uk-width-1-1,
.df-int-items-wrapper .uk-width-3-4\@l,
.df-int-categories .uk-width-1-1,
.df-int-categories .uk-width-1-4\@l {
    width: 100%;
}

.df-int-hero p {
    margin-top: 26px;
    margin-bottom: 24px;
}

.df-int-card {
    width: 100%;
    max-width: 160px;
    min-height: 160px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border: 0.3px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8.9px 0 rgba(56, 61, 61, 0.20);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .df-int-card:hover {
        border: 1px solid #038181;
        box-shadow: 0 4px 26.7px 0 rgba(3, 129, 129, 0.20);
    }
}

.df-int-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.df-int-category-header {
    margin-bottom: 40px;
}

.df-int-category-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #383d3d;
    margin: 0 0 8px 0;
}

.df-int-category-description {
    margin-top: 0;
}

.df-int-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    justify-items: center;
    padding-top: 5px;
}


.df-int-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    justify-content: space-between;
}

.df-int-link:hover, .df-int-link:focus, .df-int-link:focus-visible {
    text-decoration: none;
}

.df-int-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
}

.df-int-card-icon img {
    max-width: 100%;
    height: auto;
}

.df-int-placeholder {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.df-int-name {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #383d3d;
    text-align: center;
    margin: 14px 0 0;
    line-height: 1.3;
}

.df-int-no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8.9px 0px rgba(56, 61, 61, 0.2);
}

.df-int-no-results-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #383d3d;
    margin: 0 0 10px 0;
}

.df-int-no-results-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #727272;
    margin: 0;
}

/* Extra Small Devices - Single column for very small screens */
@media (max-width: 359px) {
    .post-type-archive-integrations .uk-container, .df-int-categories .uk-width-1-1, .df-int-categories .uk-width-1-4\@l {
        padding-inline: 16px;
    }

    .df-int-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        justify-items: flex-start;
    }

    .df-int-icons {
        justify-content: center;
    }
}

@media (min-width: 400px) {
    .df-int-category-grid {
        gap: 60px 16px;
    }
}

@media (min-width: 480px) {
    .df-int-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 160px));
        gap: 24px;
        max-width: unset;
        justify-content: start;
    }

    .df-int-category-grid > *:nth-child(odd), .df-int-category-grid > *:nth-child(even) {
        justify-self: stretch;
    }
}


@media (min-width: 576px) {
    .df-int-banner-content {
        max-width: 1200px;
        width: auto;
    }
}

@media (min-width: 768px) {

    .df-int-banner-cta {
        display: flex;
        align-items: center;
    }

    .df-int-categories {
        padding: 0 0 40px;
    }

    .df-int-items-wrapper {
        padding: 40px 0 80px;
    }


    .df-int-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
        gap: 32px;
        justify-content: start;
    }

    .df-int-card {
        padding: 24px;
        max-width: 220px;
    }

    .df-int-placeholder {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .df-int-name {
        font-size: 18px;
    }

    .df-int-hero {
        padding: 80px 0 40px;
    }


    .df-int-hero p {
        margin-bottom: 0;
        text-align: center;
    }

    .df-int-icon {
        width: 62px;
        height: 62px;
    }

    .df-int-icon:nth-child(3) {
        width: 88px;
        height: 84px;
    }

    .df-int-search-wrapper {
        margin-top: 6px;
    }

    .df-int-search-input {
        padding: 15px 46px 15px 46px;
    }

    .df-int-search-icon {
        left: 16px;
    }

    .df-int-featured-banner {
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
    }

    .df-int-banner-description {
        display: block;
        font-size: 14px;
        line-height: 1.2;
        width: auto;
        max-width: 40%;
    }

    .df-int-banner-content {
        flex-direction: row;
        gap: 20px;
        text-align: left;
        margin: 0;
    }

    .df-int-cta-button {
        width: auto;
        margin: 0;
        padding: 6px;
    }

}

@media (min-width: 1024px) {
    .df-int-hero-title {
        margin-bottom: 40px;
    }

    .df-int-hero-description {
        font-size: 18px;
    }

    .df-int-hero {
        padding: 100px 0 50px;
    }

    .df-int-hero p {
        text-align: start;
    }

    .df-int-hero-inner {
        max-width: 675px;
    }

    .df-int-featured-banner {
        padding: 20px 54px;
        margin: 65px auto 50px;
        max-width: 1237px;
        align-items: center;
    }

    .df-int-banner-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 80px;
        max-height: 92px;
    }

    .df-int-banner-content {
        gap: 40px;
        width: 100%;
        max-width: 394px;
    }

    .df-int-banner-cta {
        max-width: 19.5%;
        width: 100%;
    }

    .df-int-cta-button {
        width: 100%;
        min-height: 40px;
    }

    .df-int-filters-accordion {
        display: none;
    }

    .df-int-categories {
        display: none;
    }

    .df-int-items-wrapper {
        padding: 37px 0 120px;
    }

    .df-int-items-wrapper .uk-container {
        max-width: 1244px;
    }

    .df-int-items-inner {
        display: flex;
        justify-content: space-between;
        gap: 48px;
    }

    .df-int-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 200px));
        gap: 32px;
        justify-content: start;
    }

    .df-int-card {
        max-width: 200px;
    }

    .df-int-placeholder {
        width: 62px;
        height: 62px;
        font-size: 18px;
    }

    .df-int-banner-text {
        display: flex;
        flex-direction: column;
        flex: none;
    }

    .df-int-banner-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .df-int-banner-title-desktop {
        display: inline-block;
    }

    .df-int-banner-subtitle {
        font-size: 38px;
        margin-bottom: 0;
    }

    .df-int-hero .df-int-banner-description {
        text-align: start;
        margin-top: 0;
        max-width: 32%;
    }

    .df-int-grid {
        width: 100%;
    }


    .df-int-filters-sidebar {
        display: block;
        position: sticky;
        top: 100px;
        max-width: 220px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Scrollbar styling for filter sidebar */
    .df-int-filters-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .df-int-filters-sidebar::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .df-int-filters-sidebar::-webkit-scrollbar-thumb {
        background: #038181;
        border-radius: 3px;
    }

    .df-int-filters-sidebar::-webkit-scrollbar-thumb:hover {
        background: #026565;
    }

    .df-int-filters-title {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #383d3d;
        margin: 0 0 5px 0;

        letter-spacing: 0.25px;
    }

    .df-int-filter-buttons {
        display: flex;
        flex-direction: column;
        gap: 11px;
    }

    .df-int-filter-btn {
        background: none;
        border: none;
        padding: 10px 0;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        color: #383d3d;
        cursor: pointer;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-weight: 400;
    }

    @media (hover: hover) {
        .df-int-filter-btn:hover {
            color: #026565;
        }
    }

    .df-int-filter-btn.active {
        color: #038181;
        font-weight: 600;
    }

    .df-int-category-title {
        font-size: 20px;
    }

    .df-int-category-header {
        margin-bottom: 22px;
    }
}

@media (min-width: 1200px) {

    .df-int-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 200px));
        gap: 38px 57px;
        justify-content: start;
    }

    .df-int-banner-text {
        margin-left: auto;
    }

    .df-int-icons {
        max-width: 480px;
        gap: 8px;
    }

    .df-int-icon:nth-child(3) {
        width: 98px;
        height: 94px;
    }

    .df-int-cta-button {
        padding: 6px 14px;
    }
}