/* ══════════════════════════════════════════════════
   METALIQUE BLOG ARTICLES — CUSTOM DESIGN SYSTEM
   ══════════════════════════════════════════════════ */

/* ─── Table of Contents ─── */
.mtq-toc {
  background: #f8f9fa;
  border-left: 4px solid #c8102e;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.mtq-toc-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mtq-toc ol {
  margin: 0;
  padding-left: 20px;
}
.mtq-toc ol li {
  margin-bottom: 6px;
}
.mtq-toc ol li a {
  color: #c8102e;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.mtq-toc ol li a:hover {
  color: #1a1a2e;
  text-decoration: underline;
}

/* ─── Pro Tip Box ─── */
.mtq-tip {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-left: 4px solid #2e7d32;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  position: relative;
}
.mtq-tip::before {
  content: "";
  font-size: 20px;
  position: absolute;
  top: 14px;
  left: -14px;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.mtq-tip-title {
  font-weight: 700;
  color: #2e7d32;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.mtq-tip p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Warning Box ─── */
.mtq-warning {
  background: linear-gradient(135deg, #fff3e0 0%, #fbe9e7 100%);
  border-left: 4px solid #e65100;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  position: relative;
}
.mtq-warning::before {
  content: "";
  font-size: 20px;
  position: absolute;
  top: 14px;
  left: -14px;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.mtq-warning-title {
  font-weight: 700;
  color: #e65100;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.mtq-warning p, .mtq-warning ul {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}
.mtq-warning ul {
  margin-top: 8px;
  padding-left: 18px;
}

/* ─── Styled Tables ─── */
.mtq-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-size: 14px;
}
.mtq-table thead th {
  background: #1a1a2e;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mtq-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  color: #333;
}
.mtq-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.mtq-table tbody tr:hover {
  background: #e8eaf6;
}
.mtq-table tbody tr:last-child td {
  border-bottom: none;
}

/* ─── Product Card ─── */
.mtq-product-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.mtq-product-card:hover {
  border-color: #c8102e;
  box-shadow: 0 4px 12px rgba(200,16,46,0.1);
}
.mtq-product-card .mtq-product-icon {
  font-size: 40px;
  flex-shrink: 0;
}
.mtq-product-card .mtq-product-info {
  flex: 1;
}
.mtq-product-card .mtq-product-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
}
.mtq-product-card .mtq-product-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.mtq-product-card .mtq-product-btn {
  display: inline-block;
  background: #c8102e;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mtq-product-card .mtq-product-btn:hover {
  background: #a00d24;
}

/* ─── CTA Banner ─── */
.mtq-cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
}
.mtq-cta-banner h3 {
  color: #fff !important;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.mtq-cta-banner p {
  color: #ccc;
  font-size: 15px;
  margin: 0 0 20px;
}
.mtq-cta-banner .mtq-cta-btn {
  display: inline-block;
  background: #c8102e;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s;
}
.mtq-cta-banner .mtq-cta-btn:hover {
  background: #e8233f;
  transform: translateY(-2px);
}

/* ─── Badge ─── */
.mtq-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
}
.mtq-badge-pro {
  background: #1a1a2e;
  color: #fff;
}
.mtq-badge-best {
  background: #c8102e;
  color: #fff;
}
.mtq-badge-new {
  background: #2e7d32;
  color: #fff;
}

/* ─── Key Figures / Stats ─── */
.mtq-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.mtq-stat-card {
  flex: 1;
  min-width: 140px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  border-top: 3px solid #c8102e;
}
.mtq-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #c8102e;
  margin-bottom: 4px;
}
.mtq-stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .mtq-product-card {
    flex-direction: column;
    text-align: center;
  }
  .mtq-stats {
    flex-direction: column;
  }
  .mtq-cta-banner {
    padding: 24px 16px;
  }
}