/* ============================================================
   article-trust-panel.css — Research & Validation Team Panel
   + Article Insight Banner + Continue Exploring + Back Button
   Neodustria design system: dark glass, electric blue, glow
   ============================================================ */

/* ── Trust Panel ─────────────────────────────────────────── */
.art-trust-panel {
  margin-top: 28px;
  background: rgba(4, 10, 24, 0.92);
  border: 1px solid rgba(22, 139, 255, 0.22);
  border-radius: 14px;
  padding: 24px 28px 20px;
  box-shadow:
    0 0 40px rgba(22, 139, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.art-trust-panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.85);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.art-trust-panel-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(22, 139, 255, 0.6);
}

/* ── Person Cards Row ────────────────────────────────────── */
.art-team-row {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.art-team-card {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(22, 139, 255, 0.12);
  margin-right: 20px;
}

.art-team-card:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.art-team-avatar-wrap {
  flex-shrink: 0;
}

.art-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(22, 139, 255, 0.40);
  display: block;
  background: rgba(22, 139, 255, 0.08);
}

.art-team-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.art-team-responsibility {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.9);
  line-height: 1;
}

.art-team-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.art-team-role {
  font-size: 11.5px;
  color: rgba(169, 184, 200, 0.65);
  line-height: 1.3;
}

.art-team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(22, 139, 255, 0.12);
  border: 1px solid rgba(22, 139, 255, 0.25);
  color: rgba(22, 139, 255, 0.85);
  font-size: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}

.art-team-linkedin:hover {
  background: rgba(22, 139, 255, 0.22);
  border-color: rgba(22, 139, 255, 0.5);
  box-shadow: 0 0 10px rgba(22, 139, 255, 0.3);
  color: #fff;
}

/* ── Trust Badges Row ────────────────────────────────────── */
.art-trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 139, 255, 0.10);
}

.art-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(169, 184, 200, 0.70);
  background: rgba(22, 139, 255, 0.05);
  border: 1px solid rgba(22, 139, 255, 0.10);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}

.art-trust-badge i {
  color: rgba(22, 139, 255, 0.75);
  font-size: 10px;
}

/* ── Premium Back Button ─────────────────────────────────── */
.art-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: rgba(4, 10, 24, 0.80);
  border: 1px solid rgba(22, 139, 255, 0.30);
  border-radius: 8px;
  color: rgba(169, 184, 200, 0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s,
    color 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.art-back-btn i {
  font-size: 12px;
  color: rgba(22, 139, 255, 0.80);
  transition: transform 0.25s, color 0.25s;
}

.art-back-btn:hover {
  background: rgba(22, 139, 255, 0.08);
  border-color: rgba(22, 139, 255, 0.55);
  box-shadow: 0 0 20px rgba(22, 139, 255, 0.18), inset 0 0 12px rgba(22, 139, 255, 0.04);
  color: #ffffff;
}

.art-back-btn:hover i {
  transform: translateX(-3px);
  color: rgba(22, 139, 255, 1);
}

/* ── Article Insight Banner ──────────────────────────────── */
.art-insight-banner {
  display: flex;
  margin-top: 28px;
  background: rgba(4, 10, 24, 0.95);
  border: 1px solid rgba(22, 139, 255, 0.32);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 48px rgba(22, 139, 255, 0.10),
    0 0 0 1px rgba(22, 139, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: box-shadow 0.35s, border-color 0.35s;
}

.art-insight-banner:hover {
  box-shadow:
    0 0 80px rgba(22, 139, 255, 0.22),
    0 0 0 1px rgba(22, 139, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  border-color: rgba(22, 139, 255, 0.58);
}

.art-insight-icon-col {
  width: 152px;
  flex-shrink: 0;
  background: rgba(2, 5, 14, 0.97);
  border-right: 1px solid rgba(22, 139, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.art-insight-icon-col::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 139, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.art-insight-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 10px rgba(22, 139, 255, 0.85))
    drop-shadow(0 0 24px rgba(22, 139, 255, 0.45));
  transition: filter 0.35s;
}

.art-insight-banner:hover .art-insight-icon {
  filter:
    drop-shadow(0 0 16px rgba(22, 139, 255, 1))
    drop-shadow(0 0 36px rgba(22, 139, 255, 0.60));
}

.art-insight-content {
  flex: 1;
  padding: 32px 40px 32px 36px;
  position: relative;
  min-width: 0;
}

/* Circuit dot grid — top-right decoration */
.art-insight-content::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 16px;
  width: 88px;
  height: 66px;
  background-image:
    radial-gradient(circle, rgba(22, 139, 255, 0.28) 1.2px, transparent 1.2px);
  background-size: 11px 11px;
  pointer-events: none;
  opacity: 0.65;
}

.art-insight-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.art-insight-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: rgba(22, 139, 255, 0.60);
}

.art-insight-headline {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.art-insight-body {
  font-size: 14.5px;
  color: rgba(169, 184, 200, 0.72);
  line-height: 1.72;
  margin: 0;
}

.art-insight-body strong {
  color: rgba(220, 230, 245, 0.90);
  font-weight: 600;
}

/* ── Insight Banner Responsive: Tablet ──────────────────── */
@media (max-width: 1024px) {
  .art-insight-icon-col {
    width: 120px;
  }

  .art-insight-icon {
    width: 58px;
    height: 58px;
  }

  .art-insight-content {
    padding: 28px 32px 28px 28px;
  }

  .art-insight-headline {
    font-size: 17px;
  }
}

/* ── Insight Banner Responsive: Mobile ──────────────────── */
@media (max-width: 767px) {
  .art-insight-banner {
    flex-direction: column;
    border-radius: 12px;
  }

  .art-insight-icon-col {
    width: 100%;
    height: 62px;
    border-right: none;
    border-bottom: 1px solid rgba(22, 139, 255, 0.15);
    justify-content: flex-start;
    padding: 0 20px;
    gap: 14px;
  }

  .art-insight-icon-col::before {
    display: none;
  }

  .art-insight-icon {
    width: 38px;
    height: 38px;
  }

  .art-insight-content {
    padding: 22px 20px 26px;
  }

  .art-insight-content::after {
    display: none;
  }

  .art-insight-headline {
    font-size: 16px;
  }

  .art-insight-body {
    font-size: 13.5px;
  }
}

/* ── Continue Exploring Section ──────────────────────────── */
.art-continue-section {
  padding: 60px 0 0;
}

.art-continue-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.85);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-continue-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(22, 139, 255, 0.6);
}

.art-continue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.art-related-card {
  display: flex;
  flex-direction: row;
  background: rgba(4, 10, 24, 0.92);
  border: 1px solid rgba(22, 139, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  min-height: 130px;
}

.art-related-card:hover {
  border-color: rgba(22, 139, 255, 0.42);
  box-shadow: 0 0 24px rgba(22, 139, 255, 0.14);
  transform: translateY(-2px);
}

.art-related-img {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
}

.art-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.art-related-card:hover .art-related-img img {
  transform: scale(1.04);
}

.art-related-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.art-related-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-related-excerpt {
  font-size: 11.5px;
  color: rgba(169, 184, 200, 0.60);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.art-related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.art-related-readtime {
  font-size: 10.5px;
  color: rgba(22, 139, 255, 0.75);
  font-weight: 500;
}

.art-related-arrow {
  font-size: 10px;
  color: rgba(22, 139, 255, 0.65);
  transition: transform 0.2s, color 0.2s;
}

.art-related-card:hover .art-related-arrow {
  transform: translateX(3px);
  color: rgba(22, 139, 255, 1);
}

/* ── Responsive: Tablet (≤1024px) ────────────────────────── */
@media (max-width: 1024px) {
  .art-continue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .art-continue-grid .art-related-card:last-child {
    grid-column: 1 / -1;
  }

  .art-team-row {
    flex-wrap: wrap;
  }

  .art-team-card {
    flex: 0 0 calc(50% - 12px);
    padding-right: 0;
    border-right: none;
    margin-right: 0;
    border-bottom: 1px solid rgba(22, 139, 255, 0.10);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .art-team-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .art-trust-badges {
    gap: 6px;
  }
}

/* ── Responsive: Mobile (≤767px) ─────────────────────────── */
@media (max-width: 767px) {
  .art-trust-panel {
    padding: 18px 16px 16px;
    border-radius: 10px;
  }

  .art-team-row {
    flex-direction: column;
    gap: 0;
  }

  .art-team-card {
    flex: unset;
    width: 100%;
    padding-right: 0;
    border-right: none;
    margin-right: 0;
    border-bottom: 1px solid rgba(22, 139, 255, 0.10);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .art-team-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .art-continue-grid {
    grid-template-columns: 1fr;
  }

  .art-continue-grid .art-related-card:last-child {
    grid-column: auto;
  }

  .art-related-img {
    width: 90px;
  }

  .art-trust-badges {
    gap: 6px;
  }

  .art-trust-badge {
    font-size: 10.5px;
    padding: 4px 10px;
  }

  .art-back-btn {
    font-size: 12.5px;
    padding: 10px 18px;
  }
}
