:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --bg-light: #f4f6f9;
}

/* SECTION CENTER */
.video-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.video-title {
  font-weight: 700;
  margin-bottom: 20px;
}

/* CARD */
.video-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 4px solid var(--accent-red);

  display: flex;         /* 👈 important */
  justify-content: center; /* 👈 center horizontally */
  align-items: center;
}

/* VIDEO CONTAINER */
.video-container {
  width: 100%;
}

/* IFRAME FIX */
.video-container iframe {
  width: 100%;
  height: 570px;         /* 👈 fixed height for portrait */
  border-radius: 10px;
  border: none;
  display: block;
  margin: auto;          /* 👈 force center */
}