.news-year-filter__select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.news-banner {
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
.news-banner .news-banner-content {
  position: absolute;
  top: 35%;
  max-width: 1660px;
  margin: 0 auto;
}
.news-banner .news-banner-content .news-search-container {
  margin-top: 60px;
}
.news-banner h3 ,.news-banner h1{
  font-weight: bold;
  font-size: 80px;
  color: #087FE7;
  line-height: 88px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.news-banner .news-search-container {
  display: flex;
  align-items: center;
  width: 900px;
  margin-top: 20px;
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 76px;
}
.news-banner .news-search-container .news-search-input {
  width: 85%;
  min-height: 76px;
  padding: 0 20px;
  border: none;
  font-size: 16px;
  border-radius: 60px;
}
.news-banner .news-search-container .news-search-input::placeholder {
  color: #999;
}
.news-banner .news-search-container .news-search-input:focus {
  outline: none;
}
.news-banner .news-search-container .news-search-button {
  width: 15%;
  padding: 24px;
  margin: 0 8px 0 0;
  border: none;
  border-radius: 60px;
  background: #0066FF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.news-banner .news-search-container .news-search-button:hover {
  background: #0052cc;
}
.news-banner .news-search-container .news-search-button img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.news-filters {
  display: flex;
  gap: 20px;
}
.news-year-filter {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 200px;
}
.news-year-filter__label {
  color: #495057;
  font-size: 15px;
  margin-right: 15px;
  font-weight: 500;
  min-width: 90px;
}
.news-year-filter__select {
  flex: 1;
  min-width: 80px;
  border: none;
  background: transparent;
  color: #087FE7;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 25px;
  padding-left: 10px;
  appearance: none;
  outline: none;
  text-align: center;
  text-align-last: center;
  position: relative;
  z-index: 2;
}
.news-year-filter__select:focus {
  color: #0665b8;
}
.news-year-filter__select::-ms-expand {
  display: none;
}
.news-year-filter__select option {
  background: white;
  color: #495057;
  padding: 12px 15px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  border: none;
  box-sizing: border-box;
}
.news-year-filter__select option:hover,
.news-year-filter__select option:focus {
  background: #f8f9fa;
  color: #087FE7;
}
.news-year-filter::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #087FE7;
  border-bottom: 2px solid #087FE7;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;
  z-index: 1;
}
.news-year-filter:focus-within::after {
  transform: translateY(-25%) rotate(225deg);
}
.news-category-filter {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 280px;
}
.news-category-filter__label {
  color: #495057;
  font-size: 15px;
  margin-right: 15px;
  font-weight: 500;
  min-width: 80px;
}
.news-category-filter__select {
  flex: 1;
  min-width: 140px;
  border: none;
  background: transparent;
  color: #087FE7;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 25px;
  padding-left: 10px;
  appearance: none;
  outline: none;
  text-align: center;
  text-align-last: center;
  position: relative;
  z-index: 2;
}
.news-category-filter__select:focus {
  color: #0665b8;
}
.news-category-filter__select:focus + .news-category-filter::after {
  transform: translateY(-25%) rotate(225deg);
}
.news-category-filter__select[aria-expanded="true"] {
  background: rgba(8, 127, 231, 0.05);
}
.news-category-filter__select::-ms-expand {
  display: none;
}
.news-category-filter__select option {
  background: white;
  color: #495057;
  padding: 12px 15px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  border: none;
  box-sizing: border-box;
}
.news-category-filter__select option:hover,
.news-category-filter__select option:focus {
  background: #f8f9fa;
  color: #087FE7;
}
.news-category-filter::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #087FE7;
  border-bottom: 2px solid #087FE7;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;
  z-index: 1;
}
.news-category-filter:focus-within::after {
  transform: translateY(-25%) rotate(225deg);
}
.latest-news {
  display: flex;
  flex-direction: column;
  margin-top: 107px;
}
.latest-news h2 {
  font-size: 60px;
  color: #1A1A1A;
  line-height: 80px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 66px 0 3% 0;
}
.latest-news-container {
  display: flex;
  gap: 20px;
}
.latest-news-text {
  width: 611px;
  padding: 51px 30px 40px 37px;
  background: #F0F4F7;
  border-radius: 0px 0px 0px 0px;
  background-color: rgba(240, 244, 247, 0.8);
  box-sizing: border-box;
}
.latest-news-text-top {
  font-weight: bold;
  font-size: 36px;
  color: #1E2020;
  margin-bottom: 54px;
}
.latest-news-text-middle {
  display: flex;
  margin-bottom: 40px;
}
.latest-news-text-middle-left {
  width: 80px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #54B5EA;
  border-radius: 4px 4px 4px 4px;
}
.latest-news-text .latest-news-text-middle:nth-of-type(2) .latest-news-text-middle-left {
  width: 80px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8FD3F2;
  border-radius: 4px 4px 4px 4px;
}
.latest-news-text .latest-news-text-middle:nth-of-type(3) .latest-news-text-middle-left {
  width: 80px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #265680;
  border-radius: 4px 4px 4px 4px;
}
.latest-news-text-middle-right {
  margin-left: 28px;
}
.latest-news-text-middle-right-top {
  height: 33px;
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  margin: 11px 0 9px 0;
}
.latest-news-text .latest-news-text-middle:nth-of-type(2) .latest-news-text-middle-right-top {
  height: 33px;
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  margin: 11px 0 9px 0;
}
.latest-news-text .latest-news-text-middle:nth-of-type(3) .latest-news-text-middle-right-top {
  height: 33px;
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  margin: 11px 0 9px 0;
}
.latest-news-text-middle-right a {
  display: block;
  width: 151px;
  height: 25px;
  font-weight: 400;
  font-size: 18px;
  color: #087FE7;
  line-height: 25px;
  margin-top: 9px;
  text-decoration: underline;
}
.latest-news-text-middle-right a:hover {
  color: #00B738;
}
.latest-news-text-bottom {
  margin-top: 84px;
}
.latest-news-text-bottom-1 {
  font-weight: bold;
  font-size: 36px;
  color: #1E2020;
  line-height: 34px;
}
.latest-news-text-bottom-2 {
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  line-height: 40px;
  margin-top: 31px;
}
.latest-news-text-bottom-3 {
  font-weight: 400;
  font-size: 18px;
  color: #087FE7;
  line-height: 34px;
  text-decoration-line: underline;
  margin-top: 12px;
}
.latest-news-text-bottom-3:hover {
  color: #00B738;
}
.latest-news-list-top {
  font-weight: bold;
  font-size: 50px;
  color: #1A1A1A;
  line-height: 80px;
  margin-top: 11px;
  margin-bottom: 20px;
}
.latest-news-list {
  width: 50%;
  margin-left: 135px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #F0EDEB;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-item .news-date {
  width: 104px;
  height: 104px;
  background: #FCFBFA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.news-item .news-date .news-day {
  font-size: 24px;
  color: #888888;
  line-height: 1.2;
}
.news-item .news-date .news-month {
  font-size: 14px;
  color: #888888;
  margin-top: 4px;
}
.news-item .news-content {
  flex: 1;
  min-width: 0;
}
.news-item .news-content .news-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}
.news-item:hover .news-text {
  color: #087FE7;
}
.news-item:hover .news-date .news-day,
.news-item:hover .news-date .news-month {
  color: #333 !important;
}
.news-item:first-child {
  padding-top: 0;
}
.markets-speak {
  margin-top: 150px;
}
.markets-speak .markets-speak-title {
  margin-bottom: 66px;
  font-size: 60px;
  color: #1A1A1A;
  line-height: 80px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.markets-speak .markets-speak-card {
  display: flex;
  overflow: hidden;
  border: 1px solid #CCCCCC;
  margin-top: 44px;
}
.markets-speak .markets-speak-card .markets-speak-card-left {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
}
.markets-speak .markets-speak-card .markets-speak-card-left img {
  width: 100%;
  border-radius: 5px;
  max-height: 100%;
}
.markets-speak .markets-speak-card .markets-speak-card-right {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-date {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
}
.markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-heading {
  font-size: 22px;
  color: #1C1F1F;
  line-height: 40px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-heading:hover {
  color: #087FE7;
}
.markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-description {
  margin-top: 12px;
  font-weight: 400;
  font-size: 16px;
  color: #929292;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.markets-speak .markets-speak-card .markets-speak-card-button {
  display: flex;
  align-items: flex-end;
}
.markets-speak .markets-speak-card .markets-speak-card-button .markets-speak-button {
  display: inline-block;
  padding: 10px 15px;
  color: #2788FF;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  border: 1px solid #2788FF;
  transition: all 0.3s;
}
.markets-speak .markets-speak-card .markets-speak-card-button .markets-speak-button:hover {
  background: #2788FF;
  color: #fff;
}
.view-more {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.view-more i {
  width: 12px;
  height: 12px;
  display: block;
  border: 1px solid #fff;
  margin-right: 20px;
  border-left: none;
  border-top: none;
  position: relative;
  transform: rotate(45deg);
}
.view-more i::after {
  position: absolute;
  content: "";
  right: -6px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  display: block;
  border: 1px solid #fff;
  border-left: none;
  border-top: none;
}
.view-more a {
  display: inline-flex;
  padding: 12px 36px;
  background: #087FE7;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.view-more a:hover {
  background: #02C06C;
}
@media screen and (max-width: 1720px) {
  .news-banner {
    min-height: 650px;
  }
}
@media screen and (max-width: 1620px) {
  .news-banner {
    min-height: 600px;
  }
}
@media screen and (max-width: 1480px) {
  .news-banner {
    min-height: 500px;
  }
  .news-banner h3 .news-banner h1{
    font-size: 60px;
    line-height: 70px;
  }
  .latest-news-list-top {
    font-size: 40px;
    line-height: 60px;
  }
  .markets-speak .markets-speak-title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .news-banner {
    min-height: 400px;
  }
  .news-banner h3  ,.news-banner h1{
    font-size: 50px;
    line-height: 60px;
  }
  .news-banner .news-search-container {
    width: 700px;
    min-height: 60px;
  }
  .news-banner .news-search-container .news-search-input {
    min-height: 60px;
  }
  .news-banner .news-search-container .news-search-button {
    padding: 18px;
  }
  .latest-news-container {
    flex-direction: column;
  }
  .latest-news-text {
    width: 100%;
  }
  .latest-news-list {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .markets-speak-card {
    flex-direction: column;
  }
  .markets-speak-card .markets-speak-card-left {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .news-banner .news-banner-content .news-search-container {
    margin-top: 20px;
  }
  .news-banner {
    min-height: 250px;
  }
  .news-banner h3  ,.news-banner h1{
    font-size: 36px;
    line-height: 40px;
  }
  .news-banner .news-search-container {
    width: 400px;
    min-height: 50px;
    margin-top: 30px;
  }
  .news-banner .news-search-container .news-search-input {
    min-height: 50px;
    font-size: 14px;
  }
  .news-banner .news-search-container .news-search-button {
    padding: 15px;
  }
  .news-banner .news-search-container .news-search-button img {
    width: 16px;
    height: 16px;
  }
  .news-filters {
    gap: 10px;
  }
  .latest-news {
    margin-top: 60px;
  }
  .latest-news-text-top,
  .latest-news-text-bottom-1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .latest-news-text-middle-right-top,
  .latest-news-text-bottom-2 {
    font-size: 20px;
    line-height: 30px;
  }
  .latest-news-text-middle-right a,
  .latest-news-text-bottom-3 {
    font-size: 14px;
    line-height: 20px;
  }
  .latest-news-list-top {
    font-size: 36px;
    line-height: 40px;
  }
  .news-item .news-content .news-text {
    font-size: 14px;
    line-height: 1.4;
  }
  .news-item .news-date {
    width: 80px;
    height: 80px;
  }
  .markets-speak {
    margin-top: 80px;
  }
  .markets-speak-card-right .markets-speak-heading {
    font-size: 18px;
    line-height: 24px;
  }
  .markets-speak-card-right .markets-speak-description {
    font-size: 14px;
    line-height: 20px;
  }
  .view-more a {
    padding: 10px 25px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .latest-news-text-top,
  .latest-news-text-bottom-1 {
    font-size: 20px;
  }
  .latest-news-text-middle-right-top,
  .latest-news-text-bottom-2,
  .latest-news-text .latest-news-text-middle:nth-of-type(2) .latest-news-text-middle-right-top,
  .latest-news-text .latest-news-text-middle:nth-of-type(3) .latest-news-text-middle-right-top {
    font-size: 16px;
  }
  .news-filters {
    flex-direction: column;
  }
  .markets-speak .markets-speak-card .markets-speak-card-left {
    padding: 0;
  }
  .markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-heading {
    font-size: 16px;
    line-height: 30px;
  }
  .markets-speak .markets-speak-card .markets-speak-card-right .markets-speak-description {
    font-size: 14px;
  }
  .news-banner .news-banner-content .news-search-container {
    width: 300px;
  }
}
