.streaming_component-container {
    margin-top: 1.2em;
  }
  
  .streaming_card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
  }
  
  .streaming_card {
    display: flex;
    flex-direction: row;
    background-color: #444;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 20px;
    width: calc(50% - 1em);
  }
  
  .streaming_card img {
    width: 150px;
    object-fit: cover;
  }
  
  .streaming_card-content {
    margin-top:2em;
    position:relative;
    flex: 1;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .streaming_tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-bottom-left-radius: 0;
  }
  
  .streaming_card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .streaming_card-category {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
  }
  
  .streaming_card-description {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .streaming_card-date {
    font-size: 12px;
    color: #ccc;
    position: absolute;
    bottom: 60px;
    right: 10px;
  }
  
  .streaming_card-button {
    align-self: flex-start;
    background-color: #d44f1f;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .streaming_card-button:hover {
    background-color: #b83d1a;
  }
  
  .streaming_load-more-button {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #d44f1f;
    background-color: transparent;
    border: 2px solid #d44f1f;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .streaming_load-more-button:hover {
    background-color: #d44f1f;
    color: #fff;
  }
  
  .streaming_no-transmissions {
    padding: 20px;
    text-align: center;
    border: 2px dashed #d44f1f;
    border-radius: 8px;
    font-size: 16px;
    color: #d44f1f;
    margin: 20px 0;
  }
  
  @media (max-width: 768px) {
    .streaming_card-container {
      flex-direction: column;
      gap: 0;
    }
  
    .streaming_card {
      flex-direction: column;
      width: 100%;
    }
  
    .streaming_card img {
      width: 100%;
      height: 245px;
      object-fit: cover;
    }
  
    .streaming_card-content {
      padding: 10px;
    }
  }
  