.main-header {
  svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
  }
}
.os-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  padding: 1em;
  gap: 0.5em;
  min-width: 100px;
  font-weight: 500;

  &:hover {
    background-color: var(--feature-box-bg-hover);
    cursor: pointer;
  }

  svg, .linux-logo {
    fill: var(--text-color);
    width: 32px;
    height: 32px;
  }
}

.version-info {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 1em;
  &:hover {
    opacity: 1;
  }
}

.button-set {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  h1 {
    margin: 0;
  }
}

.download-list {
  .platform-section {
    margin-bottom: 1em;
    display: flex;
    &:not(:last-child) {
      border-bottom: 1px solid var(--border-color);
    }
  }
  .platform-title {
    font-weight: 600;
    padding: 1em 0;
    width: 160px;
  }
  .platform-list {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    padding: 1em 0;
    a {
      display: flex;
      align-items: center;
      gap: 0.4em;
      &:hover {
        opacity: 0.7;
      }
      .arrow-circle-down-outline {
        width: 1.2em;
        height: 1.2em;
      }
    }
  }
}

.app-icon-wrapper {
  overflow: hidden;
  border-radius: 20%;
  width: 100px;
  height: 100px;
  position: relative;
  box-shadow:
    1px 1px 2px 0px rgba(0,0,0,0.2),
    2px 2px 5px 0px rgba(0,0,0,0.1);
  &:after {
    box-shadow:
      inset 0 1px 0 1px rgba(255, 255, 255, 0.025),
      inset 1px 1px 1px 0px rgba(0,0,0,0.1);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 20%;
  }
  .app-icon {
    width: 100%;
    height: 100%;
  }
}

.main-download {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}

.downloads-container {
  display: flex;
  flex-direction: row;
  gap: 8em;
  align-items: flex-start;
  justify-content: center;
  margin-top: 6em;
  flex-wrap: wrap;

  svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
  }

  .download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .row-title {
    width: 33.33%;
    display: flex;
    align-items: center;
    gap: 0.5em;
    /* font-size: 1.2em; */
    /* font-weight: 600; */
  }
  .download-row {
    display: flex;
    align-items: flex-start;
    padding: 0 0 1.5em 0;
    &:not(:last-child) {
      border-bottom: 1px solid var(--border-color);
    }
  }
  .download-section {
    padding: 2em;
    /* border: 1px solid var(--border-color); */
    /* border-radius: 18px; */
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 600px;
    h3 {
      margin: 0;
    }
    .subsection {
      display: flex;
      flex-direction: column;
      gap: 1em;
      a {
        display: flex;
        align-items: center;
        gap: 0.5em;
        font-weight: 500;
        svg {
          width: 1.3em;
          height: 1.3em;
        }
      }
    }
  }
}
