.product-pdf-card {
    padding: 1.75rem 0;
}


.product-pdf-card .product-pdf-card-content {
    display: flex;
    gap: 1.75rem;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 1rem;
    padding: 1.75rem;
    position: relative;
    z-index: 2;
}
.product-pdf-card .product-pdf-card-content .product-pdf-card-content-title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.product-pdf-card .product-pdf-card-content .product-name {
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding: 0;
}

.product-pdf-card .product-pdf-card-content .product-pdf-card-content-header {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
    padding: 0;
    max-width: 20rem;
}

.product-pdf-card .product-pdf-card-content .product-pdf-card-content-button {
    z-index: 2;
}

.product-pdf-card .product-pdf-card-content .background-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 14rem;
    height: auto;
    z-index: 1;
}

@media (max-width: 768px) {
    .product-pdf-card .product-pdf-card-content {
        flex-direction: column;
        text-align: center;
    }
    .product-pdf-card .product-pdf-card-content .product-pdf-card-content-header {
        max-width: 100%;
    }
    .product-pdf-card .product-pdf-card-content .background-icon {
        margin: auto;
        top: 2rem;
        right: 0;
        left: 0;
        width: 30rem;
    }
}