
/* ══════════════════════════════════════════
   RESTORED: PODCAST ROW STYLES
   ══════════════════════════════════════════ */
.pod-row { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
    margin-bottom: 26px; 
}

.pod-card { 
    background: #fff; 
    border-radius: 10px; 
    border: 1px solid #e5e7eb; 
    padding: 16px; 
    display: flex; 
    gap: 14px; 
    cursor: pointer; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
    transition: transform .2s, box-shadow .2s;
}

.pod-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

.pod-cover { 
    width: 70px; 
    height: 70px; 
    border-radius: 8px; 
    flex-shrink: 0; 
    object-fit: cover; 
    border: 2px solid #f3f4f6; 
}

.pod-info { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    gap: 4px; 
}

.pod-ep { 
    font-size: 10px; 
    font-weight: 800; 
    color: #fb8b01; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

.pod-title { 
    font-size: 13.5px; 
    font-weight: 700; 
    line-height: 1.5; 
    color: #111827; 
}

.pod-card:hover .pod-title { color: #1e73be; }

.pod-dur { 
    font-size: 11px; 
    color: #9ca3af; 
    display: flex; 
    align-items: center; 
    gap: 4px; 
}

.pod-play { 
    width: 34px; 
    height: 34px; 
    border-radius: 50%; 
    background: #fb8b01; 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 13px; 
    flex-shrink: 0; 
    padding-right: 2px;
    box-shadow: 0 4px 10px rgba(251,139,1,0.25);
    transition: transform 0.2s;
}

.pod-card:hover .pod-play { transform: scale(1.1); }

@media(max-width:900px) { .pod-row { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) { .pod-row { grid-template-columns: 1fr; } }
