/* Iron Shore Roofing -- homepage "10-Year Workmanship Warranty" section,
   inserted directly after the "Why Iron Shore" section by
   warranty-section.js. The wrapper reuses the site's existing
   .section-padding / .section-darker / .container / .section-label /
   .section-title / .section-subtitle / .btn-outline classes as-is for
   layout, color, and type -- every rule below is scoped to .warranty-* /
   .warranty-section (new elements this feature adds) and only covers what
   those shared classes don't already handle: the highlighted "10-Year",
   the covered-items list, the secondary paragraphs, the CTA button spacing,
   and the fine print. Never touches nav, footer, or any existing rule. */

.warranty-content {
  max-width: 760px;
  margin-top: 40px;
}

/* "10-Year" made prominent the same way the hero already highlights its
   second line (white headline, one phrase in the brand's lighter accent
   blue) -- no new graphic, no separate stat callout, just the existing
   in-heading color technique already used elsewhere on this page. */
.warranty-highlight {
  color: var(--color-primary-light, #3b7ef5);
}

.warranty-text {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body, "Open Sans", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* The two "additional copy" clarifications (manufacturer warranties are
   separate; repairs carry a 1-year term) read as secondary, supporting
   information rather than the section's main claim, so they step down to
   the same muted gray already used for .section-subtitle and card copy. */
.warranty-text-secondary {
  color: var(--color-text-muted, #8998ad);
  font-size: 14.5px;
}

.warranty-covered-heading {
  color: var(--color-text, #fff);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.2;
  margin: 8px 0 14px;
}

.warranty-covered-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warranty-covered-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body, "Open Sans", sans-serif);
  font-size: 15px;
  line-height: 1.55;
}

.warranty-check {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--color-primary-light, #3b7ef5);
}

/* Fine print: same muted gray already used for .section-subtitle / card
   text sitewide (an already-vetted contrast level against the dark
   background), just smaller, per spec. */
.warranty-fineprint {
  color: var(--color-text-muted, #8998ad);
  font-size: 13px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

@media (max-width: 640px) {
  .warranty-content { margin-top: 28px; }
  .warranty-text { font-size: 15px; }
  .warranty-covered-heading { font-size: 19px; margin-top: 4px; }
  .warranty-covered-list { gap: 10px; margin-bottom: 24px; }
  .warranty-covered-list li { font-size: 14.5px; }
  .warranty-fineprint { font-size: 12.5px; }
}
