/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.p-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-sm);
  row-gap: var(--space-sm);
}
.p-news-list.detail {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  column-gap: var(--space-xs);
}
.p-news-detail {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-md);
}
.p-news-wrap {
  max-width: 1600px;
  margin-inline: auto;
}
.p-news-article {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-sm);
}
.p-news-article .header {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.p-news-article .header .title {
  font-weight: 500;
  line-height: 1.6;
}
.p-news-article .header .date {
  line-height: 1;
}
.p-news-article .main {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.p-news-article .main figure {
  border-radius: 5px;
  overflow: hidden;
}
.p-news-article .main p {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.p-news-article .footer {
  display: flex;
  justify-content: center;
}
.p-news-article .footer a {
  display: grid;
  grid-template-columns: auto clamp(32px, 3vw, 40px);
  column-gap: var(--space-xxs);
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.p-news-article .footer a:hover {
  text-decoration: underline;
}
.p-news-aside {
  display: none;
}
@media screen and (min-width: 992px) {
  .p-news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .p-news-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-news-wrap {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--space-xxs);
  }
  .p-news-article {
    grid-area: 1/5/2/13;
  }
  .p-news-aside {
    grid-area: 1/1/2/4;
    display: block;
  }
  .p-news-aside .inner {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: sticky;
    top: 140px;
  }
  .p-news-aside .thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
  }
  .p-news-aside .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .p-news-aside .title {
    font-weight: 500;
    line-height: 1.6;
  }
  .p-news-aside .date {
    line-height: 1;
  }
}

/* --------------------------------- */
/* --------------------------------- *//*# sourceMappingURL=news.css.map */