/* Etiquetas pill/chip — [gd_tags]
   Replica el diseño del blog de Calimallas:
   borde gris redondeado, ícono tag, texto gris medio.
   ---------------------------------------------------- */

.gd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    font-family: "Barlow", Sans-serif;
}

.gd-tags__pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin: 0px;
    padding: 5px 8px;
    border: 1px solid #D0D0D0;
    border-radius: 0px;
    background: #fff;
    color: #6B6B6B;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
}

a.gd-tags__pill:hover {
    border-color: #1A1A1A;
    color: #1A1A1A;
    background: #F5F5F5;
}

a.gd-tags__pill:focus-visible {
    outline: 2px solid #D4A84B;
    outline-offset: 2px;
}

.gd-tags__icon {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    display: block;
}
