/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 17 2025 | 11:55:23 */
@charset "UTF-8";
.curso-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Botón estilo Material */
.curso-tags .gb-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #B02331;
  border: none;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
/* Hover Material: darker + elevación */
.curso-tags .gb-button:hover {
  background: #830b17;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
/* Icono Material más grande */
.curso-tags .gb-button::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'><path d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* Opcional: mayor presencia táctil en móvil */
@media (hover: none) {
  .curso-tags .gb-button {
    min-height: 44px;
    gap: 12px;
  }
  .curso-tags .gb-button::before {
    width: 20px;
    height: 20px;
  }
}
