.elementor-8287 .elementor-element.elementor-element-0d23eea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ee5a042 *//* =========================
   MIDPOSI Blog – Apple Style
   Fade-up Animation + B2B Cleanroom
   ========================= */

:root {
  --ink-main: #0f172a;
  --ink-muted: #475569;
  --bg-soft: #f8fafc;
  --card-bg: #ffffff;
  --accent: #2563eb;
  --border-soft: #e5e7eb;
  --radius-lg: 16px;
  --radius-md: 12px;
}

/* Global wrapper */
.mps-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  background: var(--bg-soft);
  color: var(--ink-main);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
}

/* Card container */
.mps-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  animation: fadeUp 0.8s ease-out both;
}

/* Headings */
.mps-card h1 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mps-card h2 {
  font-size: 28px;
  margin: 56px 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mps-card h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  font-weight: 600;
}

/* Subtitle */
.mps-subtitle {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 820px;
  margin-bottom: 40px;
}

/* Paragraphs */
.mps-card p {
  font-size: 16px;
  color: var(--ink-main);
  margin-bottom: 16px;
}

/* Lists */
.mps-card ul {
  padding-left: 20px;
  margin: 20px 0;
}

.mps-card ul li {
  margin-bottom: 10px;
  color: var(--ink-main);
}

/* Tables */
.mps-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}

.mps-card table th,
.mps-card table td {
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  text-align: left;
}

.mps-card table th {
  background: #f1f5f9;
  font-weight: 600;
}

/* Figure / Images */
.mps-figure {
  margin: 40px 0;
  text-align: center;
  animation: fadeUp 0.9s ease-out both;
}

.mps-figure img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.mps-figure-caption {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* Links */
.mps-card a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.mps-card a:hover {
  border-bottom-color: var(--accent);
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .mps-card {
    padding: 40px 28px;
  }

  .mps-card h1 {
    font-size: 32px;
  }

  .mps-card h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .mps-card {
    padding: 32px 20px;
  }

  .mps-card h1 {
    font-size: 28px;
  }
}/* End custom CSS */