/* Custom Counter Styles */
.tv-counter-custom-area {
  background-color: var(--tv-heading-primary);
  padding: 80px 0;
}

.tv-single-counter-custom {
  text-align: center;
  position: relative;
  z-index: 1;
}

.tv-single-counter-custom h5 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.tv-single-counter-custom h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

/* Horizontal separator with dot */
.tv-counter-line {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  margin-top: 30px;
  /* Align with center of numbers roughly or just centered in col */
}

/* Flex separator implementation */
.tv-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tv-counter-item-box {
  text-align: center;
}

.tv-counter-seperator-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 30px;
  position: relative;
  min-width: 50px;
  margin-bottom: 30px;
  /* aligning with the text roughly */
}

.tv-counter-seperator-line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .tv-counter-seperator-line {
    display: none;
  }

  .tv-counter-item-box {
    width: 50%;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .tv-counter-item-box {
    width: 100%;
  }
}

/* Footer Copyright Links */
.tv-copyright-right a {
  color: var(--tv-common-white);
  /* Adjust based on theme text color or white if bg is dark */
  font-size: 16px;
  font-weight: 400;
  transition: .3s;
}

.tv-copyright-right a:hover {
  color: var(--tv-theme-1);
}