/*featured-skill-card.css file contains styling for the skill cards on the home page*/

.featured-skill-icon {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain; 
    flex-shrink: 0;
}

.featured-skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /*keeps all the icons at the same height*/
    height: 88px;
    width: 92px;
    gap: 4px;
    padding: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.featured-skill-name {
    color: var(--text-primary);
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: block;
    line-height: 1.2;
    overflow-wrap: anywhere;
}