/* ==========================================================================
   NTT – Policy Layout (Sidebar Left + Content Right)
   ========================================================================== */

/* Base container */
.ntt-policy-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

/* Sidebar */
.ntt-policy-sidebar {
  background: var(--primary-bg, #001d66);
  border-radius: 12px;
  padding: 24px 20px;
  flex: 0 0 320px;
}

.ntt-policy-sidebar h2 {
  color: #111;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Menu list */
.ntt-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ntt-policy-item + .ntt-policy-item {
  margin-top: 6px;
}

.ntt-policy-link {
  display: block;
  font-size: 1.4rem;
  padding: 10px 14px;
  /*border-radius: 8px;*/
  text-decoration: none;
  font-weight: 500;
  color: #111;
  background: transparent;
  transition: all .25s ease;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--primary-color);
  border-style: dashed;
}

.ntt-policy-link:hover {
  /*background: rgba(255,255,255,0.1);*/
   background: #ff531052 ;
  /*border-color: rgba(255,255,255,0.15);*/
  transform: translateX(2px);
}

.ntt-policy-item.is-active .ntt-policy-link {
  background: var(--primary-color-2, #ff5310);
  color: #fff;
  border-radius: 8px;
  border-color: var(--primary-color-2, #ff5310);
  font-weight: 700;
}

/* Content */
.ntt-policy-content {
  flex: 1;
  padding: 0 10px;
}

.ntt-policy-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color, #001d66);
  margin-bottom: 1.25rem;
}

.ntt-policy-content h2,
.ntt-policy-content h3 {
  color: var(--primary-color, #001d66);
  margin-top: 1.5rem;
}

.ntt-policy-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Layout desktop */
@media (min-width: 992px) {
  .ntt-policy-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .ntt-policy-sidebar {
    position: sticky;
    top: 205px;
    align-self: start;
  }
  .ntt-policy-content {
    max-width: 880px;
  }
}

/* Responsive Mobile */
@media (max-width: 991px) {
  .ntt-policy-sidebar {
    width: 100%;
  }
  .ntt-policy-link {
    text-align: left;
  }
}
