#h2Mobile {
  display: none;
  justify-content: center;
  align-items: center;
}

#h2PC {
  display: flex;
}

#applicationPageContainer {
  padding: var(--pagePadding);
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: 70% 30%;
}

#applicationLinksContainer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

#applicationLinksList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
}

#applicationLinksList li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#applicationLinksList a {
  color: var(--defaultFontColor);
  text-decoration: none;
  background-color: rgb(70, 134, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, .2rem + 1vw, 3rem);
  width: 100%;
  max-width: 100%;
  font-family: "ZenDots", Arial, Helvetica, sans-serif;
  font-weight: 500;
  flex-wrap: wrap;
  transition: filter 0.2s;
}

#applicationLinksList a:hover {
  filter: brightness(1.2)
}

#applicationLinksList a:active {
  filter: brightness(1.4)
}


#applicationLinksList a:visited {
  color: var(--defaultFontColor);
}

.mobileBreak {
  display: flex;
  margin: 0 0 0 5px;
}

#applicationDescriptionsContainer {
  margin: 0 var(--pageMargin) 0 var(--pageMargin);
}

.applicationSection {
  margin: 50px 0 0 0;
}

.applicationSection h3 {
  text-align: left;
}

.applicationSection p {
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, .3rem + .8vw, 3rem);
  margin: 10px 0 0 0;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
}

@media (max-width: 950px) {

    #h2Mobile {
      display: flex;
    }

    #h2PC {
      display: none;
    }

    #applicationPageContainer {
      display: flex;
      flex-direction: column;
      padding: 10px 0 var(--pagePaddingBottomMobile) 0;
    }

    #applicationLinksList {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #applicationLinksList:has(a[data-multiple="true"]) {
      display: grid;
      justify-content: center;
      align-items: center;
      width: 100%;
      grid-template-columns: 45% 45%;
      margin: 0 30px;
  }

    #applicationLinksContainer {
      display: flex;
      justify-content: center;
      align-items: center;
      order: 1;
      margin: 20px 0;
    }

    #applicationLinksList a:hover {
      filter: brightness(1)
    }

    #applicationLinksList a:active {
      filter: brightness(1)
    }

    #applicationDescriptionsContainer {
      order: 2;
    }

    .applicationSection h3 {
      text-align: center;
      margin: 0 30px 0 30px;
    }

    .applicationSection p {
      margin: 15px 30px 0 30px;
      word-break: break-word;
      hyphens: auto;
      text-align: justify;
    }

}

@media (max-width: 650px) {

    #h2Mobile {
      display: flex;
    }

    #h2PC {
      display: none;
    }

    #applicationPageContainer {
      display: flex;
      flex-direction: column;
      padding: 10px 0 var(--pagePaddingBottomMobile) 0;
    }

    #applicationLinksList {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #applicationLinksList:has(a[data-multiple="true"]) {
      display: grid;
      justify-content: center;
      align-items: center;
      width: 100%;
      grid-template-columns: 45% 45%;
      margin: 0 30px;
  }

    #applicationLinksContainer {
      display: flex;
      justify-content: center;
      align-items: center;
      order: 1;
      margin: 20px 0;
    }

    #applicationLinksList a[data-multiple="true"] {
      display: flex;
      flex-direction: column;
    }

    #applicationLinksList a {
      display: flex;
      flex-direction: row;
    }

    #applicationLinksList a:hover {
      filter: brightness(1)
    }

    #applicationLinksList a:active {
      filter: brightness(1)
    }

    #applicationDescriptionsContainer {
      order: 2;
    }

    .applicationSection h3 {
      text-align: center;
      margin: 0 30px 0 30px;
    }

    .applicationSection p {
      margin: 15px 30px 0 30px;
      word-break: break-word;
      hyphens: auto;
    }

}