/* ============================================================
   Download Pages — Shared Table & Card Styles
   Reusable across download25-in.html, download25-do.html, etc.
   ============================================================ */

/* --- Platform Cards --- */
.platform-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.platform-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.platform-card-header .platform-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.platform-card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
}
.platform-card-body {
  padding: 1.25rem;
}
.platform-card-body .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.platform-card-body .col-md-4,
.platform-card-body .col-md-8 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* --- Download Links --- */
.dl-link-block {
  margin-bottom: 1rem;
}
.dl-link-block:last-child {
  margin-bottom: 0;
}
.dl-link-block a {
  font-weight: 500;
  color: #fc8d4f;
}
.dl-link-block a:hover {
  color: #ff7a2e;
  text-decoration: underline;
}
.dl-link-desc {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.15rem;
}

/* --- Installation Notes --- */
.install-notes ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.install-notes li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.install-notes li:last-child {
  margin-bottom: 0;
}
.install-notes b,
.install-notes strong {
  color: #212529;
}

/* --- Linux-specific disclaimer card --- */
.linux-disclaimer {
  border: 1px solid #ffc107;
  background: #fffbeb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.linux-disclaimer .disclaimer-title {
  font-weight: 600;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.linux-disclaimer p {
  font-size: 0.875rem;
  color: #78350f;
  margin-bottom: 0.4rem;
  line-height: 1.55;
}
.linux-disclaimer p:last-child {
  margin-bottom: 0;
}

/* --- Feature comparison mini-table --- */
.feature-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.feature-table th,
.feature-table td {
  padding: 0.4rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.feature-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  width: 35%;
}
.feature-table td {
  color: #212529;
}
.check-yes {
  color: #198754;
  font-weight: 600;
}
.check-no {
  color: #dc3545;
  font-weight: 600;
}

/* --- Certification badge row --- */
.cert-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  color: #6c757d;
  background: #f1f3f5;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}
.cert-badge i {
  font-size: 1rem;
  color: #2487cf;
}

/* --- Version info line --- */
.version-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.version-info b {
  color: #212529;
}

/* --- Responsive tweaks --- */
@media (max-width: 767px) {
  .platform-card-body .row {
    flex-direction: column;
  }
  .platform-card-body .col-md-4,
  .platform-card-body .col-md-8 {
    margin-bottom: 1rem;
  }
}
