.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 1.2em;
    border-radius: .6em;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.tool-content .tools-grid {
    margin-top: 0;
}

.tools-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    overflow-x: auto;
    width: 100%;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tools-meta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: fit-content;
}

.tools-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-color);
    font-family: var(--font-simple);
    gap: 4px;
    padding: 1px 8px;
    border-radius: 6px;
    border: solid 1px #ddd;
    box-shadow: 0 3.5px 3.5px rgba(0, 0, 0, .0078431373), 0 2px 2px rgba(0, 0, 0, .0078431373), 0 0 1px rgba(0, 0, 0, .0078431373);
}

.tools-meta span:nth-child(1) svg {
    fill: #d30;
}

.tools-meta span:nth-child(2) svg {
    fill: #006fff;
}

.tools-meta span:nth-child(3) svg {
    fill: #ff00fb;
}

.tools-meta span:nth-child(4) svg {
    fill: #00a200;
}

.tools-meta span:nth-child(5) svg {
    fill: #f37a00;
}

.tools-meta span:nth-child(6) svg {
    fill: #02b6b1;
}

.tools-meta span:nth-child(1):hover {
    border-color: #d30;
    background-image: linear-gradient(0deg, rgba(221, 51, 0, 0.05), rgba(221, 51, 0, 0.01));
}

.tools-meta span:nth-child(2):hover {
    border-color: #006fff;
    background-image: linear-gradient(0deg, rgba(0, 111, 255, 0.05), rgba(0, 111, 255, 0.01));
}

.tools-meta span:nth-child(3):hover {
    border-color: #ff00fb;
    background-image: linear-gradient(0deg, rgba(255, 0, 251, 0.05), rgba(255, 0, 251, 0.01));
}

.tools-meta span:nth-child(4):hover {
    border-color: #00a200;
    background-image: linear-gradient(0deg, rgba(0, 162, 0, 0.05), rgba(0, 162, 0, 0.01));
}

.tools-meta span:nth-child(5):hover {
    border-color: #f37a00;
    background-image: linear-gradient(0deg, rgba(243, 122, 0, 0.05), rgba(243, 122, 0, 0.01));
}

.tools-meta span:nth-child(6):hover {
    border-color: #02b6b1;
    background-image: linear-gradient(0deg, rgba(2, 182, 177, 0.05), rgba(2, 182, 177, 0.01));
}

@media (max-width: 768px) {
    .tool-content {
        padding: .8em !important;
        box-shadow: unset;
    }
}