.tools-section {
    background-color: var(--tj-black-2);
    padding-bottom: 120px;
    padding-top: 120px;
}
.tools-section .section-header {
    margin-left: auto;
    margin-right: auto;
}

.tool-card-link {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 30px;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    background: var(--tj-theme-accent-2);
}

.tool-card-link {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}

.tool-card-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.tool-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.tool-card-link:hover .tool-card-thumb img {
    transform: scale(1.05);
}

.tool-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card-link:hover .tool-card-overlay {
    opacity: 1;
}

.tool-card-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.tool-card-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tool-tag {
    display: inline-block;
    background: var(--tj-theme-primary);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px;
}