.mv-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.mv-card {
  position: relative;
  width: 500px;
  max-width: 95vw;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(10, 34, 64, 0.08);
  margin-bottom: 48px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}

.mv-card:hover {
  box-shadow: 0 10px 32px rgba(203, 24, 55, 0.13);
}

.mv-title {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 10px;
  background-color: var(--primary-color, #cb1837);
  color: #fff;
  padding: 6px 22px;
  font-size: 1.08rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(10, 34, 64, 0.10);
  position: relative;
}

.mv-image {
  width: 90%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  transition: filter 0.3s, transform 0.3s;
  margin-bottom: 0;
  margin-top: 0;
  z-index: 1;
  display: block;
}

.mv-card:hover .mv-image {
  filter: brightness(0.5) blur(1px);
  transform: scale(1.03);
}

.mv-card:hover .mv-title {
  background-color: #fff;
   box-shadow:none
}


.mv-content {
  position: absolute;
  top:57%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.97);
  color: #222;
  border-radius: 10px;
  padding: 22px 16px 16px 16px;
  box-shadow: 0 4px 24px rgba(10,34,64,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 3;
  text-align: center;
}

.mv-card:hover .mv-content {
  opacity: 1;
  pointer-events: auto;
}

.mv-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary-color, #cb1837);
  font-weight: 600;
}

.mv-content p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}