/* new 영역 */
.new {
  padding: 100px 0;
}
.new h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.new_inner {
  display: flex;
  gap: 22px;
}
.new_left {
  flex: 1;
  background: url(../img/new01.jpg) center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
.new_right {
  width: 400px;
  height: 500px;
  background-color: #ececec;
  padding: 34px;
  box-sizing: border-box;
}
.new_right .title {
  font-size: 28px;
  font-weight: 500;
  color: black;
}
.new_right .release {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}
.new_right .star {
  font-size: 20px;
  margin-bottom: 12px;
}
.new_right .star i {
  color: #38116a;
}
.new_right .star strong {
  padding-left: 5px;
}
.new_right .summary {
  font-size: 14px;
}
.new_right .summary .genre {
  padding-bottom: 13px;
}
.new .bar {
  position: relative;
  margin-right: 20px;
}
.new .bar::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #333;
  position: absolute;
  top: 3px;
  right: -10px;
}
.new_right .summary .age {
  padding-bottom: 10px;
}
.new_right .summary .desc {
  margin-bottom: 20px;
  height: 108px;
  overflow: hidden;
}
.new_right .select {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.new_right .select .s1 {
  width: 49%;
}
.ui_select1 {
  width: 100%;
  height: 36px;
  background-color: #333;
  color: #fff;
  padding: 0 10px;
  display: inline-block;
  border: 0 none;
  box-sizing: border-box;
  border-radius: 0;
}
.new_right .select .s2 {
  width: 49%;
}
.new_right .select .s3 {
  width: 100%;
  margin-top: 8px;
}
.new_right .btn {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}
.new_right .btn a {
  width: 49%;
  padding: 11px 20px 12px 20px;
  background-color: #fff;
  box-sizing: border-box;
  margin-top: 2%;
  border: 1px solid #38116a;
  text-align: center;
}
.new_right .btn a.white {
  background-color: #fff;
  color: #38116a;
}
.new_right .btn a.purple {
  background-color: #38116a;
  color: #fff;
}
.new_right .btn a.white:hover {
  background-color: #38116a86;
  color: #fff;
}
.new_right .btn a.purple:hover {
  background-color: #ffffff88;
  color: #38116a;
}

/* 미디어 쿼리 */
@media (max-width: 1290px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 1024px) {
}
@media (max-width: 960px) {
  .new_inner {
    flex-direction: column;
    gap: 0;
  }
  .new_left {
    flex: none;
    width: 100%;
    height: 400px;
  }
  .new_right {
    width: 100%;
  }
  .new_right .btn {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #new {
    background-color: #d9d9d9;
  }
  #new .row {
    background-color: #fff;
    padding: 24px;
  }
  .new {
    padding: 24px 0;
  }
  .new h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  #new {
    padding: 14px;
  }
  .new .row {
    padding: 0 14px;
  }
  .new_left {
    height: 200px;
  }
  .new_left .play svg {
    width: 80px;
    height: 80px;
  }
  .new_right {
    padding: 17px;
  }
  .new_right .title {
    font-size: 22px;
  }
  .new_right .star {
    margin-bottom: 8px;
  }
  .new_right .release {
    margin-bottom: 8px;
  }
  .new_right .select .s1 {
    width: 100%;
    margin-bottom: 2%;
  }
  .new_right .select .s2 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #new {
    padding: 12px 12px 0 12px;
  }
  .new {
    padding: 0;
  }
  .new .row {
    padding: 0 12px;
  }
  .new h2 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .new_right {
    padding: 14px;
  }
  .new_right .title {
    font-size: 18px;
  }
  .new_right .btn a {
    padding: 5px 20px 5px 20px;
    margin-top: 4%;
  }
}
