.section-breadcrumb {}

.section-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
}

.breadcrumb-item {
  font-size: 14px;
  line-height: 16px;
  color: #929292
}

.breadcrumb-item.active {
  font-weight: 700;
  color: #1428BF;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "";
  background: url(../images/icon-breadcrumb.png) no-repeat 0 0;
  width: 8px;
  height: 12px;
  padding-right: 14px;
  vertical-align: middle;
}

/* News page section start */
.filter-dropdown .dropdown-toggle {
  width: 150px;
  height: 30px;
  background-color: #FFFFFF !important;
  box-shadow: 0px 1.56579px 3.91447px rgba(5, 32, 58, 0.08) !important;
  border-radius: 32px;
  border: 0 !important;
  color: #000000 !important;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.filter-dropdown .dropdown-toggle::after {
  background: url(../images/icon-shorting.png) no-repeat 0 0;
  width: 14px;
  height: 12px;
  content: "";
  border: 0;
  position: absolute;
  left: 25px;
}

.news-page {
  margin-top: 20px;
  margin-bottom: 20px;
}

.news-page h2,
.news-detail-page h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #1428BF;
  margin-bottom: 15px;
}

.new-single-block {
  position: relative;
  margin-top: 30px;
  margin-bottom: 40px;
  border-radius: 13px;
  height: 266px;
  overflow: hidden;
}

.new-single-block-banner {
  background: url(https://colombina.com/uploads/Home/New%20Home/Banner_colombina_homepage_2026_new.png) no-repeat center;
  transition: all 0.3s;
  width: 100%;
  height: 266px;
  position: absolute;
  top: 0;
  background-size: cover;
}

.new-single-block:hover .new-single-block-banner {
  transform: scale(1.1);
}

.new-single-block-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  gap: 10px;
}

.new-single-block-content .category {
  padding: 5px;
  background: #213171;
  border: 1px solid #26377A;
  border-radius: 4px;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #FFFFFF;
}

.new-single-block-content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
}

.new-single-block-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  display: none;
}

.new-single-block-content .btn-view-more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 20px 7px;
  width: 95px;
  height: 29px;
  margin-top: .625rem;
  background: #2D6AF0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}

.new-single-block-content .btn-view-more:hover {
  background: #26377A;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  gap: 2rem;
}

.news-list .news-block {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 250px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(5, 32, 58, 0.1);
  border-radius: 13px;
  overflow: hidden;
}

.news-list .news-block::after {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 100%;
  background-color: transparent;
  transition: all 0.3s;
}

.news-list .news-block:hover:nth-child(4n+1)::after {
  background-color: #609D02;
}

.news-list .news-block:hover:nth-child(4n+2)::after {
  background-color: #4F8CB8;
}

.news-list .news-block:hover:nth-child(4n+3)::after {
  background-color: #AC1F62;
}

.news-list .news-block:hover:nth-child(4n+4)::after {
  background-color: #D68530;
}

.news-block .news-image {
  width: 100%;
  border-radius: 13px 0 0 13px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  position: relative;
}

.news-block .news-image img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}

.news-list .news-block:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 15px;
}

.category {
  display: inline-block;
  padding: 5px;
  background: #213171;
  border: 1px solid #26377A;
  border-radius: 4px;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #FFFFFF;
}

.news-content .date {
  position: absolute;
  right: 15px;
  top: 15px;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #213171;
}

.news-content .news-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #26377A;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content .news-description {
  display: none;
}

.news-content .btn-view-more {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #2D6AF0;
}

.btn--view {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

/* News page section end */

/* News inner page start */
.news-detail-page h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #1428BF;
  margin-bottom: 25px;
}

.news-banner {
  margin-left: -19px;
  margin-right: -19px;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-inner-content {
  max-width: 768px;
  margin: 0 auto 70px;
  font-family: 'Flama';
}

.news-inner-content .category {
  margin-bottom: 25px;
}

.news-inner-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.new-time {
  background: url(../images/icon-clock.svg) no-repeat 0 0;
  padding-left: 28px;
  font-size: 14px !important;
  color: #81838A !important;
  margin-bottom: 15px;
}

.quote {
  font-weight: 700;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #2D6AF0 !important;
  font-style: normal !important;
  font-family: 'Flama' !important;
}

/* News inner page end */

.markets h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #1428BF;
  margin: 10px 0;
}

.markets img {
  max-width: 80%;
  max-height: 100px
}

.news-inner-content .social-corner {
  margin-top: 50px;
}

.social-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #26377A;
  margin-bottom: 15px;
}

.specific__bigBrother {
  object-fit: contain !important;
}

@media(min-width:375px) {
  .news-content .news-title {
    font-size: 14px;
  }
}

@media(min-width:768px) {
  .news-block .news-image {
    border-radius: 23px 0 0 23px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .news-banner {
    border-radius: 23px;
    overflow: hidden;
    margin-bottom: 45px;
    margin-left: 0;
    margin-right: 0;
  }

  .news-page h2,
  .news-detail-page h2 {
    margin-bottom: 30px;
  }

  .new-time {
    margin-bottom: 35px;
  }

  .quote {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .news-inner-content {
    margin: 0 auto 100px;
  }

  .news-inner-content .social-corner {
    margin-top: 80px;
  }
}

@media(min-width:992px) {

  .news-inner-content {
    max-width: 80%;
  }

  .news-page {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  .news-page h2,
  .news-detail-page h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 30px;
  }

  .news-detail-page {
    margin-top: 40px;
    margin-bottom: 80px;
  }

  .new-single-block {
    position: relative;
    margin: 40px 0;
    border-radius: 23px;
    height: 330px;
    overflow: hidden;
  }

  .new-single-block-content {
    padding: 35px 60px;
  }

  .new-single-block-banner {
    height: 330px;
  }

  .new-single-block-content h3 {
    font-size: 24px;
  }

  .new-single-block-content p {
    display: block;
  }

  .news-list .news-block {
    flex-direction: row;
    width: 100%;
    height: 191px;
    border-radius: 23px;
  }

  .news-block .news-image {
    width: 182px;
  }

  .news-block .news-image img {
    width: auto;
  }

  .specific__bigBrother {
    width: 100% !important;
  }

  .news-content {
    position: relative;
    flex: 1;
    padding: 20px 50px 20px 30px;
  }

  .news-content .news-description {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
  }

  .news-content .date {
    right: 60px;
    top: 25px;
  }

  .markets h3 {
    font-size: 45px;
    margin: 30px 0;
  }
}

@media(min-width:1200px) {

  .news-list {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3.5vw;
  }
}

@media (max-width:768px) {
  /* News inner page start */
  .news-detail-page h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #1428BF;
    margin-bottom: 25px;
  }
}