/* Pillole categorie in fondo al post - specificita' alta */
body.single .ccpills-wrap {
    margin-top: 18px;
}

body.single .ccpills-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

body.single .ccpills-item {
    margin: 0;
    padding: 0;
    display: inline-flex;
}

body.single .ccpills-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #2c7d9e;
    background: rgba(44, 125, 158, 0.1);
    border: 1px solid rgba(44, 125, 158, 0.2);
    border-radius: 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

body.single .ccpills-item a:hover,
body.single .ccpills-item a:focus-visible {
    color: #1a5f7a;
    background: rgba(44, 125, 158, 0.2);
    border-color: rgba(44, 125, 158, 0.3);
    outline: none;
}

/* Dark background variant */
body.single.bg-dark .ccpills-item a,
body.single .bg-dark .ccpills-item a {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

body.single.bg-dark .ccpills-item a:hover,
body.single .bg-dark .ccpills-item a:hover,
body.single.bg-dark .ccpills-item a:focus-visible,
body.single .bg-dark .ccpills-item a:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive tweaks */
@media (max-width: 959px) {
    body.single .ccpills-list {
        gap: 8px;
    }
    body.single .ccpills-item a {
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    body.single .ccpills-list {
        gap: 6px;
    }
    body.single .ccpills-item a {
        padding: 5px 12px;
        font-size: 12.5px;
    }
}

