.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 48px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(10, 34, 64, 0.06);
  padding: 32px 24px 32px 24px;
}

.header-image {
  width: 50%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(10, 34, 64, 0.10);
  margin-bottom: 24px;
}

.header-title {
  font-size: 2.2rem;
  color: var(--primary-color, #cb1837);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.header-description {
  font-size: 1.08rem;
  color: #333;
  margin: 0;
  line-height: 1.7;
}



/* Divider */
.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color, #cb1837), transparent);
  margin: 48px auto;
  max-width: 180px;
  border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .mv-container {
    gap: 20px;
  }

  .mv-card {
    width: 90vw;
    margin-bottom: 32px;
  }

  .header-section {
    padding: 20px 8px;
  }
}

@media (max-width: 600px) {
  .header-image {
    width: 80%;
    margin-bottom: 14px;
  }

  .header-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .mv-image {
    height: 100px;
  }

  .mv-content {
    font-size: 0.95rem;
    padding: 8px 2px 8px 2px;
  }
}
