/* CONTAINER */
.smtv-shorts {
    background: #1e3a8a;
    padding: 60px 20px;
}

/* WRAPPER */
.smtv-shorts .wrapper {
    max-width: 1200px;
    margin: auto;
}

/* TITULO */
.smtv-shorts h2 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* GRID */
.smtv-shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* ITEM */
.short-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

/* ESCONDER */
.is-hidden {
    display: none;
}

/* IMAGEM (formato vertical tipo reels) */
.short-thumb {
    position: relative;
    padding-bottom: 170%;
}

.short-thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTÃO PLAY */
.smtv-play-btn-short {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.smtv-play-btn-short:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* TITULO */
.short-title {
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 8px;
}

/* BOTÃO LOAD */
.smtv-load-more {
    margin-top: 30px;
    text-align: center;
}

.smtv-load-more button {
    padding: 10px 20px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.smtv-load-more button:hover {
    background: #2563eb;
}