.tab-switcher {
    background: radial-gradient(45% 500px, rgba(1, 115, 201, 0.34) 0%, rgb(255 255 255) 100%);
    background-position-y: 50px;
    background-repeat: no-repeat;
}

.tab-switcher__top-content {
    text-align: center;
}

.tab-switcher__top-content h2 {
    font-size: 32px !important;
    margin-bottom: 75px;
}

.tab-switcher__top-content span {
    background-color: #ECF5FF;
    color: #0075FF !important;
    width: fit-content;
    font-weight: 500 !important;
    padding: 5px !important;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 15px !important;
}

.tab-switcher__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.tab-switcher__tabs__tab {
    font-size: 14px;
    font-weight: 400;
    background: white;
    border: solid 1px #DDEBFF;
    border-radius: 5px;
    text-align: center;
    color: black;
    cursor: pointer;
    width: fit-content;
    padding: 15px 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.tab-switcher__tabs__tab:hover, .tab-switcher__tabs__tab--active {
    color: #ffffff;
    background-color: #0075FF;
}

.tab-switcher__content-item {
    width: 710px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
}

.tab-switcher__content-item__logos img {
    border-radius: 5px;
}

.tab-switcher__content-item h3 {
    font-size: 22px;
    font-weight: bold;
}

.tab-switcher__content-item--active {
    display: block;
}

.tab-switcher__content-item__information {
    color: #0075FF;
    margin-bottom: 20px;
    font-size: 18px;
}

.tab-switcher__content-item__logos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-switcher__content-item .wp-block-button {
    display: flex !important;
}

.wp-block-button.is-style-fill-secondary.is-layout-flex.references-button a {
    background-color: #F3F8FF !important;
    color: #0075FF !important;
    border: 1px solid #0075FF !important;
    border-radius: 5px !important;
}

.wp-block-button.is-style-fill-secondary.is-layout-flex.references-button a:hover{
    color: #f3f8ff !important;
    background-color: #0075FF !important;
}

@media only screen and (max-width: 600px) {
    .tab-switcher {
        background-position-y: 20px !important;
        padding-top: 20px !important;
    }

    .tab-switcher__top-content h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }

    .tab-switcher__tabs__container {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px !important;
        margin-right: -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .tab-switcher__tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        padding-bottom: 10px !important;
    }

    .tab-switcher__tabs__tab {
        flex: 0 0 auto !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .tab-switcher__content-item {
        width: 100% !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        background-color: #f3f8ff !important;
    }

    .tab-switcher__content-item__logos {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .tab-switcher__content-item__logos img {
        width: 100% !important;
        height: auto !important;
    }

    .tab-switcher .wp-block-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .tab-switcher .wp-block-button__link {
        width: 100% !important;
        text-align: center !important;
    }
}