
/* Skillsets  Custom */
#skillsets .container>h3 {
    color: var(--text-secondary-color) !important;
}

#skillsets .row .index {
    opacity: 0.8;
    padding: 13px 20px;
    line-height: 0%;
    border-radius: 50%;
    max-height: 50px;
    z-index: 2;
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: bold;
}

# (card background now provided by `static/css/_shared-cards.css`)
#/* shared card styles moved to `static/css/_shared-cards.css` */
#/* Keep section-specific overrides here if necessary. */

#skillsets .card .card-body .skillsets-content a {
    color: var(--text-link-color) !important;
    text-decoration: none;
    opacity: 0.9;
}

/* Restore per-section card shadows for a more prominent hover */
#skillsets .card {
    --card-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
    --card-hover-shadow: 0px 12px 64px rgba(15, 80, 100, 0.12);
}

#skillsets .card .card-body>a h6 {
    display: inline-block;
    text-decoration: none;
    color: var(--text-link-color) !important;
}

#skillsets .card .card-body>a h6::after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    bottom: 0.37em;
    background-color: var(--primary-color);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0.5;
}

#skillsets .card .card-body>a h6:hover::after,
#skillsets .card .card-body>a h6:focus::after,
#skillsets .card .card-body>a h6:active::after {
    width: 100%;
}

/* for small screens, the contents should be center aligned*/
@media all and (max-width:768px) {
    #skillsets .card .card-body .list-unstyled {
        text-align: center;
    }
}