.product-list-item {
  margin-bottom: 20px;
}
.product-list-item-container .product-list-item:last-of-type {
  margin-bottom: 0;
}
.list-nav-title {
  margin-bottom: 10px;
}
.product-list-item-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.list-nav {
  position: relative;
}
.list-nav li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #565656;
  padding-left: 15px;
  position: relative;
  margin-bottom: 4px;
}
.list-nav li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #565656;
  border-radius: 100%;
}

.record-list {
  margin-bottom: 24px;
}

.record-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d3d3d3;
}
.year-link {
  font-size: 16px;
  line-height: 21px;
}
.record-quarter-container {
  display: flex;
  gap: 20px;
}
.record-year-link {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  background-color: #eef2f6;
  border-radius: 6px;
}
.record-row {
  margin-bottom: -24px;
}
.record-container {
  background-color: #eef2f6;
  padding: 24px 22px;
  border-radius: 8px;
  height: 100%;
}
.record-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 18px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.record-container .record-link:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 2px;

}
.record-container h3 {
    margin-bottom:20px;
  }
.img-container {
  padding-right: 12px;
}
.record-link .icon-arrow {
  background-color: #1a1b1c;
}
.record-link:hover .icon-arrow {
  transform: translateX(6px);
  background-color: #00457c;
}

@media (max-width: 991px) {
  .list-nav li,
  p > a {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 2px;
  }
  .product-list-item {
    margin-bottom: 16px;
  }
  .record-container {
    padding: 22px 16px;
  }
  .record-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 16px;
}
}
@media (max-width: 767px) {
  .product-list-item {
    margin-bottom: 12px;
  }
  .glance-section .nav-item {
    padding-bottom: 6px;
  }
  .glance-section .nav-pills {
    gap: 20px;
  }
  .list-nav li {
    padding: 0;
  }
  .record-container {
    padding: 16px;
}
}

@media (max-width: 575px) {
  .list-nav li {
    width: 50%;
  }
  .record-quarter-container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }
  .record-header {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .glance-section .nav-item .nav-link {
    font-size: 14px;
    line-height: 20px;
  }
  .list-nav li {
    width: 100%;
  }
  .record-container h3 {
    margin-bottom: 14px;
}
}
