/**
 * OEM/ODM Services V5 — Namespaced under .oem-odm-v5
 * Uses site theme colors (--sf-pink, --sf-ink, etc.) and default font.
 * Load after bridge-components.css. No :root overrides; inherit from body.home / global.
 */

/* Scope: only inside main.oem-odm-v5 */
.oem-odm-v5 {
  --oem-primary: var(--sf-pink, #E84C8B);
  --oem-primary-hover: var(--sf-pink-hover, #D23C78);
  --oem-soft: var(--sf-pink-soft, #FFF1F6);
  --oem-cream: var(--sf-cream, #FAF7F2);
  --oem-ink: var(--sf-ink, #1F1F1F);
  --oem-muted: var(--sf-muted, #6B7280);
  --oem-border: var(--sf-border, rgba(31,31,31,.10));
  --oem-shadow: var(--sf-shadow, 0 12px 28px rgba(17,17,17,.10));
  --oem-shadow-soft: var(--sf-shadow-soft, 0 8px 24px rgba(17,17,17,.08));
  font-family: inherit;
  color: var(--oem-ink);
  background: #fff;
  overflow-x: hidden;
}

.oem-odm-v5 *,
.oem-odm-v5 *::before,
.oem-odm-v5 *::after {
  box-sizing: border-box;
}

/* Anchor targets: leave room for fixed header */
.oem-odm-v5 .oem-hero,
.oem-odm-v5 .oem-services,
.oem-odm-v5 .oem-products,
.oem-odm-v5 .oem-process,
.oem-odm-v5 .oem-why,
.oem-odm-v5 .oem-faq,
.oem-odm-v5 .oem-contact {
  scroll-margin-top: 90px;
}

.oem-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---------- Hero ---------- */
.oem-odm-v5 .oem-hero {
  min-height: 85vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #2D3436 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.oem-odm-v5 .oem-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.oem-odm-v5 .oem-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}

.oem-odm-v5 .oem-hero__title em {
  color: var(--oem-primary);
  font-style: italic;
}

.oem-odm-v5 .oem-hero__subtitle {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
}

/* Override base #site-content p color for hero subtitle */
#site-content .oem-odm-v5 p.oem-hero__subtitle,
#site-content .oem-odm-v5 .oem-hero__subtitle {
  color: #ffffff !important;
}

/* Make all OEM/ODM body copy paragraphs black on this page,
   except hero subtitle which stays white via rule above */
#site-content .oem-odm-v5 p {
  color: #000000;
}

.oem-odm-v5 .oem-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.oem-odm-v5 .oem-stat {
  text-align: left;
}

.oem-odm-v5 .oem-stat__num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--oem-primary);
  line-height: 1.2;
}

.oem-odm-v5 .oem-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.oem-odm-v5 .oem-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.oem-odm-v5 .oem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.oem-odm-v5 .oem-btn--primary {
  background: var(--oem-primary);
  color: #fff;
  border: none;
}

.oem-odm-v5 .oem-btn--primary:hover {
  background: var(--oem-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,76,139,0.35);
}

.oem-odm-v5 .oem-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}

.oem-odm-v5 .oem-btn--secondary:hover {
  border-color: var(--oem-primary);
  color: var(--oem-primary);
}

.oem-odm-v5 .oem-hero__visual {
  position: relative;
}

.oem-odm-v5 .oem-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.oem-odm-v5 .oem-hero__img {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.oem-odm-v5 .oem-hero__img--wide {
  grid-column: span 2;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
}

.oem-odm-v5 .oem-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .oem-odm-v5 .oem-hero__subtitle { margin-left: auto; margin-right: auto; }
  .oem-odm-v5 .oem-hero__stats { justify-content: center; }
  .oem-odm-v5 .oem-hero__actions { justify-content: center; }
  .oem-odm-v5 .oem-hero__visual { display: none; }
  .oem-odm-v5 .oem-hero { min-height: auto; padding: 80px 0 60px; }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-hero__title { font-size: 28px; }
  .oem-odm-v5 .oem-hero__stats { gap: 24px; }
}

/* ---------- Section common ---------- */
.oem-odm-v5 .oem-section {
  padding: 80px 0;
}

.oem-odm-v5 .oem-section__head {
  text-align: center;
  margin-bottom: 48px;
}

.oem-odm-v5 .oem-section-tag {
  display: inline-block;
  background: var(--oem-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.oem-odm-v5 .oem-section-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--oem-ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

.oem-odm-v5 .oem-section-desc {
  font-size: 16px;
  color: var(--oem-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.oem-odm-v5 .oem-section--dark .oem-section-title,
.oem-odm-v5 .oem-section--dark .oem-section-desc {
  color: #fff;
}

/* 让 Workflow 标题使用深色（避免看不见） */
.oem-odm-v5 .oem-process.oem-section--dark .oem-section-title {
  color: #000;
}

.oem-odm-v5 .oem-section--dark .oem-section-tag {
  background: rgba(255,255,255,0.2);
}

/* 让 Workflow 区块的 tag 样式与 Why Choose Us 一致（使用默认粉色标签） */
.oem-odm-v5 .oem-process.oem-section--dark .oem-section-tag {
  background: var(--oem-primary);
  color: #fff;
}

/* ---------- Services grid ---------- */
.oem-odm-v5 .oem-services {
  background: var(--oem-cream);
}

.oem-odm-v5 .oem-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.oem-odm-v5 .oem-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--oem-shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.oem-odm-v5 .oem-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--oem-primary);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.oem-odm-v5 .oem-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--oem-shadow);
}

.oem-odm-v5 .oem-service-card:hover::before {
  transform: scaleY(1);
}

.oem-odm-v5 .oem-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--oem-primary);
  border-radius: 12px;
  margin-bottom: 20px;
}

.oem-odm-v5 .oem-service-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--oem-ink);
  margin: 0 0 8px;
}

.oem-odm-v5 .oem-service-card__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--oem-muted);
  margin-bottom: 16px;
}

.oem-odm-v5 .oem-service-card__desc {
  font-size: 15px;
  color: var(--oem-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.oem-odm-v5 .oem-service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oem-odm-v5 .oem-service-card__list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--oem-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.oem-odm-v5 .oem-service-card__list li::before {
  content: '✓';
  color: var(--oem-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-services-grid {
    grid-template-columns: 1fr;
  }
  .oem-odm-v5 .oem-section { padding: 60px 0; }
}

/* ---------- Products tabs ---------- */
.oem-odm-v5 .oem-products {
  background: #fff;
}

.oem-odm-v5 .oem-product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.oem-odm-v5 .oem-tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oem-muted);
  background: #fff;
  border: 2px solid var(--oem-border);
  cursor: pointer;
  transition: all 0.25s;
}

.oem-odm-v5 .oem-tab-btn:hover,
.oem-odm-v5 .oem-tab-btn.oem-tab-btn--active {
  background: var(--oem-primary);
  border-color: var(--oem-primary);
  color: #fff;
}

.oem-odm-v5 .oem-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oem-odm-v5 .oem-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--oem-shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.oem-odm-v5 .oem-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--oem-shadow);
}

.oem-odm-v5 .oem-product-card__img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--oem-soft) 0%, #f0f0f0 100%);
}

.oem-odm-v5 .oem-product-card__info {
  padding: 20px;
  text-align: center;
}

.oem-odm-v5 .oem-product-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--oem-ink);
  margin: 0 0 8px;
}

.oem-odm-v5 .oem-product-card__meta {
  font-size: 13px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process (dark) ---------- */
.oem-odm-v5 .oem-process {
  background: var(--oem-ink);
  color: #fff;
}

.oem-odm-v5 .oem-process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.oem-odm-v5 .oem-process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.oem-odm-v5 .oem-process-step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--oem-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--oem-primary);
}

.oem-odm-v5 .oem-process-step__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.oem-odm-v5 .oem-process-step__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-process-timeline {
    flex-direction: column;
  }
}

/* ---------- Why grid ---------- */
.oem-odm-v5 .oem-why {
  background: var(--oem-cream);
}

.oem-odm-v5 .oem-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.oem-odm-v5 .oem-why-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--oem-shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.oem-odm-v5 .oem-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oem-shadow);
}

.oem-odm-v5 .oem-why-card__val {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--oem-primary);
  margin-bottom: 12px;
}

.oem-odm-v5 .oem-why-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--oem-ink);
  margin: 0 0 8px;
}

.oem-odm-v5 .oem-why-card__desc {
  font-size: 14px;
  color: var(--oem-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.oem-odm-v5 .oem-faq {
  background: #fff;
}

.oem-odm-v5 .oem-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.oem-odm-v5 .oem-faq-item {
  border-bottom: 1px solid var(--oem-border);
  overflow: hidden;
}

.oem-odm-v5 .oem-faq-q {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--oem-ink);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.oem-odm-v5 .oem-faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--oem-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.oem-odm-v5 .oem-faq-item.is-open .oem-faq-q::after {
  transform: rotate(45deg);
  color: var(--oem-primary);
}

.oem-odm-v5 .oem-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.oem-odm-v5 .oem-faq-a__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--oem-muted);
  border-top: 1px solid var(--oem-border);
  padding-top: 16px;
  margin-top: 0;
}

/* ---------- Contact (dark) + form ---------- */
.oem-odm-v5 .oem-contact {
  background: linear-gradient(135deg, #1a1a2e 0%, #2D3436 100%);
  padding-bottom: 100px;
}

.oem-odm-v5 .oem-contact .oem-section-desc {
  color: #ffffff !important;
}

.oem-odm-v5 .oem-contact-content {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.oem-odm-v5 .oem-contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.oem-odm-v5 .oem-contact-info p {
  color: #ffffff !important;
  line-height: 1.7;
  margin-bottom: 24px;
}

.oem-odm-v5 .oem-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oem-odm-v5 .oem-contact-method__label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}

.oem-odm-v5 .oem-contact-method__value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.oem-odm-v5 .oem-contact-form-wrap--inline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 32px 36px;
}

.oem-odm-v5 .oem-contact-form-wrap--inline .form-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.oem-odm-v5 .oem-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.oem-odm-v5 .oem-form-group {
  margin-bottom: 16px;
}

.oem-odm-v5 .oem-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.oem-odm-v5 .oem-form-group input,
.oem-odm-v5 .oem-form-group select,
.oem-odm-v5 .oem-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 14px;
}

/* 下拉选项文字用黑色，便于阅读 */
.oem-odm-v5 .oem-form-group select option {
  color: #000000;
  background: #ffffff;
}

.oem-odm-v5 .oem-form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.oem-odm-v5 .oem-form-group input:focus,
.oem-odm-v5 .oem-form-group select:focus,
.oem-odm-v5 .oem-form-group textarea:focus {
  outline: none;
  border-color: var(--oem-primary);
}

.oem-odm-v5 .oem-contact-form-wrap--inline .form-submit {
  width: 100%;
  background: var(--oem-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}

.oem-odm-v5 .oem-contact-form-wrap--inline .form-submit:hover {
  background: var(--oem-primary-hover);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-contact-form-wrap--inline {
    padding: 24px 20px 28px;
  }
  .oem-odm-v5 .oem-form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Technology section ---------- */
.oem-odm-v5 .oem-technology {
  background: #fff;
}

.oem-odm-v5 .oem-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.oem-odm-v5 .oem-tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--oem-shadow-soft);
}

.oem-odm-v5 .oem-tech-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--oem-ink);
  margin-bottom: 10px;
}

.oem-odm-v5 .oem-tech-card__desc {
  font-size: 14px;
  color: var(--oem-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-tech-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Factory section ---------- */
.oem-odm-v5 .oem-factory {
  background: var(--oem-cream);
}

.oem-odm-v5 .oem-factory__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.oem-odm-v5 .oem-section__head--left {
  text-align: left;
}

.oem-odm-v5 .oem-factory-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.oem-odm-v5 .oem-factory-stat {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--oem-shadow-soft);
}

.oem-odm-v5 .oem-factory-stat__num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--oem-primary);
  margin-bottom: 6px;
}

.oem-odm-v5 .oem-factory-stat__label {
  font-size: 13px;
  color: var(--oem-muted);
}

.oem-odm-v5 .oem-factory__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.oem-odm-v5 .oem-factory-img {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}

.oem-odm-v5 .oem-factory-img--wide {
  grid-column: span 2;
  height: 220px;
}

.oem-odm-v5 .oem-factory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-factory__inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- Quality section ---------- */
.oem-odm-v5 .oem-quality {
  background: #fff;
}

.oem-odm-v5 .oem-quality-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.oem-odm-v5 .oem-quality-cert-card {
  background: var(--oem-cream);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--oem-ink);
}

.oem-odm-v5 .oem-quality-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.oem-odm-v5 .oem-quality-step {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--oem-shadow-soft);
}

.oem-odm-v5 .oem-quality-step h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--oem-ink);
}

.oem-odm-v5 .oem-quality-step p {
  font-size: 13px;
  color: var(--oem-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-quality-cert-grid {
    grid-template-columns: 1fr 1fr;
  }
  .oem-odm-v5 .oem-quality-flow {
    flex-direction: column;
  }
}

/* ---------- Testimonials section ---------- */
.oem-odm-v5 .oem-testimonials {
  background: var(--oem-cream);
}

.oem-odm-v5 .oem-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.oem-odm-v5 .oem-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--oem-shadow-soft);
}

.oem-odm-v5 .oem-testimonial-card__quote {
  font-size: 15px;
  color: var(--oem-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.oem-odm-v5 .oem-testimonial-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--oem-ink);
  margin: 0;
}

@media (max-width: 1024px) {
  .oem-odm-v5 .oem-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .oem-odm-v5 .oem-testimonials-grid {
    grid-template-columns: 1fr;
  }
}
