/* ==========================================
   SX APPLICATION PAGE TEMPLATE (DO NOT DELETE)
========================================== */
.sx-page-wrapper {
  --sx-bg: #ffffff;
  --sx-text: #4a4a4a;           
  --sx-brand-blue: rgb(45, 132, 205);
  --sx-blue-light: rgba(45, 132, 205, 0.08); 
  --sx-border: #eaeaea;   
  
  background-color: var(--sx-bg);
  color: var(--sx-text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
}

.sx-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sx-page-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--sx-border);
}

/* A. Hero Section */
.sx-page-hero {
  padding: 100px 20px;
  text-align: center;
  background: transparent;
  border-bottom: 1px solid var(--sx-border);
}

.sx-kicker {
  color: var(--sx-brand-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.0625rem;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.sx-page-hero h1 {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.sx-lead {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto;
  color: #666;
}

/* B. The Mini-Article Section */
.sx-article-section {
  background-color: #fafafa; /* Just a hint of off-white to separate it from the gallery */
}

.sx-article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.sx-article-header h2 {
  color: #1a1a1a;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.sx-article-subtitle {
  font-size: 1.15rem;
  color: var(--sx-brand-blue);
  font-weight: 500;
}

.sx-article-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sx-article-body {
    flex-direction: row;
    gap: 50px;
  }
  .sx-article-col {
    flex: 1;
  }
}

.sx-article-col p {
  margin-bottom: 15px;
  font-size: 1.0625rem;
  text-align: justify;
}

/* C. Data Gallery Rows */
.sx-data-gallery h2 {
  color: #1a1a1a;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.sx-data-row {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
  align-items: center;
  width: 100%;
}

.sx-data-image {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.sx-data-text {
  width: 100%;
}

/* Clean, clinical image framing */
.sx-image-placeholder {
  background: #fdfdfd;
  border: 1px solid var(--sx-border);
  border-radius: 4px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft, premium shadow */
}

.sx-placeholder-text {
  font-family: monospace;
  margin-bottom: 15px;
}

.sx-data-text h3 { 
  color: #1a1a1a; 
  font-size: 1.6rem; 
  margin-bottom: 15px; 
}

.sx-data-text p {
  font-size: 1.0625rem;
}

/* Experimental Parameters (Transparent Blue Background + Blue Line) */
.sx-exp-params {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  background: var(--sx-blue-light); 
  border-left: 4px solid var(--sx-brand-blue); 
  padding: 18px 25px;
  border-radius: 0 4px 4px 0;
}

.sx-exp-params li {
  font-family: 'Courier New', monospace;
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.sx-exp-params li:last-child { margin-bottom: 0; }
.sx-exp-params strong { color: var(--sx-brand-blue); font-weight: 600; }

/* D. Equipment Funnel */
.sx-equip-card {
  background: var(--sx-bg);
  border: 1px solid var(--sx-border);
  border-top: 4px solid var(--sx-brand-blue); /* Blue accent top */
  border-radius: 6px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  max-width: 800px;
  margin: 0 auto;
}

.sx-equip-card h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.sx-equip-card p {
  font-size: 1.0625rem;
}

.sx-btn {
  background: rgb(45, 132, 205);
  color: #ffffff;
  padding: 12px 24px;
  border: 1px solid rgb(45, 132, 205);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.sx-btn:hover {
  background: rgba(45, 132, 205, .03);
  opacity: 0.9;
  transform: translateY(-2px);
  color: rgb(45, 132, 205);

}

/* ==========================================
   SX PHENOMENA BLOCK (LLM/SEO LIST)
========================================== */
.sx-phenomena-block {
  margin: 50px auto 0 auto;
  max-width: 900px;
  padding: 35px 40px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Very soft premium shadow */
  align-items: center;
}

.sx-phenomena-title {
  text-align: center;
  color: var(--sx-brand-blue);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 25px;
}

.sx-phenomena-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px 30px; /* 15px vertical gap, 30px horizontal gap */
  list-style: none; /* Removes default browser bullets */
  padding: 0;
  margin: 0;
}

.sx-phenomena-list li {
  position: relative;
  padding-left: 28px;
  color: #1a1a1a;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Custom Brand-Blue Chevron Bullet */
.sx-phenomena-list li::before {
  content: "▹"; /* A clean, scientific geometric chevron */
  position: absolute;
  left: 0;
  top: -2px; /* Vertically aligns the chevron with the text */
  color: var(--sx-brand-blue);
  font-size: 1.4rem;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .sx-phenomena-block {
    padding: 25px 20px;
  }
}

