/* =======================================================
   veille.css — Page Veille technologique
   ======================================================= */

.inner {
  max-width: 100%;
  margin: 0;
  padding: 5rem 4rem;
}

/* -------------------------------------------------------
   LABELS DE SECTION
   ------------------------------------------------------- */
.v-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  margin-top: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.v-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* -------------------------------------------------------
   SOURCES
   ------------------------------------------------------- */
.v-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.v-sources span {
  font-size: 0.6rem;
  padding: 0.12rem 0.45rem;
  border-radius: 3px;
  border: 1px solid var(--border2);
  color: var(--muted);
}

/* -------------------------------------------------------
   ARTICLE PRINCIPAL
   ------------------------------------------------------- */
.art-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border2);
}

.art-main__left {
  background: var(--card);
  padding: 1.6rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.art-main__left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--indigo);
}

.art-main__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.art-main__desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.art-main__stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.v-stat {
  display: flex;
  flex-direction: column;
}

.v-stat__num {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.v-stat__label {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.15rem;
  max-width: 110px;
  line-height: 1.4;
}

.art-main__right {
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.art-sub {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  flex: 1;
}

.art-sub:last-child { border-bottom: none; }

.art-sub__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.art-sub__desc {
  font-size: 0.7rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* -------------------------------------------------------
   GRILLE APPROFONDISSEMENTS
   ------------------------------------------------------- */
.v-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.v-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--vc);
  transition: background .2s, transform .2s var(--ease);
}

.v-card:hover {
  background: var(--card-hov);
  transform: translateX(3px);
}

.v-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.v-card__desc {
  font-size: 0.73rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* -------------------------------------------------------
   ANALYSE PERSONNELLE
   ------------------------------------------------------- */
.v-analyse {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1.5rem;
  border-top: 3px solid #b464ff;
  margin-bottom: 2rem;
}

.v-analyse__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.v-analyse__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.v-analyse__item {
  background: var(--surface);
  border-radius: 6px;
  padding: 0.9rem;
}

.v-analyse__item-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.v-analyse__item-desc {
  font-size: 0.7rem;
  color: var(--text-2);
  line-height: 1.6;
}
/* -------------------------------------------------------
   PANNEAU SOURCES
   ------------------------------------------------------- */
.v-sources-panel {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.vsrc-group__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.vsrc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vsrc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  width: 100px;
  transition: transform .2s var(--ease);
}
.vsrc-card:hover { transform: translateY(-3px); }

.vsrc-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  border: 1px solid rgba(255,255,255,0.08);
}

.vsrc-logo--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}
.vsrc-logo--grid span {
  border-radius: 1px;
  aspect-ratio: 1;
}

.vsrc-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.vsrc-desc {
  font-size: 0.58rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
  
/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 1000px) {
  .art-main { grid-template-columns: 1fr; }
  .art-main__left::before { display: none; }
  .art-main__right { border-top: 1px solid var(--border); }
  .v-grid { grid-template-columns: 1fr; }
  .v-analyse__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .inner { padding: 3rem 2rem; }
}

@media (max-width: 700px) {
  .vsrc-row { gap: 0.5rem; }
  .vsrc-card { width: 80px; }
  .vsrc-logo { width: 50px; height: 50px; }
}
