/* ============================================================
   1. THE MASTER CARD SYSTEM (Mvo-Card)
   ============================================================ */

.mvo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); /* 28px */
  overflow: hidden;
  transition: var(--mvo-transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.mvo-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

/* Card Media Sub-Component */
.mvo-card-media {
  width: 100%;
  height: 240px;
  position: relative;
  background: var(--bg-main);
  overflow: hidden;
}

.mvo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mvo-card:hover .mvo-card-media img {
  transform: scale(1.05);
}

/* Card Content Sub-Component */
.mvo-card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   2. THE BUTTON SYSTEM (Mvo-Btn)
   ============================================================ */

.mvo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md); /* 16px */
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--mvo-transition);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

/* Variants */
.mvo-btn-primary { background: var(--accent); color: #fff; }
.mvo-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.mvo-btn-care { background: var(--accent-care); color: #fff; }
.mvo-btn-care:hover { filter: brightness(1.1); transform: translateY(-2px); }

.mvo-btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.mvo-btn-outline:hover { background: var(--bg-main); border-color: var(--muted); }

/* ============================================================
   3. CLINICAL FORM INPUTS (Mvo-Field)
   ============================================================ */

.mvo-field {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-main);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: var(--mvo-transition);
  outline: none;
}

.mvo-field:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.mvo-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* ============================================================
   4. TAGS, BADGES & INDICATORS
   ============================================================ */

/* Floating Overlays for Images */
.mvo-badge-floating {
  position: absolute;
  top: 16px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.mvo-badge-blue { background: rgba(14, 120, 132, 0.9); color: #fff; }
.mvo-badge-white { background: rgba(255, 255, 255, 0.9); color: var(--text); }

/* Inline Tags */
.mvo-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--bg-main);
  color: var(--muted);
}

.mvo-tag-accent { background: var(--accent-soft); color: var(--accent); }