
@media screen and (min-width: 768px) {
  .tvstick-teaser .contents {
    padding-top: 40px;
  }
}

.tvstick-news {
  padding-block: 20px;
  padding-inline: 20px;
  background-color: #1e1e1e;
  border-radius: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.tvstick-news + * {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .tvstick-news {
    padding-block: 24px;
    padding-inline: 60px;
  }
  .tvstick-news + * {
    margin-top: 40px;
  }
}

.tvstick-news-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: 0;
  column-gap: 8px;
}

@media screen and (min-width: 768px) {
  .tvstick-news-list {
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    row-gap: 16px;
    column-gap: 20px;
  }
}

.tvstick-news-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  row-gap: 10px;
  color: #fff;
}

.tvstick-news-item + .tvstick-news-item {
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .tvstick-news-item {
    display: grid;
    grid-column: span 3;
  }
  .tvstick-news-item + .tvstick-news-item {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
  }
}

.tvstick-news-item_time {
  font-size: 1.3rem;
  line-height: 1.75;
  grid-column: 1 / 2;
}

.tvstick-news-item_category {
  align-self: start;
  grid-column: 2 / 3;
  max-width: 150px;
  min-width: 0;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  padding-block: 4px;
  padding-inline: 14px;
  background-color: #333;
  border-radius: calc(29 / 2 * 1px);
}

.tvstick-news-item_label {
  grid-column: 1 / 3;
  font-size: 1.3rem;
  line-height: 1.75;
}
.tvstick-news-item_label a {
  text-decoration: underline;
  text-underline-offset: 7px;
}

@media screen and (min-width: 768px) {

  .tvstick-news-item_time {
    font-size: 1.4rem;
    line-height: 2;
  }

  .tvstick-news-item_category {
    max-width: 200px;
    font-size: 1.2rem;
    padding-block: 6px;
    padding-inline: 18px;
  }

  .tvstick-news-item_label {
    grid-column: 3 / 4;
    font-size: 1.4rem;
    line-height: 2;
  }
}