﻿/* Purpose: Product detail page sections — trust strip, FAQ, body typography, TDS (.down) button alignment on mobile.
 * Source: blog_and_pdp_enterprise_audit; responsive.css scoped banner btn margins. Notes: Load after css/responsive.min.css on PDPs. */
/* -- Trust Cert Strip ---------------------------------------------------- */
.trust-cert-strip {
	background: #fff;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	padding: 0.6rem 0;
}
.trust-cert-strip__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.trust-cert-strip__item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 1.25rem;
	border-right: 1px solid #d0dae4;
	font-family: 'IBM Plex Sans', 'Proxima Nova Regular', system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	color: #1a2840;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1;
}
.trust-cert-strip__item:last-child {
	border-right: none;
}
.trust-cert-strip__icon {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	stroke: #0a7abf;
}
@media (max-width: 991px) {
	.trust-cert-strip__item {
		padding: 0.3rem 0.9rem;
		font-size: 0.68rem;
	}
}
@media (max-width: 575px) {
	.trust-cert-strip__list { justify-content: flex-start; }
	.trust-cert-strip__item {
		padding: 0.35rem 0.7rem;
		font-size: 0.65rem;
		border-right: none;
		border-bottom: 1px solid #e8edf2;
		width: 50%;
	}
	.trust-cert-strip__item:nth-child(odd) { border-right: 1px solid #d0dae4; }
	.trust-cert-strip__item:last-child,
	.trust-cert-strip__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
/* -- End Trust Cert Strip ------------------------------------------------- */
/**
 * Purpose: Product-page “Further reading”, FAQ accordion, and prose section titles aligned with body copy (IBM Plex Sans), not loud .section-title banner styling.
 * Source: Antlab PDP UX alignment.
 * Notes: Include after style.css; scoped with .section-title--prose and .pdp-* classes.
 */

/* Match Technical notes / Further reading / FAQ headings to main product copy, not default .section-title display styling */
h2.section-title.section-title--prose {
  font-family: "IBM Plex Sans", "Proxima Nova Regular", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.35;
  color: #111;
  margin-bottom: 1.25rem;
  text-align: center;
  width: 100%;
}

/* Blog link tiles — up to four per row on large screens */
.pdp-further-reading-tiles {
  margin-top: 0.5rem;
  align-items: stretch !important;
}

/* Parent col must be flex so height:100% propagates to the tile anchor (Bootstrap alpha 4 does not do this automatically) */
.pdp-further-reading-tiles > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a.pdp-blog-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 5.5rem;
  height: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-family: "IBM Plex Sans", "Proxima Nova Regular", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

a.pdp-blog-tile:hover,
a.pdp-blog-tile:focus {
  border-color: #00adef;
  box-shadow: 0 6px 20px rgba(0, 173, 239, 0.12);
  color: #0077a8;
  text-decoration: none;
}

/* FAQ accordion — full container width to match Further Reading tiles above it */
.pdp-faq-accordion {
  margin-top: 0.5rem;
  max-width: 100%;
}

.pdp-faq-accordion .pdp-faq-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.pdp-faq-accordion .pdp-faq-card__header {
  padding: 0;
  background: #fafafa;
  border-bottom: none;
}

.pdp-faq-accordion .pdp-faq-card__header h3 {
  font-family: "IBM Plex Sans", "Proxima Nova Regular", system-ui, sans-serif;
  font-size: 1rem;
}

.pdp-faq-accordion a.pdp-faq-question {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-right: 2.25rem;
}

.pdp-faq-accordion a.pdp-faq-question::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: #00adef;
  font-weight: normal;
  transition: transform 0.2s ease;
}

.pdp-faq-accordion a.pdp-faq-question:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.pdp-faq-accordion a.pdp-faq-question:hover,
.pdp-faq-accordion a.pdp-faq-question:focus {
  background: #f0f9fc;
  color: #000;
  text-decoration: none;
}

.pdp-faq-accordion .pdp-faq-answer {
  padding: 0.85rem 1rem 1.1rem;
  border-top: 1px solid #eee;
  background: #fff;
}

.pdp-faq-accordion .pdp-faq-answer p {
  font-family: "IBM Plex Sans", "Proxima Nova Regular", system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.pdp-faq-accordion .pdp-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Purpose: PDP body copy and data-section headings — IBM Plex for technical notes; stronger table section titles.
 * Source: blog_and_pdp_enterprise_audit plan Phase 1. */
.main-new-body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2a2a2a;
}

h2.section-title.section-title--data {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Purpose: PDP “Download Technical Datasheet” — undo legacy global .btn-primary mobile margins from responsive bundle.
 * Source: DevTools margin-left:220px on .product .down .btn-primary at ≤767px. */
.product .down {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.product .down .btn-primary,
.product .down .btn-secondary {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 100%;
  box-sizing: border-box;
}
