.podcast__card {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 2rem;

  box-shadow: 0px 8px 29px 0px rgba(0, 0, 0, 0.1);
}
.podcast__card:last-child {
  margin-bottom: 0;
}
.podcast__card .podcast__innner {
  display: grid;
  grid-template-columns: 300px 1fr;
}

@media (max-width: 768px) {
  .podcast__card .podcast__innner {
    grid-template-columns: 1fr;
  }

  .podcast__card .podcast__innner .podacst__image {
    border-radius: 8px 8px 0 0;
    display: block;
  }

  .podcast__card .podcast__innner .podacst__image img {
    border-radius: 8px 8px 0 0;
  }
}
.podcast__card .podcast__innner .podacst__image {
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 8px 0 0 8px;
  transition: all 0.4s ease;
}
.podcast__card .podcast__innner .podacst__image:hover img {
  transform: scale(1.02);
}

.podcast__card .podcast__innner .podacst__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  transition: all 0.4s ease;
  transform: scale(1);
}

.podcast__card .podcast__innner .podcast__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.podcast__card
  .podcast__innner
  .podcast__content
  .podcast__content--inner
  .podcast__heading
  a {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--erepair-black);
  font-size: 22px;
  transition: all 500ms ease;
  display: block;
}

.podcast__card
  .podcast__innner
  .podcast__content
  .podcast__content--inner
  .podcast__heading:hover
  a {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--erepair-base);
  font-size: 22px;
  transition: all 500ms ease;
}
.podcast__card
  .podcast__innner
  .podcast__content
  .podcast__content--inner
  .podcast__date {
  font-size: 13px;
}
.podcast__card
  .podcast__innner
  .podcast__content
  .podcast__content--inner
  .podcast__footer {
  margin-top: 20px;
}

.podcast__card
  .podcast__innner
  .podcast__content
  .podcast__footer
  .podcast__button
  .far {
  margin-left: 10px;
}
