.podcast-player {
  display: flex;
  align-items: center;
  background: #fff;
  color: #2d2d2d;
  border-radius: 14px;
  padding: 10px 14px;
  border: 2px solid #b8860b;              /* золотая окантовка */
  box-shadow: 0 4px 15px rgba(184,134,11,0.08);
  max-width: 360px;                       /* компактный размер */
  margin: 20px auto;
  gap: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.podcast-player:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(184,134,11,0.15);
  border-color: #daa520;
}

.podcast-cover {
  width: 75px;
  height: 95px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}

.podcast-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.podcast-title {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

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

.controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.play-btn {
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(184,134,11,0.25);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(184,134,11,0.35);
}

.progress-container {
  flex: 1;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8860b, #daa520);
  border-radius: 2px;
  transition: width 0.2s linear;
}

.time {
  font-size: 11px;
  width: 32px;
  text-align: right;
  color: #555;
}
