/* Wrapper */
#mwb-podcast-grid-wrapper {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Filters Section */
.mwb-podcast-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.mwb-podcast-filters input,
.mwb-podcast-filters select {
    flex: 1;
    min-width: 180px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s ease;
    height: 50px;
    padding: 10px 15px !important;
    border: 1px solid #d8d8d8;
}

.mwb-podcast-filters input:focus,
.mwb-podcast-filters select:focus {
  border-color: #0073e6;
  outline: none;
}

.mwb-podcast-filters button {
    background: #ef9b0f;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 17px;
    transition: background 0.3s ease;
}

.mwb-podcast-filters button:hover {
  background: #ef9b0f;
}

/* Podcast Grid */
.mwb-podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Podcast Item */
.mwb-podcast-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mwb-podcast-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.mwb-podcast-thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.mwb-podcast-thumb img:hover {
  transform: scale(1.03);
}

/* Title */
.mwb-podcast-item h3 {
  font-size: 18px;
  margin: 10px 0 6px;
}

.mwb-podcast-item h3 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.mwb-podcast-item h3 a:hover {
  color: #0073e6;
}

/* Pagination */
.mwb-pagination {
  text-align: center;
  margin-top: 25px;
}

.mwb-page-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 14px;
  margin: 0 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mwb-page-btn:hover {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
}

.mwb-page-btn.active {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
}

input#mwb-podcast-search{
    height: 50px;
    padding: 10px 15px !important;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
}

.mwb-podcast-item .read-more{
	display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #ef9b0f;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}


/* Pagination Wrapper */
.mwb-pagination {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Page Buttons */
.mwb-page-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 40px;
}

/* Hover Effect */
.mwb-page-btn:hover {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Active Page */
.mwb-page-btn.active,
.mwb-page-btn:focus {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
  box-shadow: 0 4px 12px rgba(0,115,230,0.3);
}

