/* --- BLOG CARD --- */
 .container h1 {
  color: #fff;
  text-align: center;
  margin:10px 0 12px 0;
}   
 .blog {
      background: #1B0F2E;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
      overflow: hidden;
      transition: 0.3s;
      color: #fff;
    }

    .blog:hover {
      transform: translateY(-4px);
    }


    .blog-content {
      padding: 20px;
    }

    .blog-content h2 {
      margin-bottom: 10px;
      color: #fff;
    }

    .blog-content p {
      color: #fff;
      margin: 15px;
    }

    /* --- BUTTON & ICONS --- */
    .actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .like-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      color: #888;
      transition: color 0.3s;
    }

    .like-btn.liked {
      color: #e63946;
    }

    .comment-section {
      margin-top: 20px;
    }

    .comment-section h3 {
      margin-bottom: 10px;
    }

    .comment-section textarea {
      width: 100%;
      padding: 10px;
      border-radius: 10px;
      border: 1px solid #ccc;
      resize: vertical;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .comment-section button {
      background: #D4AF37;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .comment-section button:hover {
      background: #c1a95c;
    }

    .comments-list {
      margin-top: 15px;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }

    .comment {
      background: #f1f1f1;
      padding: 8px 12px;
      border-radius: 10px;
      margin-bottom: 8px;
    }

    /* --- RESPONSIVE --- */
.image-audio-container {
  position: relative;
  margin: 0 0 4rem 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  /* background: #E4E7EB; */
  border-radius: 16px;
  /* padding: 2rem; */

}
h3 {
  /* text-align: center;/ */
  margin: 2px;
}
.image-audio-container img {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 8px;
}

.controls {
  width: 100%;
  display: flex;
  gap: 6px;
}

.controls button {
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  margin: 2px;
  padding: 10px;
  width: 100%;
  background: #1F2A38;
  color: #fff;
  font-size: 16px;
}
