/* ═══ Threat Analysis Page ═══ */
.ta-page {
  color: #333;
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* ── Section ── */
.ta-section {
  padding: 60px 0;
}

.ta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Card Grid ── */
.ta-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ta-card {
  background: #fff;
  border: 1px solid #dde3eb;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.ta-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.ta-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Card Header (dark bg) ── */
.ta-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 20px;
  background: #2d3a4a;
  min-height: 90px;
}

.ta-card-link:hover .ta-card-header {
  background: #1e2c3a;
}

.ta-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: transparent;
  transition: background 0.2s ease;
}

.ta-card-link:hover .ta-card-icon {
  background: #c2002f;
}

.ta-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.ta-card-link:hover .ta-card-icon img {
  opacity: 1;
}

.ta-card-title-wrap {
  flex: 1;
}

.ta-card-title-wrap h2 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* ── Card Body ── */
.ta-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ta-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ta-card-date {
  font-size: 13px;
  color: #c2002f;
  margin-bottom: 10px;
  font-weight: 500;
}

.ta-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  flex: 1;
}

.ta-card-desc p {
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ta-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ta-container {
    padding: 0 20px;
  }

  .ta-card-list {
    grid-template-columns: 1fr;
  }

  .ta-card-title-wrap h2 {
    font-size: 14px;
  }
}