/* Default minimum height */
#page {
	margin: 15px 0px;
}
.card {
    min-height: 200px;
	margin-bottom: 40px;
}

/* Set a different minimum height for medium-sized screens (tablets) */
@media (min-width: 768px) {
    .card {
        min-height: 350px;
    }
}

/* Set a different minimum height for large screens (desktops) */
@media (min-width: 992px) {
    .card {
        min-height: 250px;
    }
}

.card-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Use the default text color */
}

.card-link:hover {
    text-decoration: none; /* Remove underline on hover */
    color: inherit; /* Use the default text color on hover */
}

.card-title, .card-podcast-title {
    font-size: 120%;
    font-weight: bold;
	font-style: italic;
}
.card div.card-body h5.card-title {
  margin-top: 18px;
  margin-bottom: 7px;
}

.titlerow {
  margin-bottom: 30px;
}

.podcast-card {
    min-height: 220px;
	margin-bottom: 30px;
}

.podcast-cover-img {
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.podcast-titlebox {
  padding-top:0px;
}
.podcast-card div.podcast-titlebox h5.card-podcast-title {
  margin-top: 0px;
  margin-bottom: 7px;
}

.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 aspect ratio, adjust as needed */
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* XS */
@media (max-width: 767px) {
    .portfolio>.clear:nth-child(2n)::before {
      content: '';
      display: table;
      clear: both;
    }
}
/* SM & MD */
@media (min-width: 768px) and (max-width: 1199px) {
    .portfolio>.clear:nth-child(4n)::before {
      content: '';
      display: table;
      clear: both;
    }
}
/* LG */
@media (min-width: 1200px) {
    .portfolio>.clear:nth-child(6n)::before {  
      content: '';
      display: table;
      clear: both;
    }
}

