h4 {
    font-weight: bold;
    padding: 0 3em;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  h4::before, h4::after {
    content: '';
    background: gray;
    width: 2em;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  h4::before {
    left: 0;
  }
  h4::after {
    right: 0;
  }
  .embed-card {
    border: 1px solid #ddd;
    display: flex;
    margin-bottom: 20px;
  }
  
  .embed-card img {
    margin-right: 20px;
  }
  
  .embed-card .embed-content {
    padding: 10px;
  }
  
  .embed-card h4 {
    margin: 0;
  }
  
  .embed-card p {
    margin: 0;
  }