.financial-news-section {
  padding: 80px 0;
  /* TAB */
}
.financial-news-section .news-box {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 10px -4px var(--rv-primary);
}
.news-carousel  .item {
  margin: 10px 15px;
}
.financial-news-section .news-box .image {
  position: relative;
}
.financial-news-section .news-box .image .date {
  background: #b89960;
  padding: 0px 8px;
  border-radius: 30px;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: var(--rv-black);
}
.financial-news-section .news-box .image img {
  width: 100%;
  min-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 160px;
}
.financial-news-section .news-box .content {
  padding: 15px;
  height: 130px;
}
.financial-news-section .news-box .content h4 {
  font-size: 16px;
  text-align: left;
  margin: 0;
  margin-bottom: 5px;
}
.financial-news-section .news-box .content p {
  line-height: 18px;
  font-size: 15px;
  text-align: left;
  margin: 0;
}
.financial-news-section .rvTab {
  padding: 0;
  margin-bottom: 20px;
  display: flex;
}
.financial-news-section .rvTab .tab_item {
  display: inline-block;
  width: 100%;
  margin: 0 10px;
}
.financial-news-section .rvTab .tab_item .tab_link {
  display: block;
  padding: 10px 5px;
  font-weight: 600;
  text-align: center;
  color: var(--rv-secondary);
  width: 100%;
  border: 1px dotted #8080802b;
  border-right: 3px solid var(--rv-primary);
  border-bottom: 3px solid var(--rv-primary);
  background: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.financial-news-section .rvTab .tab_item .tab_link:hover {
  color: var(--rv-primary); /* Change text color on hover */
  box-shadow: 0px 3px 8px -2px rgba(0, 0, 0, 0.1); /* Add a subtle shadow on hover */
  box-shadow: 0 1rem 2.5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.1) !important;
  transform: translate3d(0, -3px, 0);
}

.financial-news-section .rvTab .tab_item .tab_link.activelink {
  display: block;
  color: var(--rv-primary);
  background: #fff;
  box-shadow: 0px 3px 8px -2px;
}

.financial-news-section .rvTabContent .tab_list {
  width: 100%;
  padding: 10px;
}
.financial-news-section .rvTabContent .tab_list.hide {
  display: none;
}