* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }

.header { display: flex; justify-content: space-between; align-items: center; padding: 2rem 10%; background: #fff; border-bottom: 1px solid #ddd; }
.logo { width: 60px; }

.container { max-width: 800px; margin: 2rem auto; padding: 0 1rem; }
.btn-back { display: inline-block; margin-bottom: 2rem; color: #007bff; text-decoration: none; font-weight: bold; }

.taller-card { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.meta { color: #777; font-size: 0.9rem; margin-bottom: 1rem; }
hr { border: 0; height: 1px; background: #eee; margin-bottom: 2rem; }

.lista-taller li { margin-bottom: 2rem; }
.lista-taller h3 { color: #2c3e50; margin-bottom: 0.5rem; }


pre { background: #272822; color: #f8f8f2; padding: 1rem; border-radius: 5px; overflow-x: auto; margin-top: 0.5rem; }
code { font-family: 'Courier New', monospace; }

@media (max-width: 600px) {
    .header { flex-direction: column; text-align: center; }
}