.cgr-radio-player {
  --cgr-radio-burgundy: #7b1538;
  --cgr-radio-deep: #3a091a;
  --cgr-radio-gold: #d4af37;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}

.cgr-radio-card,
.cgr-radio-hero {
  background: linear-gradient(135deg, var(--cgr-radio-deep), var(--cgr-radio-burgundy));
}

.cgr-radio-hero {
  padding: 36px;
}

.cgr-radio-main h3 {
  margin: 8px 0 4px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.cgr-radio-main p {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.cgr-radio-main small,
.cgr-radio-status {
  color: rgba(255,255,255,0.58);
  font-weight: 700;
}

.cgr-now-playing {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
}

.cgr-radio-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cgr-radio-gold);
  color: var(--cgr-radio-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cgr-radio-live span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 6px rgba(239,68,68,0.2);
}

.cgr-radio-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cgr-radio-play {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: var(--cgr-radio-gold);
  color: var(--cgr-radio-deep);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cgr-radio-play:hover {
  transform: scale(1.05);
}

.cgr-pause-icon,
.is-playing .cgr-play-icon {
  display: none;
}

.is-playing .cgr-pause-icon {
  display: inline;
}

.cgr-radio-stop,
.cgr-radio-icon-btn {
  min-height: 42px;
  min-width: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cgr-radio-stop:hover,
.cgr-radio-icon-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.cgr-radio-icon-btn {
  padding: 10px;
  width: 42px;
  height: 42px;
}

.cgr-radio-icon-btn.is-muted {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.5);
  color: #fecaca;
}

.cgr-radio-volume {
  display: grid;
  gap: 7px;
  min-width: 130px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 800;
}

.cgr-radio-volume-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cgr-radio-volume input[type="range"] {
  flex: 1;
  accent-color: var(--cgr-radio-gold);
}

.cgr-radio-volume-label {
  display: inline-block;
  min-width: 38px;
  text-align: right;
  color: rgba(255,255,255,0.78);
  font-weight: 900;
}

.cgr-radio-status {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

.cgr-radio-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  border-radius: 0;
  padding: 12px max(16px, calc((100vw - 1220px) / 2));
  background: #5c112a;
}

.cgr-radio-bar .cgr-radio-main h3 {
  font-size: 18px;
}

.cgr-radio-bar .cgr-radio-main small {
  display: none;
}

.cgr-shortcode-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cgr-shortcode-post-grid article {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17,24,39,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cgr-shortcode-post-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17,24,39,0.12);
}

.cgr-shortcode-post-grid img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.cgr-shortcode-post-grid div {
  padding: 20px;
}

.cgr-shortcode-post-grid span {
  color: #7b1538;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cgr-shortcode-post-grid h3 {
  margin: 8px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.cgr-shortcode-post-grid h3 a {
  color: #111827;
  text-decoration: none;
}

.cgr-shortcode-post-grid h3 a:hover {
  color: #7b1538;
}

.cgr-shortcode-post-grid p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.cgr-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.cgr-admin-card {
  padding: 22px;
  border: 1px solid #dcdcde;
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 900px) {
  .cgr-radio-player,
  .cgr-shortcode-post-grid,
  .cgr-admin-grid {
    grid-template-columns: 1fr;
  }

  .cgr-radio-controls,
  .cgr-radio-status {
    align-items: flex-start;
  }
}
