.block-for-distributors-integrators {
    padding: 50px 0;

}

.fdi-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.fdi-header {
    margin-bottom: 60px;
}

.fdi-title {
    margin: 0;
    color: #373737;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.fdi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fdi-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: 96px;
    padding: 20px;
    border-radius: 10px;
    background: #efefef;
    text-decoration: none;
}

.fdi-item-title {
    flex: 1 1 auto;
    color: #373737;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.fdi-item-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 5px;
    flex-shrink: 0;
}

.fdi-item-detail {
    color: #373737;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 16px;
    line-height: 20.5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.fdi-item-arrow {
    width: 24px;
    height: 24px;
    color: #373737;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fdi-item:hover .fdi-item-detail,
.fdi-item:focus-visible .fdi-item-detail,
.fdi-item:hover .fdi-item-arrow,
.fdi-item:focus-visible .fdi-item-arrow {
    color: #d12023;
}

.fdi-item:hover .fdi-item-arrow,
.fdi-item:focus-visible .fdi-item-arrow {
    transform: translateX(2px);
}

.fdi-bottom-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 5px;
    background: #454545;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 16px;
    line-height: 20.5px;
    font-weight: 700;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.fdi-bottom-btn:hover,
.fdi-bottom-btn:focus-visible {
    background: #0f0f0f;
}

@media (max-width: 991px) {
    .block-for-distributors-integrators {
        padding: 80px 0;
    }

    .fdi-header {
        margin-bottom: 40px;
    }

    .fdi-item {
        height: auto;
        min-height: 96px;
    }

    .fdi-item-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .block-for-distributors-integrators {
        padding: 60px 0;
    }

    .fdi-title {
        font-size: 24px;
        line-height: 30px;
    }

    .fdi-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .fdi-item-cta {
        padding: 0;
    }
}
