/* ==========================================================================
   PRIVACY POLICY EXTENSIONS & SPECIALIZED LAYOUT TABLES
   ========================================================================== */

/* Subheadings for data vectors */
.sub-block-title {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  margin: 25px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Feature Grid for Data Use Definition */
.legal-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 6px;
}

.feature-card h5 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: #446084;
}

.feature-card p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  color: #64748b;
}

/* Legal Framework Informational Tables */
.legal-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  text-align: left;
  font-size: 14px;
}

.legal-data-table th,
.legal-data-table td {
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
}

.legal-data-table th {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 700;
}

.legal-data-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.legal-data-table td strong {
  color: #446084;
}

/* Mobile responsive fixes for privacy tables */
@media (max-width: 768px) {
  .legal-data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
