:root {
    --zettler-orange: #ee7421;
    --zettler-orange-hover: hsl(32, 97%, 59%);
    --zettler-blue: #0A41C2;
    --zettler-blue-hover: #005bb5;
    --gray-bg: #d6d5d5;
  
    --text-primary: black;
  
    --fs-300: clamp(1rem, calc(0.1rem + 0.08vw), 0.98rem);
    --fs-400: clamp(1.13rem, calc(1.06rem + 0.33vw), 1.31rem);
    --fs-500: clamp(1.35rem, calc(1.21rem + 0.69vw), 1.75rem);
    --fs-600: clamp(1.62rem, calc(1.37rem + 1.24vw), 2.33rem);
    --fs-700: clamp(1.94rem, calc(1.54rem + 2.03vw), 3.11rem);
    --fs-800: clamp(2.33rem, calc(1.7rem + 3.15vw), 4.14rem);
    --fs-900: clamp(2.8rem, calc(1.85rem + 4.74vw), 5.52rem);
  }
  
  .content-grid { 
    --padding-inline: 1rem;
    --content-max-width: 1000px;
    --breakout-max-width: 1250px;
  
    --breakout-size: calc(
      (var(--breakout-max-width) - var(--content-max-width)) / 2
    );
  
    display: grid;
    grid-template-columns:
      [full-width-start] minmax(var(--padding-inline), 1fr)
      [breakout-start] minmax(0, var(--breakout-size))
      [content-start] min(
        100% - (var(--padding-inline) * 2),
        var(--content-max-width)
      )
      [content-end]
      minmax(0, var(--breakout-size)) [breakout-end]
      minmax(var(--padding-inline), 1fr) [full-width-end];
  }
  
  .content-grid > :not(.breakout, .full-width),
  .full-width > :not(.breakout, .full-width) {
    grid-column: content;
  }
  
  .content-grid > .breakout {
    grid-column: breakout;
  }
  
  .content-grid > .full-width {
    grid-column: full-width;
  }
  
  body {
    margin: 0;
    line-height: 1.6 !important;
    /* font-size: var(--fs-300); */
    /* font-family:
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      'Segoe UI',
      Roboto,
      Oxygen,
      Ubuntu,
      Cantarell,
      'Open Sans',
      'Helvetica Neue',
      sans-serif; */
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  figure {
    margin: 0;
  }
  
  ul {
    padding: 0;
  }
  
  .global-container {
    padding: 40px 0;
    align-items: center;
    justify-content: center;
  }
  
  .global-img {
    max-width: 100%;
    font-style: italic;
    vertical-align: middle;
  }
  
  .global-zettler-btn {
    border: none;
    outline: none;
    color: white;
    width: fit-content;
    border-radius: 15px;
    padding: 10px 15px 10px 15px;
    background: var(--zettler-orange);
  }
  
  /* Second one is used within cross ref for output management */
  .global-zettler-btn:hover,
  .global-zettler-btn.active {
    cursor: pointer;
    background: var(--zettler-orange-hover);
  }
  
  a,
  Link,
  .global-link {
    cursor: pointer;
    text-decoration: none;
    color: var(--zettler-orange);
  }
  
  .global-grid-col {
    display: grid;
    grid-gap: 40px;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr;
  }
  
  .global-underlined {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  
  .global-underlined::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: gray;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .global-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); /* For modern browsers */
    clip: rect(0, 0, 0, 0); /* For IE6, IE7 */
    border: 0;
  }

  .global-card {
    padding: 20px;
    max-width: 220px;
    min-width: 220px;
    text-align: center;
    border-radius: 15px;
    background-color: #fff;
    flex: 1 1 calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .global-card h3 {
    height: 3em;
    display: flex;
    margin: 10px 0;
    color: black;
    font-size: 1.17em;
    justify-content: center;
  }

  .global-card p {
    margin: 0;
  }

  .global-card a:hover {
    color: var(--zettler-orange);
  }

  /* Ensures on mobile screens that content takes up all width */
  @media only screen and (max-width: 425px) {
    .wrapper {
        width: 100%;
    }
  }

