.podcastcontent-wrapper{
    margin:30px auto;
    border:1px solid #00000012;
    border-radius:10px;
    padding:40px 30px;
    background:#fff;
  }

  .podcastcontent-section{
    margin-bottom:60px;
  }

  .podcastcontent-section:last-child{
    margin-bottom:0;
  }

  .podcastcontent-title{
    font-size:18px;
    font-weight:700;
    color:#000000;
    margin-bottom:30px;
    text-align:right;
  }

  .podcastcontent-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px 40px;
  }

  .podcastcontent-item{
    font-size:16px;
    color:#727272;
    text-decoration:none;
    transition:0.3s;
    line-height:1.8;
    width:fit-content;
  }

  .podcastcontent-item:hover{
    color:#000;
  }

  .podcastcontent-show-more {
    display: inline-block;
    margin-top: 15px;
    color: #0F5BC3;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    transition: 0.3s;
  }

  .podcastcontent-show-more:hover {
    color: #000;
    text-decoration: underline;
  }

  @media (max-width:991px){

    .podcastcontent-wrapper{
      padding:30px 20px;
    }

    .podcastcontent-grid{
      grid-template-columns:1fr;
      gap:16px 25px;
    }

    .podcastcontent-title{
      font-size:20px;
    }

    .podcastcontent-item:nth-child(n+6) {
      display: none;
    }

  }

  @media (max-width:600px){
    .podcastcontent-wrapper{
      padding:25px 15px;
    }

    .podcastcontent-grid{
      grid-template-columns:1fr;
      gap:14px;
    }

    .podcastcontent-title{
      font-size:18px;
      margin-bottom:20px;
    }

    .podcastcontent-item{
      font-size:14px;
    }

  }