body {
  background-color: #f4f4f4;
}

.detail-left-wrapper {
  height: 100%;
}
.detail-left-wrapper .layer {
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.detail-left-wrapper .first-layer {
  background-color: #f0f0f0;
}
.detail-left-wrapper .first-layer .second-layer {
  background-color: #fff;
}
.detail-left-wrapper .first-layer .second-layer .main-layer {
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

.detail-middle-wrapper {
  height: 100%;
  display: flex;
}
.detail-middle-wrapper .left-margin {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top: 1px solid #ededed;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, #ededed, #fff);
}
.detail-middle-wrapper .right-margin {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, #ededed, #fff);
}

.detail-right-wrapper {
  height: 100%;
  background-color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.detail-right-wrapper .image-news-list-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.detail-right-wrapper .image-news-list-wrapper .title {
  padding: 8px 0;
}

.nav-column-title .title {
  color: #005197;
  font-size: 1.375rem;
  margin-bottom: 5px;
}

@media only screen and (max-width: 991.9px) {
  .detail-left-wrapper .layer {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .detail-left-wrapper .main-layer {
    border-right: 1px solid #f0f0f0;
  }
  .detail-right-wrapper {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}