.entry__item {
  display: flex;
  padding: 4rem 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .entry__item {
    flex-wrap: wrap;
    padding: 4rem 0.5rem;
  }
}
.entry__item:last-child {
  border-bottom: none;
}
.entry__item time {
  width: 90px;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  margin-top: 8px;
  margin-right: 3rem;
}
@media screen and (max-width: 1060px) {
  .entry__item time {
    width: auto;
    margin-right: 1.5rem;
    margin-top: 1rem;
  }
}
.entry__item .category__name span {
  display: inline-block;
  text-align: center;
  line-height: 1;
  width: 90px;
  margin-right: 3rem;
  background-image: var(--var-linear-gradient);
  padding: 10px 5px;
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .entry__item .category__name span {
    width: auto;
    min-width: 14rem;
    padding: 0.8rem 1rem;
  }
}
.entry__item .entry__title {
  width: calc(100% - 6rem - 180px);
}
@media screen and (max-width: 1060px) {
  .entry__item .entry__title {
    width: 100%;
    margin-top: 1.2rem;
  }
}
.entry__item .entry__title a {
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  transition: all 0.3s var(--var-animation-timing-function);
  background: var(--var-linear-gradient) 0 100%/0 1px no-repeat;
}
.entry__item .entry__title a:hover {
  background-size: 100% 1px;
}
@media screen and (max-width: 1060px) {
  .entry__item .entry__title a:hover {
    background: none;
  }
}

.iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 1060px) {
  .iframe-wrap {
    margin-bottom: 20px;
  }
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
