.c478-conciertos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: inherit;
    max-width: 960px;
}

.c478-concierto {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s, transform .15s;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    min-height: 140px;
}

.c478-concierto:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
    transform: translateY(-2px);
}

/* ── Foto ── */
.c478-foto {
    width: 150px;
    flex-shrink: 0;
    overflow: hidden;
    background: #111;
    position: relative;
}

.c478-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c478-foto-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #e44c36;
}

/* ── Fecha ── */
.c478-fecha-box {
    background: #e44c36;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    min-width: 90px;
    flex-shrink: 0;
    text-align: center;
    gap: 2px;
}

.c478-dia {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.c478-mes {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .9;
}

.c478-hora {
    font-size: .72rem;
    margin-top: 6px;
    opacity: .85;
    border-top: 1px solid rgba(255,255,255,.35);
    padding-top: 5px;
    width: 100%;
    text-align: center;
}

/* ── Info ── */
.c478-info {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.c478-banda {
    font-size: 1.35rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.c478-tipo {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    background: #fff3f2;
    color: #e44c36;
    border: 1px solid #ffd5d0;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
    letter-spacing: .03em;
}

.c478-lugar {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: .92rem;
    font-weight: 500;
}

.c478-lugar svg {
    color: #e44c36;
    flex-shrink: 0;
}

.c478-empty {
    color: #999;
    font-style: italic;
    padding: 24px 0;
    font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .c478-foto { width: 90px; }
    .c478-fecha-box { min-width: 66px; padding: 0 14px; }
    .c478-dia { font-size: 1.8rem; }
    .c478-banda { font-size: 1.1rem; }
    .c478-info { padding: 14px 16px; }
}

@media (max-width: 400px) {
    .c478-foto { display: none; }
}
