.fox-related-treatments {
    width: 100%;
    overflow: hidden;
}

.fox-treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.fox-treatment-heading {
    margin: 0 0 8px;
    line-height: 1.15;
}

.fox-treatment-description {
    font-size: 17px;
    line-height: 1.5;
}

.fox-treatment-arrows {
    display: flex;
    gap: 22px;
}

.fox-treatment-arrows button {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
}

.fox-treatment-prev {
    color: #aaa;
}

.fox-treatment-next {
    color: #7d3299;
}

.fox-treatment-slider {
    overflow: hidden;
}

.fox-treatment-track {
    display: flex;
    transition: transform 0.45s ease;
}

.fox-treatment-card {
    flex: 0 0 calc((100% - 84px) / 4);
    min-width: 0;
}

.fox-treatment-image {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
}

.fox-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fox-treatment-card-content {
    padding: 25px 28px 30px;
    background: #fff;
}

.fox-treatment-card-title {
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 400;
}

.fox-treatment-card-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.fox-treatment-button {
    display: inline-block;
    color: #222;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid #7d3299;
}

@media (max-width: 1024px) {

    .fox-treatment-card {
        flex-basis: calc((100% - 28px) / 2);
    }

}

@media (max-width: 767px) {

    .fox-treatment-header {
        display: block;
    }

    .fox-treatment-arrows {
        margin-top: 20px;
    }

    .fox-treatment-heading {
        font-size: 34px;
    }

    .fox-treatment-card {
        flex-basis: 100%;
    }

}