/* MDCO Reviews Slider v1.2.0 */
.mdco-slider-wrap { overflow: hidden; width: 100%; position: relative; }
.mdco-track { display: flex; will-change: transform; }

.mdco-card {
  flex-shrink: 0; box-sizing: border-box;
  display: flex; flex-direction: column; gap: 8px;
  padding: 1.25rem 1.25rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  position: relative;
}

/* Google icon top-right */
.mdco-g-icon {
  position: absolute; top: 14px; right: 14px;
  width: 20px; height: 20px; flex-shrink: 0;
}

.mdco-stars { color: #E59A12; font-size: 15px; letter-spacing: 1px; margin-bottom: 2px; }

.mdco-card-body {
  font-size: 13.5px; line-height: 1.65; color: #374151; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.mdco-card-body.expanded {
  display: block; overflow: visible; -webkit-line-clamp: unset;
}

.mdco-read-more {
  font-size: 12px; color: #6b7280; cursor: pointer;
  background: none; border: none; padding: 0;
  text-align: left; font-family: inherit;
  text-decoration: underline; text-underline-offset: 2px;
  margin-top: 2px;
}
.mdco-read-more:hover { color: #1D9E75; }

/* Footer */
.mdco-footer-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.mdco-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.mdco-footer-info { display: flex; flex-direction: column; gap: 1px; }
.mdco-card-author { font-size: 13px; color: #111827; font-weight: 600; margin: 0; }
.mdco-card-sub { font-size: 11px; color: #6b7280; }

/* Layout A — Classic */
.mdco-layout-a { border-radius: 12px; }

/* Layout B — Quote */
.mdco-layout-b { border-left: 3px solid #1D9E75; border-radius: 0 12px 12px 0; }
.mdco-layout-b .mdco-card-body { font-style: italic; }
.mdco-quote-mark { font-size: 44px; line-height: 0.5; color: #9FE1CB; margin-bottom: 6px; font-family: Georgia,serif; font-weight: 700; }

/* Layout C — Avatar pill */
.mdco-layout-c { border-radius: 24px; }
.mdco-avatar-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.mdco-avatar-header .mdco-avatar { width: 40px; height: 40px; font-size: 14px; }
.mdco-avatar-header .mdco-card-author { font-size: 13px; }
.mdco-avatar-header .mdco-stars { font-size: 13px; margin: 0; }

/* Layout D — Minimal */
.mdco-layout-d { border-radius: 0; border-top: 2px solid #E59A12; border-bottom: 1px solid #e5e7eb; border-left: none; border-right: none; }
.mdco-layout-d .mdco-card-body { font-family: Georgia,serif; font-size: 14px; }

/* Modal overlay */
.mdco-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.5);
  align-items: center; justify-content: center;
  padding: 20px;
}
.mdco-modal-overlay.open { display: flex; }
.mdco-modal-box {
  background: #fff; border-radius: 16px;
  padding: 2rem; max-width: 520px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  position: relative;
}
.mdco-modal-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 22px; cursor: pointer; color: #6b7280;
  background: none; border: none; line-height: 1;
}
.mdco-modal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mdco-modal-stars { color: #E59A12; font-size: 17px; letter-spacing: 1px; margin-bottom: 10px; }
.mdco-modal-body { font-size: 14px; line-height: 1.75; color: #374151; }
