.tab-navigation {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  overflow: hidden;
}
.tab {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  text-align: left;
  padding: 15px 25px;
  border: none;
  border-bottom: 2px solid var(--border-light);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  transition: all 0.3s ease;
  min-width: 0;
  background-color: transparent;
}

.tab.active {
  border-bottom: 2px solid var(--secondary-green-600);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.page-heading,
.page-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  color: var(--text-light);
  padding: 16px 0;
}

.page-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.page-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: left;
}

.info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 15px;
}
.author,
.date,
.time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-black);
}

@media (max-width: 768px) {
  .tab-navigation {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 0;
  }

  .tab-navigation::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 14px;
  }

  .page-heading,
  .page-title {
    font-size: 18px;
    line-height: 28px;
  }

  .page-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .page-text {
    font-size: 12px;
    line-height: 16px;
  }

  .author,
  .date,
  .time {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 16px;
  }
}
