/* Printing / Embroidery CTA block (wwlc/printing-cta) */
.printing-section {
    /* !important reclaims the full width: block themes (is-layout-constrained)
       otherwise cap non-aligned blocks at the narrower content width, overriding
       this max-width. This restores the original full-available-width look. */
    max-width: 1320px !important;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: 2.3fr 2fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Default sits at 1400px centred (matches the original). Choosing "Full width"
   in the editor lifts the cap for a true edge-to-edge section. */
.printing-section.alignfull {
    max-width: none !important;
}

.printing-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.printing-content {
    text-align: center;
    padding: 10px 20px;
}

.printing-content h2 {
    margin: 0 0 20px;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}

.printing-content p {
    margin: 0 auto;
    max-width: 480px;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.printing-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.printing-button a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;

    padding: 18px 32px;
    min-width: 200px;

    background: #ffd500;
    color: #111;
    font-size: 20px;
    font-weight: 700;

    border: 2px solid #e4bf00;
    border-radius: 8px;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    transition: all .25s ease;
}

.printing-button a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

@media (max-width: 992px) {
    .printing-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }

    .printing-image img {
        height: 260px;
    }

    .printing-content {
        padding: 0;
    }

    .printing-content h2 {
        font-size: 32px;
    }

    .printing-content p {
        font-size: 17px;
    }

    .printing-button a {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
}
