/* ============================
   SMARTCINE RED THEME
   ============================ */

#smartcine-audio-hub-controls {
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid #c00000;
}

#smartcine-audio-hub-controls button,
#smartcine-audio-hub-controls select {
    background: #c00000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    margin: 6px;
    cursor: pointer;
    font-size: 14px;
}

#smartcine-audio-hub-controls button:hover,
#smartcine-audio-hub-controls select:hover {
    background: #e00000;
}

/* ============================
   GRID LAYOUT FOR POSTS
   ============================ */

#smartcine-audio-hub-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* ============================
   CARD DESIGN
   ============================ */

.smartcine-post-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.smartcine-thumb-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.smartcine-post-info {
    padding: 15px;
}

.smartcine-post-info h3 {
    margin-top: 0;
    font-size: 20px;
    color: #111;
}

.smartcine-cats {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

/* ============================
   MINI AUDIO PLAYER
   ============================ */

.smartcine-mini-player {
    margin-bottom: 12px;
}

.smartcine-mini-player button {
    background: #c00000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    margin-right: 8px;
    cursor: pointer;
}

.smartcine-mini-player button:hover {
    background: #e00000;
}

/* ============================
   FULL ARTICLE BUTTON
   ============================ */

.smartcine-play-post {
    background: #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.smartcine-play-post:hover {
    background: #555;
}

/* ============================
   LOAD MORE BUTTON
   ============================ */

#smartcine-load-more {
    display: block;
    width: 200px;
    margin: 40px auto;
    padding: 12px 16px;
    background: #c00000;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#smartcine-load-more:hover {
    background: #e00000;
}

/* ============================
   MOBILE FRIENDLY
   ============================ */

@media (max-width: 600px) {
    #smartcine-audio-hub-list {
        grid-template-columns: 1fr;
    }
}
