.podcasts {
  color: white;
  
  .page-padding {
    padding-top: 5rem;
    margin: 5rem auto;
    min-height: 55vh;

    .podcasts {
      margin-top: 1rem;
      display: flex;
      column-gap: 2rem;
      flex-wrap: wrap;

      iframe {
        width: 250px;
        height: 250px;
      }
    }

    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      column-gap: 1rem;
      margin-top: 2rem;

      .current {
        background-color: #E30000;
        padding: 1rem;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-weight: bold;
      }

      a {
        color: white;
        text-decoration: none;
        font-weight: bold;

        &:hover {
          color: #E30000;
        }
      }
    }
  }
}

@media only screen and (max-width: 850px) {
  .podcasts {

    .page-padding {
      padding-top: 3rem;
      width: calc(100% - 2rem);
      margin-left: 1rem;

      h1 {
        font-size: 28px;
        margin-bottom: 1rem;
      }

      .podcasts {
        align-items: center;
        justify-content: center;
        iframe {
          width: 100%;
          height: 250px;
        }
      }
    }
  }
}