.shop-promo-card-wrapper {
    display: flex;
    overflow: hidden;
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spc-image-col {
    flex: 1;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
}

.spc-content-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Removed fixed align-items to allow dynamic control */
}

/* Center alignment for flex values where text alignment is also needed */
.spc-content-col[style*="center"] {
    text-align: center;
}
.spc-content-col[style*="flex-end"] {
    text-align: right;
}

.spc-heading {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 700;
}

.spc-desc {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.6;
}

.spc-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.spc-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Mobile responsive styling */
@media (max-width: 767px) {
    .shop-promo-card-wrapper,
    .shop-promo-card-wrapper.img-right,
    .shop-promo-card-wrapper.img-left {
        flex-direction: column !important;
    }
    
    .spc-image-col {
        min-height: 200px;
        width: 100%;
        border-radius: 0 !important;
    }
    
    .spc-content-col {
        padding: 30px 20px;
    }
}
