/**
 * ASDF "Our Model" section styles.
 *
 * Shipped as a dedicated stylesheet loaded from THIS PLUGIN (never the theme
 * copy) so the widget is always styled, even if the active theme's style.css is
 * an older build or still cached. Every custom property has a literal fallback
 * for the same reason.
 */

.model-section {
  padding: 90px 0;
  background: var(--white, #ffffff);
  overflow: hidden;
}
.model-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light, #6d6470);
  margin-top: 8px;
}

.model-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 46px;
}
.model-stage {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.model-circle {
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--primary-purple, #5e1062);
  color: var(--white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: var(--shadow-md, 0 8px 24px rgba(94, 16, 98, 0.12));
}
.model-uparrow {
  color: #c39ac7;
  margin: 16px 0;
  line-height: 0;
}
.model-points {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.model-points li {
  position: relative;
  background: var(--bg-lavender, #f4ecf5);
  color: var(--text-dark, #2a252c);
  font-size: 13px;
  line-height: 1.35;
  padding: 7px 11px 7px 24px;
  border-radius: 6px;
  list-style: none;
}
.model-points li::marker { content: ''; }
.model-points li::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-purple, #5e1062);
}
.model-connector {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 54px;
  color: var(--accent-purple, #7d1c82);
  line-height: 0;
}
.model-image { text-align: center; margin-bottom: 46px; }
.model-image img { max-width: 100%; height: auto; }

.model-meta {
  background: #ececec;
  border-radius: 16px;
  padding: 24px 30px;
  max-width: 920px;
  margin: 0 auto;
}
.model-meta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dark, #2a252c);
}
.model-meta p + p { margin-top: 12px; }
.model-meta-label { font-weight: 800; }

.model-cta { text-align: center; margin-top: 36px; }
.model-cta .read-more-btn { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 860px) {
  .model-flow { flex-direction: column; align-items: center; gap: 0; }
  .model-stage { width: 100%; max-width: 320px; margin-bottom: 6px; }
  .model-points { max-width: 320px; }
  .model-connector { align-self: center; margin: 4px 0 10px; transform: rotate(90deg); }
}
