/* ============================================================
   SAFQA — Amazon-Style "You May Be Interested" Section
   Matches Amazon's "What other items do customers buy" block
   ============================================================ */

/* ── SECTION OUTER WRAPPER ───────────────────────────────── */
.b-top {
  border-top: 1px solid #ddd !important;
  padding-top: 24px !important;
  margin-top: 8px !important;
}

/* ── SECTION HEADING — override ALL ut2 title decoration variants ─ */
/*
 * Block 4 title uses: ut2-center-title ut2-title-line-decoration ut2-biggest-size-title
 * Problems:
 *   ut2-center-title    → centres text (Amazon aligns start/end)
 *   ut2-title-line-decoration → ::after draws a horizontal divider line across the title
 *   ut2-biggest-size-title   → font-size ~36-40px (too large)
 * Fix: override all three + ut2-big-size-title to Amazon standard.
 */

/* Kill the decorative ::after horizontal line */
.ty-mainbox-title.ut2-title-line-decoration::after {
  display: none !important;
  content: none !important;
}
/* Kill the background on the span that floats above the line */
.ty-mainbox-title.ut2-title-line-decoration > span {
  background: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  z-index: auto !important;
}

/* Left-align section titles (Amazon standard — not centred) */
.ty-mainbox-title.ut2-center-title {
  justify-content: flex-start !important;
  text-align: start !important;
}
html[dir="rtl"] .ty-mainbox-title.ut2-center-title {
  justify-content: flex-end !important;
  text-align: right !important;
}

/* Normalise over-sized title */
.ty-mainbox-title.ut2-biggest-size-title,
.ty-mainbox-title.ut2-biggest-size-title span,
.ty-mainbox-title.ut2-biggest-size-title > span:first-child {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  letter-spacing: -0.2px !important;
  line-height: 1.2 !important;
}

.ty-mainbox-title.ut2-big-size-title {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0 12px 0 !important;
  margin: 0 !important;
}

.ty-mainbox-title.ut2-big-size-title span,
.ty-mainbox-title.ut2-big-size-title > span:first-child {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  letter-spacing: -0.2px !important;
  text-transform: none !important;
}

/* ── TABS ROW (Most Popular / On Sale / Recently Viewed) ─── */
.ty-tabs.cm-j-tabs.ut2-scroll-container {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  overflow: visible !important;
  /* hide the scroll arrows — tabs are short enough */
}

/* Hide scroll arrows on tab row */
.ty-tabs.cm-j-tabs.ut2-scroll-container > .ut2-scroll-left,
.ty-tabs.cm-j-tabs.ut2-scroll-container > .ut2-scroll-right {
  display: none !important;
}

/* Tab list — LTR default: left-to-right */
.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__list {
  display: flex !important;
  flex-direction: row !important;
  gap: 0 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  overflow: visible !important;
  list-style: none !important;
}

/* Individual tab item */
.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__item {
  border: none !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 8px 16px !important;
  margin-bottom: -1px !important;
  cursor: pointer !important;
  transition: border-color 0.15s !important;
}

.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__item .ty-tabs__span {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #565959 !important;
  white-space: nowrap !important;
}

/* Active tab — Amazon exact orange underline */
.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__item.active {
  border-bottom-color: #e47911 !important;
  background: transparent !important;
}

.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__item.active .ty-tabs__span {
  color: #0f1111 !important;
  font-weight: 700 !important;
}

.ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__item:hover .ty-tabs__span {
  color: #0f1111 !important;
}

/* ── PRODUCT GRID WITHIN SECTION ─────────────────────────── */
/* Grid: single row, gap between cards — no visible gutters */
.cm-tabs-content .ut2-gl .grid-list,
.ty-tabs__content .ut2-gl .grid-list {
  gap: 8px !important;
}

/* Kill background on the grid container that shows as lines in gaps */
.cm-tabs-content .ut2-gl,
.ty-tabs__content .ut2-gl,
.cm-tabs-content .ut2-gl .grid-list,
.ty-tabs__content .ut2-gl .grid-list {
  background: #fff !important;
}

/* Also kill any column background that shows as gutters */
.cm-tabs-content .ut2-gl .grid-list > [class*="ty-column"],
.ty-tabs__content .ut2-gl .grid-list > [class*="ty-column"] {
  background: #fff !important;
  border: none !important;
  padding: 0 !important;
}

/* Each card — no fixed width, let CSS columns drive the width */
.cm-tabs-content .ut2-gl__item,
.ty-tabs__content .ut2-gl__item {
  border-radius: 4px !important;
  overflow: hidden !important;
  /* reset fixed widths from amazon_product_listing.css */
  flex: unset !important;
  min-width: unset !important;
}

.cm-tabs-content .ut2-gl__body,
.ty-tabs__content .ut2-gl__body {
  background: #fff !important;
  border: none !important;              /* kill the card border — no lines */
  border-radius: 4px !important;
  box-shadow: none !important;
  transition: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.cm-tabs-content .ut2-gl__item:hover .ut2-gl__body,
.ty-tabs__content .ut2-gl__item:hover .ut2-gl__body {
  box-shadow: rgba(0,0,0,0.12) 0 1px 6px !important;
  transform: none !important;
  border-color: transparent !important;
}

/* Image: square, centered, white bg — kill all borders and grey bg */
.cm-tabs-content .ut2-gl__image,
.ty-tabs__content .ut2-gl__image {
  background: #fff !important;
  padding: 8px !important;
  border: none !important;
  border-bottom: none !important;
  border-radius: 4px 4px 0 0 !important;
  height: 175px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* UT2 core sets background:#f3f4f4 on image links — override it */
.cm-tabs-content .ut2-gl__image a,
.cm-tabs-content .ut2-gl__image a:has(.ty-pict),
.ty-tabs__content .ut2-gl__image a,
.ty-tabs__content .ut2-gl__image a:has(.ty-pict) {
  background: #fff !important;
  border: none !important;
  border-radius: 4px !important;
}

.cm-tabs-content .ut2-gl__image img,
.cm-tabs-content .ut2-gl__image .ty-pict,
.ty-tabs__content .ut2-gl__image img,
.ty-tabs__content .ut2-gl__image .ty-pict {
  max-width: 100% !important;
  max-height: 160px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  padding: 0 !important;
  display: block !important;
  transform: none !important;
  transition: none !important;
  background: #fff !important;
}

/* Content padding */
.cm-tabs-content .ut2-gl__content,
.ty-tabs__content .ut2-gl__content {
  padding: 6px 8px 10px !important;
  background: #fff !important;
  display: block !important;       /* block flow — no stretch gaps */
  flex: unset !important;
}

/* Title — blue Amazon link, 3 lines max */
.cm-tabs-content .ut2-gl__name .product-title,
.cm-tabs-content .ut2-gl__name .product-title span,
.ty-tabs__content .ut2-gl__name .product-title,
.ty-tabs__content .ut2-gl__name .product-title span {
  color: #007185 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.cm-tabs-content .ut2-gl__name .product-title:hover span,
.ty-tabs__content .ut2-gl__name .product-title:hover span {
  color: #c7511f !important;
  text-decoration: underline !important;
}

/* Rating stars */
.cm-tabs-content .ut2-gl__content .ty-product-review-reviews-stars,
.ty-tabs__content .ut2-gl__content .ty-product-review-reviews-stars {
  color: #f0a500 !important;
  font-size: 13px !important;
}

.cm-tabs-content .ut2-gl__content .cn-reviews,
.ty-tabs__content .ut2-gl__content .cn-reviews {
  font-size: 12px !important;
  color: #007185 !important;
}

/* In stock */
.cm-tabs-content .ut2-gl__content .ty-qty-in-stock,
.ty-tabs__content .ut2-gl__content .ty-qty-in-stock {
  color: #007600 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

/* Price */
.cm-tabs-content .ut2-gl__price .ty-price-num,
.cm-tabs-content .ut2-gl__price bdi,
.ty-tabs__content .ut2-gl__price .ty-price-num,
.ty-tabs__content .ut2-gl__price bdi {
  color: #0f1111 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Strikethrough list price */
.cm-tabs-content .ut2-gl__price .ty-list-price .ty-price-num,
.cm-tabs-content .ut2-gl__price .ty-list-price bdi,
.ty-tabs__content .ut2-gl__price .ty-list-price .ty-price-num,
.ty-tabs__content .ut2-gl__price .ty-list-price bdi {
  color: #888 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}

/* Add to cart button — Amazon yellow pill */
.cm-tabs-content .ut2-gl__content .ty-btn__primary,
.cm-tabs-content .ut2-gl__content .ty-btn__add-to-cart,
.ty-tabs__content .ut2-gl__content .ty-btn__primary,
.ty-tabs__content .ut2-gl__content .ty-btn__add-to-cart {
  background: #ffd814 !important;
  border: 1px solid #fcd200 !important;
  color: #0f1111 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  padding: 6px 12px !important;
  width: 100% !important;
  box-shadow: none !important;
  margin-top: 8px !important;
  transition: background 0.12s !important;
}

.cm-tabs-content .ut2-gl__content .ty-btn__primary:hover,
.cm-tabs-content .ut2-gl__content .ty-btn__add-to-cart:hover,
.ty-tabs__content .ut2-gl__content .ty-btn__primary:hover,
.ty-tabs__content .ut2-gl__content .ty-btn__add-to-cart:hover {
  background: #f7ca00 !important;
  border-color: #f2b600 !important;
}

/* ── SCROLL ARROWS ON PRODUCT GRID ──────────────────────── */
/* These are NOT on the tab bar — they appear on the grid block */
.ut2-bottom-sm > div > .ut2-scroll-container .ut2-scroll-left,
.ut2-bottom-sm > div > .ut2-scroll-container .ut2-scroll-right {
  background: rgba(255,255,255,0.95) !important;
  border: 1px solid #d5d9d9 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 20 !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  transition: box-shadow 0.15s !important;
}

.ut2-bottom-sm > div > .ut2-scroll-container .ut2-scroll-left:hover,
.ut2-bottom-sm > div > .ut2-scroll-container .ut2-scroll-right:hover {
  box-shadow: rgba(0,0,0,0.35) 0 3px 14px !important;
}

/* ── RTL ADJUSTMENTS ─────────────────────────────────────── */
html[dir="rtl"] .ty-mainbox-title.ut2-big-size-title {
  text-align: right !important;
}

/* RTL: tabs read right-to-left — first tab anchors to the right */
html[dir="rtl"] .ty-tabs.cm-j-tabs.ut2-scroll-container .ty-tabs__list {
  flex-direction: row-reverse !important;
}

/* ── SAFQA VIEWED CAROUSEL SECTION WRAPPER ───────────────── */
.sqz-viewed-section {
  border-top: 1px solid #ddd;
  padding-top: 28px;
  margin-top: 4px;
  background: #fff;
}

/* Ensure the carousel section has proper spacing from banners below */
.sqz-viewed-section + div {
  margin-top: 12px;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cm-tabs-content .ut2-gl__item,
  .ty-tabs__content .ut2-gl__item {
    flex: 0 0 150px !important;
    width: 150px !important;
    min-width: 150px !important;
  }

  .cm-tabs-content .ut2-gl__image,
  .ty-tabs__content .ut2-gl__image {
    height: 140px !important;
  }

  .ty-mainbox-title.ut2-big-size-title span {
    font-size: 18px !important;
  }

  /* sqz-car responsive — show 2 cards on mobile */
  .sqz-car__card {
    flex: 0 0 calc(100% / 2) !important;
  }

  .sqz-car-head__title {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SCROLLER BLOCKS — Amazon carousel redesign
   Targets: products_scroller_advanced.tpl → ut2-gl__item inside owl-carousel
   ═══════════════════════════════════════════════════════════════ */

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.sqz-row .ut2-bottom {
  background: #fff !important;
  padding: 20px 20px 24px !important;
  margin-bottom: 8px !important;
  box-shadow: none !important;           /* Amazon flat — no card shadow */
  border-top: 1px solid #e7e7e7 !important;
}

/* ── SECTION HEADING (inside sqz-row) ───────────────────── */
/* No bottom border — the tab row below acts as natural separator.
   The ut2-title-line-decoration ::after is already killed above.   */
.sqz-row .ty-mainbox-title {
  padding: 0 0 12px !important;
  border-bottom: none !important;        /* remove double-border */
  margin-bottom: 0 !important;           /* tab row provides spacing */
}
.sqz-row .ty-mainbox-title span,
.sqz-row .ty-mainbox-title > span:first-child {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  letter-spacing: -0.2px !important;
}
.sqz-row .ty-mainbox-title mark {
  background: none !important;
  color: #007185 !important;             /* teal, matching Block 3 */
  font-style: normal !important;
}

/* ── OWL CAROUSEL NAVIGATION ARROWS ─────────────────────── */
.sqz-row .owl-controls.clickable.owl-controls-outside {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.sqz-row .owl-prev,
.sqz-row .owl-next {
  position: absolute;
  top: 0;
  pointer-events: all;
  width: 36px;
  height: 52px;
  background: #fff !important;
  border: 1px solid #d5d9d9 !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: box-shadow .15s, background .15s;
  z-index: 10;
}
.sqz-row .owl-prev { left: -18px; }
.sqz-row .owl-next { right: -18px; }
html[dir="rtl"] .sqz-row .owl-prev { left: auto; right: -18px; }
html[dir="rtl"] .sqz-row .owl-next { left: -18px; right: auto; }

.sqz-row .owl-prev:hover,
.sqz-row .owl-next:hover {
  background: #f7f8f8 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.sqz-row .owl-prev i,
.sqz-row .owl-next i {
  font-size: 18px !important;
  color: #0f1111 !important;
}

/* ── SCROLLER CARD — Amazon product tile ─────────────────── */

/* Card body */
.sqz-row .ut2-gl__item .ut2-gl__body {
  background: #fff !important;
  border: 1px solid #d5d9d9 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  transition: box-shadow .18s, border-color .18s !important;
}
.sqz-row .ut2-gl__item:hover .ut2-gl__body {
  border-color: #ff9900 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.12) !important;
  /* Kill UniTheme2's expand-on-hover */
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  width: 100% !important;
  inset: unset !important;
  z-index: 2 !important;
}

/* Image area — white, clean padding, no border */
.sqz-row .ut2-gl__image {
  background: #fff !important;
  padding: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 200px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}
.sqz-row .ut2-gl__image img,
.sqz-row .ut2-gl__image .ty-pict {
  max-height: 185px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  background: transparent !important;
  transition: transform .22s ease !important;
}
.sqz-row .ut2-gl__item:hover .ut2-gl__image img,
.sqz-row .ut2-gl__item:hover .ut2-gl__image .ty-pict {
  transform: scale(1.04) !important;
}

/* Content area */
.sqz-row .ut2-gl__content {
  padding: 10px 12px 12px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: #fff !important;
}

/* Product title — 2 lines max */
.sqz-row .ut2-gl__name a,
.sqz-row .ut2-gl__name .product-title {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #0f1111 !important;
  line-height: 1.45 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 40px !important;
  text-decoration: none !important;
}
.sqz-row .ut2-gl__name a:hover {
  color: #c7511f !important;
  text-decoration: underline !important;
}

/* Star rating */
.sqz-row .ty-product-review-reviews-stars,
.sqz-row .ut2-rating-stars {
  color: #f0a500 !important;
  font-size: 13px !important;
}
.sqz-row .ut2-rating-stars-num,
.sqz-row .ty-product-review-reviews-total-reviews {
  font-size: 12px !important;
  color: #007185 !important;
}

/* Price block */
.sqz-row .ut2-gl__price {
  margin-top: 4px !important;
  min-height: 0 !important;
}
/* Main price — dark, prominent */
.sqz-row .ut2-gl__price .ty-price-num,
.sqz-row .ut2-gl__price bdi {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
}
/* Currency symbol small + superscript */
.sqz-row .ut2-gl__price .ut2-currency-sup {
  font-size: 12px !important;
  font-weight: 400 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
  color: #0f1111 !important;
}
/* Cents */
.sqz-row .ut2-gl__price .ty-price-num sup {
  font-size: 12px !important;
  font-weight: 400 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
}
/* Strikethrough original price */
.sqz-row .ut2-gl__price .ty-list-price .ty-price-num,
.sqz-row .ut2-gl__price .ty-list-price bdi {
  font-size: 12px !important;
  color: #888 !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}
/* Inline discount percentage — flat red text */
.sqz-row .ty-discount-label,
.sqz-row .ty-discount-label__item,
.sqz-row .ty-discount-label__value {
  background: none !important;
  color: #cc0c39 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: static !important;
  float: none !important;
  display: inline !important;
  height: auto !important;
  line-height: 1.4 !important;
}
.sqz-row .ty-discount-label__value em { display: none !important; }
.sqz-row .ty-discount-label__value::before { content: "-" !important; color: #cc0c39 !important; }

/* Add to cart button — Amazon yellow pill */
.sqz-row .ut2-gl__control .ty-btn__add-to-cart,
.sqz-row .ty-btn__add-to-cart,
.sqz-row .ty-btn__primary {
  display: block !important;
  width: 100% !important;
  background: linear-gradient(to bottom, #f8e367, #ffd814) !important;
  border: 1px solid #fcd200 !important;
  color: #0f1111 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  padding: 8px 12px !important;
  text-align: center !important;
  margin-top: auto !important;
  box-shadow: 0 2px 5px rgba(213,177,0,.2) !important;
  transition: background .1s !important;
  cursor: pointer !important;
  height: auto !important;
  min-height: 0 !important;
}
.sqz-row .ty-btn__add-to-cart:hover,
.sqz-row .ty-btn__primary:hover {
  background: linear-gradient(to bottom, #fdf09d, #f7ca00) !important;
}
/* Make icon+text inline on button */
.sqz-row .ty-btn__add-to-cart bdi,
.sqz-row .ty-btn__primary bdi { display: inline !important; }
.sqz-row .ty-btn__add-to-cart i,
.sqz-row .ty-btn__primary i { display: inline !important; margin-inline-end: 4px !important; }

/* ── "Show More" button ──────────────────────────────────── */
.sqz-row .ut2-load-more__btn,
.sqz-row .cm-load-more-btn,
.sqz-row [class*="load-more"] .ty-btn {
  display: inline-block !important;
  background: transparent !important;
  border: 1px solid #d5d9d9 !important;
  border-radius: 4px !important;
  color: #0f1111 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 8px 32px !important;
  margin: 20px auto 0 !important;
  cursor: pointer !important;
  transition: background .12s, border-color .12s !important;
}
.sqz-row .ut2-load-more__btn:hover,
.sqz-row [class*="load-more"] .ty-btn:hover {
  background: #f7f8f8 !important;
  border-color: #aab7c4 !important;
}

/* ── Hide noise elements ─────────────────────────────────── */
.sqz-row .ut2-gl__bottom,
.sqz-row .ut2-gl__amount { display: none !important; }

/* ── STICKER BADGE on scroller cards — clean corner position */
.sqz-row .ut2-gl__image .ab-stickers-container {
  position: absolute !important;
  top: 6px !important;
  inset-inline-start: 6px !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}
.sqz-row .ab-sticker {
  background: #cc0c39 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
  border-radius: 3px !important;
  line-height: 1.4 !important;
  display: inline-block !important;
  white-space: nowrap !important;
}

/* ── RTL adjustments ─────────────────────────────────────── */
html[dir="rtl"] .sqz-row .ut2-gl__name a,
html[dir="rtl"] .sqz-row .ut2-gl__content { text-align: right !important; }
html[dir="rtl"] .sqz-row .ut2-gl__price { direction: rtl !important; }

/* ── Mobile responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .sqz-row .ut2-bottom { padding: 14px !important; }
  .sqz-row .ut2-gl__image { min-height: 140px !important; padding: 8px !important; }
  .sqz-row .ut2-gl__image img { max-height: 130px !important; }
  .sqz-row .ut2-gl__content { padding: 8px 10px 10px !important; }
}
