/* ========================================
   PAGE LAYOUT
   ======================================== */
.page {
  background-color: var(--color-white);
  width: 100%;
  max-width: 1920px;
  min-height: 100vh;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ========================================
   SECTION TABS & LINES
   ======================================== */
.section-tabs {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  width: 100%;
}

.section-tabs__title {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 27px;
  letter-spacing: 0;
  line-height: 30px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.section-tabs__title--active {
  opacity: 1;
}

.section-tabs__title--inactive {
  opacity: 0.4;
}

.section-tabs__title.active {
  opacity: 1;
}

/* Tab Content */
.tab-content {
  width: 100%;
  position: relative;
}

.tab-pane {
  width: 100%;
}

.section-line {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 15px;
}

.section-line__full {
  width: 100%;
  height: 2px;
  display: block;
}

.section-line__active {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  display: block;
  transition: all 0.3s ease;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.breadcrumb-link {
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-text);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--color-text);
  font-size: 14px;
  opacity: 0.5;
}

.breadcrumb-current {
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-black);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
}

.breadcrumb-nav__link {
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-text);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav__link:hover {
  color: var(--color-primary);
}

.breadcrumb-nav__separator {
  font-family: var(--font-regular);
  color: var(--color-text);
  font-size: 14px;
  opacity: 0.5;
}

.breadcrumb-nav__current {
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 14px;
}
