/* ========================================================================== 
   LS Metal Works - Simple PDF Download Page
   ========================================================================== */

.pdf-download-page-template {
  overflow-x: hidden;
}

.pdf-download-hero {
  min-height: clamp(25rem, 52vw, 34rem);
  background:
    linear-gradient(90deg, rgb(15 23 42 / 0.96), rgb(15 23 42 / 0.86) 55%, rgb(15 23 42 / 0.58)),
    url("../images/service-pages/heavy-steel-structure-fabrication/fabricated-heavy-steel-trusses.webp") center / cover;
}

.pdf-download-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.pdf-download-card {
  display: grid;
  max-width: 62rem;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-inline: auto;
  padding: clamp(1.75rem, 5vw, 3rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-background);
  box-shadow: var(--shadow-md);
}

.pdf-file-badge {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pdf-download-copy h2 {
  margin-top: var(--space-3);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.035em;
}

.pdf-download-copy > p:not(.section-eyebrow) {
  max-width: 43rem;
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.pdf-download-button {
  white-space: nowrap;
}

@media (min-width: 48rem) {
  .pdf-download-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

@media (max-width: 47.99rem) {
  .pdf-download-button {
    width: 100%;
  }
}
