/* Card header (título do widget) pequeno e colado ao banner */
.card-header {
    font-size: 10px !important;
    line-height: 1 !important;
    padding-top: 2px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* CSS API YouTube */
/* BLOCO PRINCIPAL */
.desaplay-wrapper {
    position: relative;
    background: #000;
    padding: 80px 20px 20px 20px; 
	border-radius: 8px;

}


/* LOGO LATERAL */
.desaplay-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.desaplay-logo img {
    height: 36px;
    width: auto;
}

/* GRID 4 COLUNAS */
.desaplay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* CARD */
.desaplay-card {
    text-decoration: none;
    color: #fff;
}

/* THUMB */
.desaplay-thumb {
    position: relative;
    width: 100%;
    height: 145px;
    background-size: cover;
    background-position: center;
    border: 2px solid #1e90ff;
    border-radius: 10px;
    overflow: hidden;
}

.desaplay-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* PLAY */
.desaplay-play {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(30,144,255,0.95);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.desaplay-play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* TÍTULO */
.desaplay-card p {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.3;
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .desaplay-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .desaplay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .desaplay-grid {
        grid-template-columns: 1fr;
    }

    .desaplay-logo img {
        height: 28px;
    }
}