@view-transition {
  navigation: auto;
}
*, *:before, *:after {
  box-sizing: border-box;
  font-family: "Pretendard Variable", sans-serif;
  letter-spacing: -0.025em;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

html {
  scrollbar-gutter: stable;
}
html::-webkit-scrollbar {
  width: 0.6rem;
  background-color: #EEE;
}
html::-webkit-scrollbar-thumb {
  background-color: #AAA;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 88rem;
  margin: 0 auto;
  padding: 1.6rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  view-transition-name: brand;
}
.brand img {
  width: auto;
  height: 100%;
  aspect-ratio: 29/5;
}

.category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  view-transition-name: category;
}
.category__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 none;
  outline: none;
  background-color: #EEE;
  color: #555;
  font-weight: 450;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
}
.category__item:hover {
  background-color: #DDD;
  color: #333;
}
.category__item--active {
  background-color: #111 !important;
  color: #FFF !important;
  font-weight: 650;
}

.list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  view-transition-name: list;
}
.list__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  border-top: 0.1rem solid #EEE;
  border-bottom: 0.1rem solid #EEE;
  color: #AAA;
  font-size: 1.3rem;
  font-weight: 600;
}
.list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  height: 4.8rem;
  padding: 0 1.2rem;
  background-color: transparent;
  border-top: 0.1rem solid #EEE;
  color: #333;
  text-decoration: none;
  transition: background-color 0.25s;
}
.list__item:last-child {
  border-bottom: 0.1rem solid #EEE;
}
.list__item:hover {
  background-color: #FAFAFA;
}
@media (max-width: 768px) {
  .list__item {
    gap: 1rem;
    height: 4rem;
    padding: 0 0.4rem;
  }
}
.list__item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 2.4rem;
  background-color: #DDD;
  border-radius: 0.4rem;
  color: #777;
  font-size: 1.3rem;
  font-weight: 550;
  font-style: normal;
}
@media (max-width: 768px) {
  .list__item i {
    width: 4.4rem;
    height: 2.2rem;
    font-size: 1.1rem;
  }
}
.list__item b {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .list__item b {
    font-size: 1.3rem;
  }
}
.list__item time {
  color: #AAA;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .list__item time {
    font-size: 1rem;
  }
}
.list__item--more {
  justify-content: center;
  gap: 0.4rem;
  background-color: #FCFCFC;
  color: #777;
  font-size: 1.3rem;
  font-weight: 550;
}
@media (max-width: 768px) {
  .list__item--more {
    font-size: 1.2rem;
  }
}
.list__item--more svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .list__item--more svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .footer {
    gap: 1.6rem;
  }
}
.footer__copyright {
  color: #777;
  font-size: 1.4rem;
  font-style: normal;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}
.footer__company {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 3.6rem;
}
@media (max-width: 768px) {
  .footer__company {
    display: none;
  }
}
.footer__company-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  line-height: 1;
}
.footer__company-item b {
  margin-right: 1.2rem;
  text-wrap: nowrap;
  color: #777;
  font-weight: 650;
}
.footer__company-item span {
  color: #777;
  font-weight: 500;
}
.footer__company-item svg {
  transform: translateY(0.1rem);
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.6rem;
}
.footer__company-item a {
  color: #AAA;
  transition: color 0.25s;
}
.footer__company-item a:hover {
  color: #154AD4;
}
.footer__company-separator {
  width: 100%;
  height: 1.2rem;
}

/*# sourceMappingURL=app.css.map */
