.container {
  min-height: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  gap: 5rem;

  box-sizing: border-box;
}

.subpage-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 2rem;
  gap: 1rem;
}
.subpage-header h1 {
  margin-bottom: 0;
}
.subpage-desc {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #2e6cb2;
  line-height: 1.5em;
}

.reverse {
  align-items: flex-start;
}
.reverse > div:first-child {
  min-width: 20rem;
}

main img {
  margin: 1rem;
  width: 30%;
  max-height: 25rem;
  min-width: 400px;
}

nav > div > a.button:nth-last-child(3) {
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, .3);
}

.dropdown {
  position: absolute;
  top: 50%;
  left: 80%;
  width: 12rem;

  display: flex;
  flex-direction: column;
  z-index: 1;
}
.dropdown a.button {
  font-size: 1rem;
  color: var(--lightgray);
  border: 1px solid;
  border-color: rgba(0, 0, 0, .3);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-bottom: none;
  font-weight: normal;
}
.gone {
  display: none;
}

.traitlist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: .5rem;
}
.traitlist > div {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.productlist {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lightgray);
}
.productlist span {
  display: block;
  margin-bottom: .5rem;
}
.productlist a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

/* 파워실린더란? */

.small {
  font-size: .85rem;
}

.hr {
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid var(--nkblue);
  margin-bottom: 1rem;
  position: relative;
}
.hr::before {
  content: "";
  width: 13.5rem;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  height: 5px;
  overflow: hidden;
  translate: 0 -50%;
  background: white;
  padding-right: 5px;
  position: absolute;
  left: 0;
  top: 0;
}
.hr::after {
  content: "";
  width: 13.5rem;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  height: 5px;
  overflow: hidden;
  translate: 0 -50%;
  background: var(--nkblue);
}

.iconlist {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.iconlist img {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3rem;
  min-height: 3rem;
  margin: 0;
  margin-right: 2rem;
}
.iconlist > div {
  align-items: flex-start;
}
.iconlist > div > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iconlist p {
  margin: 0;
  margin-top: .5rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}
ul li {
  line-height: 1.5em;
}
ul li::before {
  content: "";
  border-color: transparent var(--lightgray);
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 1.1em;
  position: relative;
}
