.podcast-page {
    direction: rtl;
font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
    padding: 0 0 40px 0;
}

/* breadcrumb */
.podcast-top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    margin-bottom: 20px;
}

.podcast-arrow {
    font-size: 18px;
}

/* header */
.podcast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.podcast-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.podcast-title {
    margin: 0;
    font-size: 22px;
}

.podcast-description {
    margin-top: 5px;
    color: #777;
    font-size: 14px;
}

/* search */
.podcast-search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 10px;
    gap: 10px;
}

.podcast-search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 200px;
}

.podcast-search-btn {
    background: #ff6a00;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.podcast-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* banner */
.podcast-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to left, #2c2c2c, #4a5568);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.podcast-banner-arrow {
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.podcast-banner-title {
    margin: 0;
}

.podcast-banner-text {
    margin-top: 5px;
    font-size: 14px;
}

/* categories */
.podcast-categories {
        padding: 40px 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.podcast-category-card {
    background: rgba(254, 254, 254, 1);
    border:1px solid rgba(245, 245, 245, 0.9608);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
    gap:10px
}
.podcast-category-card:hover {
  transform: translateY(-4px);
}

/* النص */
.podcast-category-content {
    text-align: right;
}

.podcast-category-title {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(15, 91, 195, 1);
}

.podcast-category-desc {
    font-size: 14px;
    line-height: 160%;
    color: rgba(124, 132, 147, 1);
    margin:6px 0 0 0

}

.podcast-category-count {
    font-size: 12px;
    color: rgba(124, 132, 147, 1);
}

/* الأيقونة */
.podcast-category-icon-wrapper {
       flex-shrink: 0; 
    width: 80px;
    height: 80px;
        border:5px solid rgba(218, 216, 253, 0.11);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* مربع جوا الدائرة */
.podcast-category-icon {
    width: 40px;
    height: 40px;
    background: #1f4c8f;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.page-top-bar.podc{
    margin-bottom: 20px;
}
.podcast-pcards {
        padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.podcast-card {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Image Section */
.podcast-card-image {
  position: relative;
}

.podcast-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Time */
.podcast-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* Bookmark */
.podcast-bookmark {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

/* Content */
.podcast-card-content {
  padding: 12px;
  text-align: right;
}

.podcast-title {
  font-size: 16px;
  margin: 8px 0;
}

.podcast-author {
  color: #777;
  font-size: 14px;
}

/* Rating */
.podcast-rating {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}

.podcast-rate {
  color: #f4b400;
  font-weight: bold;
}

/* Footer */
.podcast-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.section-header{
    display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {

.podcast-categories {
        padding: 40px 0;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.page-top-bar.podc{
    margin-bottom: 30px;
}
}