/* ===== General Body ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
}

/* ===== Header ===== */
.site-header {
  background: #222;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  font-size: 20px;
  font-weight: bold;
}

.site-header .menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.site-header .menu a:hover {
  color: #ffcc00;
}

/* ===== Content ===== */
.content {
  text-align: center;
  padding: 50px 20px;
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 15px;
  background: #111;
  color: #fff;
  margin-top: 40px;
}

/* ===== Posts Grid (Index Page) ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.post-card img:hover {
  transform: scale(1.05);
}

/* ===== Single Post ===== */
.single-img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

/* ===== Radio Player ===== */
.radio-player {
  margin: 30px auto;
  text-align: center;
}

.radio-player audio {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
