.product-wrapper .row {
    align-items: center;
}

.product-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.product-wrapper {
    border-radius: 20px;
    box-shadow: 0px 4px 7px 0px rgba(47, 71, 114, 0.05);
    background: var(--White, rgba(255, 255, 255, 1));
    position: relative;

}

.product-resources {
    margin-top: -140px;
}

body .hero-section-inner {
    padding-bottom: 220px;
}

.product-resources h2 {
    margin-bottom: 0;
}


.product-resources-image img {
    height: 280px;
    width: 490px;
    object-fit: cover;
    border-radius: 20px;
}

.product-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 80px;
}

.product-arrow-link {
    border: 2px solid rgba(47, 71, 114, 0.15);
    border-radius: 61px;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-arrow-link span {
   -webkit-mask: url('/wp-content/uploads/2025/08/arrow-link.svg');
    width: 35px;
    height: 22px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    display: block;
    background-color: var(--blue);
}

.product-resources {
    padding-bottom: 80px;
}

.product-wrapper:hover span {
    background-color: var(--light-blue);
}

.product-wrapper:hover .product-arrow-link {
    background-color: var(--blue);
    border-color: var(--blue);
}

.product-wrapper:hover {
    color: var(--blue);
    box-shadow: 0px 40px 78px 0px rgba(47, 71, 114, 0.2);
    background: var(--White, rgba(255, 255, 255, 1));
}

.product-info p {
    font-size: 30px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -1px;
    margin-top: 5px;
}

.product-info-wrapper-mobile {
    padding: 32px;
}

.product-info-wrapper-mobile h2 {
    font-size: 38px;
    line-height: 43px ;
}

.product-info-wrapper-mobile .button-outline {
    margin-top: 26px
}

.product-wrapper.show-mobile {
    display: none;
}

@media(max-width: 991px) {
    .product-wrapper.show-mobile {
        display: flex;
    }
}

@media(max-width: 575px) {
    .product-resources-image img {
        height: 225px;
        width: 390px;
    }

    .product-info h2,.product-info p {
        text-align: center;
    }

    .product-info h2 {
        font-size: 36px;
        font-weight: 600;
        line-height: 46px;
        letter-spacing: -1px;
    }

    body .hero-section-inner {
        padding-bottom: 140px;
    }

    .product-info p {
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        letter-spacing: 0;
    }

    body .hero-inner-subtitle {
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
        letter-spacing: 0;
    }

    .product-info-wrapper-mobile {
        padding-top: 20px;
    }


}