/* border_grid4 and status label styles */
.content__wrap ul.border_grid4 {
  display: grid;
  gap: 0;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-top: 0;
  margin-top: 1em;
  border-top: 1px solid #d9e2ea;
  border-bottom: 1px solid #d9e2ea;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .content__wrap ul.border_grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .content__wrap ul.border_grid4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.content__wrap ul.border_grid4 li {
  margin: 0 0 -1px 0;
  padding: 1em 1em;
  line-height: 1.6;
  border-bottom: 1px solid #d9e2ea;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .content__wrap ul.border_grid4 li {
    padding: 1em 1em 1em 0;
  }
}

@media only screen and (max-width: 767px) {
  .content__wrap ul.border_grid4 li {
    padding: 1em 0;
  }
}

/* Status label styles */
.status {
  display: inline-block;
  padding: 0.3em 0.8em;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
}

.status.streaming {
  color: #fff;
  background-color: #28a745;
  border: 1px solid #28a745;
}

.status.preparing {
  color: #856404;
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
}

@media only screen and (max-width: 767px) {
  .status {
    font-size: 1.1rem;
    padding: 0.2em 0.6em;
  }
}
