@media (max-width: 700px) {
  #load.article {
    flex-direction: column;
    align-items: stretch;
  }
  .left_article,
  .poster {
    width: 100%;
  }
  .poster {
    justify-content: center;
    margin-top: 20px;
  }
}

body {
  background-color: RGB(18, 27, 45);
  font-family: 標楷體;
  color: rgb(220, 220, 220);
  margin: 0;
}
.banner {
  background-color: rgb(24, 33, 72);
  border-bottom: 1px solid rgb(130, 130, 140);
  display: flex;
  justify-content: center;
  align-items: center; /* 垂直置中 */
  gap: 10px;
  padding: 15px 0;
  width: 100%;
}

input,
button {
  height: 32px;
  font-size: 16px;
}

.article {
  display: flex;
  align-items: center; /* 垂直置中區塊（可加可不加） */
  justify-content: space-between;
  width: 100%;
  min-height: 70vh; /* 讓內容區塊至少有高度，方便置中 */
  box-sizing: border-box; /* 避免內容超出 */
  padding: 40px 0;
}

.left_article {
  width: 60%;
  /* 可加這段讓三欄上下排列、間距 */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 垂直置中內容 */
  gap: 1em;
  margin-left: auto;
}

.text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-size: 1.5em;
  color: #85a3ff;
  letter-spacing: 0.15em;
}

.poster {
  width: 30%; /* 占空間較小 */
  display: flex; /* 可方便圖片置中 */
  align-items: center;
  min-height: 220px; /* 可依你的圖片大小調整 */
}

.poster img {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap; /* 換行 */
  justify-content: center;
  gap: 20px;
  max-width: 1200px; /* 控制整體寬度，可依需求調整 */
  margin-left: auto;
  margin-right: auto;
}
.movie-item {
  width: 200px; /* 每個電影項目寬度 */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(220, 220, 220);
  background-color: RGB(24, 33, 72);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.movie-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.movie-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}

.movie-year {
  font-size: 0.9em;
  text-align: center;
}
