#coupons-pagination .uk-pagination>*>* {
    min-width: 85px !important;
}

#clip-coupon-button .uk-button {
    vertical-align: baseline !important;
}

.uk-coupon-truncate {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    text-overflow: ellipsis !important;
    max-width: 98% !important;
    white-space: normal !important; /* Required for Safari */
    min-height: 45px; /* Adjust this value to ensure short text doesn't collapse */
    display: flex;
    align-items: center; /* Centers text vertically */
    
    /* Ensures Chrome applies ellipsis */
    word-break: break-word !important;
    line-height: 1.6em !important; 
    max-height: 3.2em !important; /* 2 lines × line-height */
    position: relative !important;
}

/* Ensure parent container does not interfere */
.coupon-container {
    overflow: hidden !important;
    width: 100% !important; /* Ensure width is defined */
}

.uk-coupon-heading-truncate {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    max-width: 98% !important;
}

.uk-coupon-subheading-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.uk-coupon-subheading-case {
    text-transform: capitalize !important;
}