/* SG Entradas Horizontal */
.sgeh-list{display:flex;flex-direction:column;gap:16px}

.sgeh-thumb {
    display: block;
    flex: 0 0 260px;
    max-width: 260px;
    margin: 0 -20px 0 0;
}
.sgeh-thumb img,.sgeh-thumb__placeholder{display:block;width:100%;height:100%;min-height:180px;object-fit:cover}
.sgeh-thumb__placeholder{background:#f3f4f6}

.sgeh-topline{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.sgeh-icon{width:36px;height:36px;border-radius:50%;object-fit:contain}
.sgeh-group{display:flex;flex-direction:column;gap:4px}
.sgeh-frase{width:110px;height:auto;object-fit:contain}
.sgeh-date{font-size:.8rem;color:#6b7280}

.sgeh-title{margin:0;font-size:1rem;line-height:1.3}
.sgeh-title a{text-decoration:none;color:#1f2937}
.sgeh-title a:hover{text-decoration:underline}

.sgeh-excerpt{font-size:.9rem;color:#4b5563}

.sgeh-actions{margin-top:6px}
.sgeh-btn{display:inline-block;font-weight:800;text-transform:uppercase;border-radius:999px;padding:8px 18px;text-decoration:none;color:#fff;font-size:.85rem}
.sgeh-btn.fillbox-1{background:#30b4fd}
.sgeh-btn.fillbox-2{background:#ff0073}
.sgeh-btn.fillbox-3{background:#70d900}

/* Responsive */
@media (max-width:768px){
  .sgeh-item{flex-direction:column}
  .sgeh-thumb{flex:0 0 auto;max-width:100%}
}

/* Quitamos borde del item */
.sgeh-item {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    border: none !important;
}

/* El borde ahora es solo para el contenido */
.sgeh-content {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    border: 3px solid transparent;
}

/* Patrón de colores aplicado solo al contenido */
.colorbox-1 .sgeh-content { border-color: #30b4fd; }
.colorbox-2 .sgeh-content { border-color: #ff0073; }
.colorbox-3 .sgeh-content { border-color: #70d900; }
