.dx-link {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .dx-link {
    margin-top: 20px;
    margin-left: 18px;
    padding-bottom: 23px;
    width: 83%;
    position: relative;
  }
}
.dx-link a {
  padding: 10px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  gap: 10px;
  text-decoration: underline;
  background-color: #fff;
}
.dx-link a:hover {
  text-decoration: none;
  opacity: 1;
}
@media (max-width: 750px) {
  .dx-link a {
    padding: 10px 16px 10px 12px;
  }
}
.dx-link-text {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 34px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media (max-width: 750px) {
  .dx-link-text {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.5px;
  }
}
.dx-link-arrow {
  position: relative;
  width: 34px;
  height: 34px;
  background-color: #196bb3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 2px;
}
.dx-link-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(222deg);
  left: 10px;
  position: absolute;
}
@media (max-width: 750px) {
  .dx-link-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .dx-link-arrow::before {
    left: 8px;
  }
}

.noti-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf4fc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 750px) {
  .noti-section {
    padding: 32px 0;
    border-bottom: none;
  }
}

.noti-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .noti-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.noti-label {
  background-color: #196bb3;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 26px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 29px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 750px) {
  .noti-label {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    min-width: unset;
    white-space: normal;
    line-height: 21px;
  }
}

.noti-content {
  padding: 16px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
@media (max-width: 750px) {
  .noti-content {
    padding: 16px 20px;
    width: 100%;
  }
}

.noti-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #333333;
  font-family: inherit;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}

.noti-date {
  font-size: 12px;
  font-weight: 400;
}

.noti-title {
  overflow: hidden;
}
.noti-title .noti-link {
  font-weight: 700;
  font-size: 16px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.noti-title .noti-link:hover {
  color: #0056b3;
}
@media (max-width: 750px) {
  .noti-title .noti-link {
    font-size: 13px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}