.image-with-table {
    padding-top: var(--padding-top-desktop);
    padding-bottom: var(--padding-bottom-desktop);
    background: var(--section-background);
}

.image-with-table .image-with-table-title {
    color: var(--heading-color);
    font-size: var(--heading-font-desk);
    line-height: 1.250;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-family: "GT America Bold";
}

.image-with-table .racket-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/2;
}

.image-with-table .icon-with-text-inner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 45px;
}

.image-with-table .text {
    font-size: 30px;
    color: #000000;
    line-height: 1.267;
    text-transform: uppercase;
    font-family: "GT America Bold";
}

.image-with-table .image-with-table-text {
    font-size: 18px;
    color: #000000;
    line-height: 1.28;
    margin: 0 0 40px 0;
}

.image-with-table .image-with-table-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background: var(--inner-bg);
    padding: 40px;
}

.image-with-table .container-direction {
    flex-direction: row-reverse;
}

.image-with-table .racket-image-wrapper {
    flex: 0 0 20%;
    max-width: calc(20% - 15px);
}

.image-with-table .racket-content-wrapper {
    flex: 0 0 80%;
    max-width: calc(80% - 15px);
}

.image-with-table .icon-with-text-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.image-with-table .racket-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
}

.image-with-table .table-content-wrapper {
    padding-top: 30px;
}

.image-with-table .comparison-table {
    border: 1px solid #D6D6D6;
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.image-with-table .comparison-table th {
    background: #a84f0b;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 18px;
    font-family: "GT America Bold";
    line-height: 1;
    border: 1px solid #D6D6D6;
    width: 413px;
    text-transform: uppercase;
}

.image-with-table tbody tr td {
    border: 1px solid #D6D6D6;
    padding: 33px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    line-height: 1.5;
}

.image-with-table .shop-racket-button {
    background: var(--button-bg);
    color: var(--button-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 520px;
    margin: 40px auto 0 auto;
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    cursor: pointer;
}

.image-with-table .shop-racket-button:hover {
    color: #fff;
}

.image-with-table-container {
    transition: all 0.5s;
    transform: translateY(100px);
}

.is-animated .image-with-table-container {
    transform: translateY(0);
}

@media (max-width:1440px) {
    .image-with-table .image-with-table-wrapper {
        padding: 20px;
    }

    .image-with-table tbody tr td {
        padding: 18px;
    }
}

@media (max-width: 1190px) {
    .image-with-table .racket-image-wrapper img {
        aspect-ratio: 1 / 3;
    }
}

@media (max-width:1024px) {
    .image-with-table .image-with-table-title {
        font-size: 30px;
    }

    .image-with-table .shop-racket-button {
        font-size: 16px;
        max-width: 350px;
        padding: 15px 0;
    }
}

@media (max-width:950px) {
    .image-with-table .text {
        font-size: 20px;
    }

    .image-with-table .racket-description {
        font-size: 16px;
    }

    .image-with-table .comparison-table th {
        padding: 15px;
        font-size: 14px;
    }

    .image-with-table tbody tr td {
        font-size: 14px;
        line-height: 1.2;
    }
}

.racket-media-content {
    display: none;
}

@media (max-width:768px) {
    .image-with-table {
        padding-top: var(--padding-top-mobile);
        padding-bottom: var(--padding-bottom-mobile);
    }

    .image-with-table .page-width {
        padding: 0 10px;
    }

    .image-with-table .image-with-table-title {
        font-size: var(--heading-font-mob);
        margin-bottom: 16px;
    }

    .image-with-table .image-with-table-text {
        font-size: 14px;
        color: #000000;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }

    .image-with-table .racket-image-wrapper {
        flex: unset;
        max-width: 100%;
        display: none;
    }

    .image-with-table .image-with-table-wrapper {
        padding: 14px 14px 19px 14px;
        display: block;
        gap: 0;
    }

    .image-with-table .racket-content-wrapper {
        flex: unset;
        max-width: 100%;
    }

    .image-with-table .table-content-wrapper {
        padding-top: 14px;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 16px;
    }

    .image-with-table .table-content-wrapper::-webkit-scrollbar {
        height: 2px;
    }

    .image-with-table .table-content-wrapper::-webkit-scrollbar-track {
        background: #B5B5B5;
    }

    .image-with-table .table-content-wrapper::-webkit-scrollbar-thumb {
        background: #000000;
    }

    .image-with-table .comparison-table {
        width: fit-content;
        min-width: max-content;
    }

    .image-with-table .comparison-table th {
        padding: 15px 25px;
        font-size: 16px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .image-with-table .comparison-table th:first-child {
        width: 134px;
    }

    .image-with-table tbody tr td {
        font-size: 14px;
        line-height: 1.25;
        padding: 14px 25px;
    }

    .image-with-table .icon-with-text-inner,
    .image-with-table .racket-description {
        display: none;
    }

    .racket-media-content {
        display: flex;
        flex-wrap: wrap;
    }

    .container-direction .racket-media-content {
        flex-direction: row-reverse;
    }

    .racket-media-wrapper {
        width: calc(40% - 0px *1/2);
    }

    .image-with-table .racket-media-content .racket-content-wrapper {
        width: calc(60% - 0px *1/2);
        max-width: unset;
    }

    .racket-media-wrapper img.racket-image,
    .racket-media-wrapper svg {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }

    .image-with-table .racket-media-content .racket-content-wrapper .racket-description {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        color: #000000;
    }

    .racket-content-icon-text {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
        margin-bottom: 8px;
    }

    .racket-content-icon-text img.racket-image {
        width: 22px;
        object-fit: contain;
        display: block;
        height: auto;
    }

    .racket-content-icon-text h3.text {
        width: calc(100% - 22px - 9px);
        font-weight: normal;
        font-size: 18px;
        line-height: 1.278;
        color: #000000;
    }

    .image-with-table .shop-racket-button {
        margin: 16px auto 0;
        width: 100%;
        max-width: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        font-size: 16px;
        line-height: 1.25;
    }
}