/* ==========================================================================
   CNCPIC Sectoare Entitati Critice Block
   ========================================================================== */
/* Wrapper full-width cu fundal crem (#f0e8d8) ca si hero */
.sectoare-wrapper {
  background: #f0e8d8;
  width: 100%;
  box-sizing: border-box;
}
/* Container 1280px, padding 20px lateral */
.sectoare__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 20px;
  box-sizing: border-box;
}
/* Layout 2 coloane: stanga fixa ~290px, dreapta flex*/
.sectoare__layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
/* ══ COLOANA STANGA ═══════════════════════════════════════════════════════ */
.sectoare__left {
  flex: 0 0 290px;
  min-width: 0;
}
/* Supra-label: "CADRU SECTORIAL" - mic, uppercase, auriu */
.sectoare__supra {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a07830;
  margin-bottom: 14px;
  line-height: 1;
}
/* Heading mare serif dark navy */
.sectoare__heading {
  margin: 0 0 20px;
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: #1a2340;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
/* Paragraf italic muted */
.sectoare__body {
  margin: 0 0 28px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #556070;
  line-height: 1.7;
}
/* Link subliniat in stanga jos */
.sectoare__link {
  display: inline-block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.875rem;
  color: #1a2340;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  cursor: pointer;
}
.sectoare__link:hover,
.sectoare__link:focus {
  color: #1569b0;
}
/* ══ COLOANA DREAPTA: lista sectoare ═════════════════════════════════════ */
.sectoare__right {
  flex: 1 1 0;
  min-width: 0;
}

/* ══ TABS REC / PIC ══════════════════════════════════════════════════════ */
.sectoare__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid #d8cfc4;
}
.sectoare__tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 28px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #556070;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.sectoare__tab-btn:hover,
.sectoare__tab-btn:focus {
  color: #1a2340;
  outline: none;
}
.sectoare__tab-btn.active {
  color: #1a2340;
  border-bottom-color: #a07830;
}

/* Tab panes — hidden by default, visible when .active */
.sectoare__tab-pane {
  display: none;
}
.sectoare__tab-pane.active {
  display: block;
}
/* Lista fara bullet-uri */
.sectoare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d8cfc4;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}
/* Fiecare rand */
.sectoare__item {
  border-bottom: 1px solid #e8e0d5;
}
.sectoare__item:last-child {
  border-bottom: none;
}
/* Link (sau div) - layout flexbox pe rand */
.sectoare__item-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  background: #ffffff;
  transition: background 0.15s ease;
  gap: 20px;
  min-height: 72px;
  box-sizing: border-box;
}
.sectoare__item-link:hover,
.sectoare__item-link:focus {
  background: #faf7f2;
}
/* Numar auriu italic bold (01, 02...) */
.sectoare__num {
  flex: 0 0 40px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: #a07830;
  line-height: 1;
  text-align: right;
  align-self: center;
}
/* Titlu + descriere */
.sectoare__item-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sectoare__item-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.975rem;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.35;
}
.sectoare__item-desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.82rem;
  color: #7a9ab8;
  line-height: 1.4;
}
/* Sageata dreapta */
.sectoare__arrow {
  flex: 0 0 auto;
  font-size: 1rem;
  color: #555;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.sectoare__item-link:hover .sectoare__arrow,
.sectoare__item-link:focus .sectoare__arrow {
  transform: translateX(3px);
  color: #1a2340;
}
/* ==========================================================================
   Responsive
   ========================================================================== */
/* Tablete: 2 coloane se stivuiesc */
@media (max-width: 900px) {
  .sectoare__layout {
    flex-direction: column;
    gap: 36px;
  }
  .sectoare__left {
    flex: none;
    width: 100%;
  }
}
/* Mobil */
@media (max-width: 560px) {
  .sectoare__inner {
    padding: 48px 20px;
  }
  .sectoare__item-link {
    padding: 14px 16px;
    min-height: 60px;
  }
  .sectoare__num {
    flex: 0 0 32px;
    font-size: 0.9rem;
  }
}
