/* 1. Turn the main container into a flexbox container */
article {
    margin: 0;
}

.entry-title {
    margin: 0;
}

/* 2. Define the columns using the new, semantic class names */
.product-presentation {
    flex: 0 0 40%;
}

.product-actions {
    flex: 1;
}

/* 3. Style the content inside the right column (.product-actions) */
.product-actions .entry-header {
    margin-bottom: 20px;
}

.product-actions .price-box {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.2;
    font-weight: bold;
    font-family: var(--font-new-spirit);
}

/* Style for the EDD purchase button to make it stand out */
.product-actions .edd-buy-now-button {
    font-size: 1.2em;
    padding: 15px 30px;
}

/* Optional: Ensure the product image doesn't overflow its container */
.product-presentation .download-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    /* Ensures responsiveness */
    display: block;
}

.trust-signals {
    display: flex;
    flex-direction: column;
    background-color: var(--light-purple);
    padding: 20px;
    color: var(--secondary-purple);
    border-radius: 12px;
    gap: 10px;

    div {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 992px) {

    .site-content .container{
        align-items: center;
        flex-direction: column-reverse;
    }
}