.tools-gallery {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0px;
    padding: 0px;
    max-width: 1100px;
    margin: 0px auto;
    justify-content: center;
}

.tools{
    background-color: #00000000;
    border-radius: 0px;
    border: 2px solid #48484800;
    padding: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.tools {
    aspect-ratio: 1/1.2;
}

.tools:hover {
    transform: scale(1.05);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
    border-color: #ffffff00;
}

.tools-link {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.tools-link {
    height: 80%;
}


.tools-thumbnail{
    width: 200px;
    height: 200px;
    transition: transform 0.5s ease;
    border-radius: 0px;
}

.tools-thumbnail {
    border-radius: 0px;
}

.tools:hover .tools-thumbnail {
    transform: scale(1.05);
}

.tools-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.tools:hover .tools-link::after {
    opacity: 1;
}

    .tools-link::before {
        content: attr(data-name);
        position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 0 0px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.tools:hover .tools-link::before {
    opacity: 1;
}

.tools h3 {
    font-size: 1.3rem;
}
.tools-gallery {
    text-align: center;
    justify-content: center;
}