.extra-tools-wrapper {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tools-heading {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.tool-item {
    background: #ffffff;
    padding: 24px; /* Ein Standard-Padding */
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s ease;
    
    /* Flex-Eigenschaften für dynamische Höhe */
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    justify-content: center; /* Vertikal zentrieren */
    min-height: 80px;      /* Mindesthöhe, damit es nicht zu schmal wird */
}

.tool-item::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle at 100% 10%, #02ce80 10%, #7bd706 50%, transparent 60%);
    opacity: 0.4;
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.tool-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(70deg, #ffffff 0%, transparent 70%);
    pointer-events: none;
}

.tool-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.05);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 208, 132, 0.15);
    border-color: rgba(0, 208, 132, 0.3);
}

.tool-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-icon {
    font-size: 24px;
    color: #00d084;
}

.tool-item h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.tool-item a {
    font-size: 16px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.tool-item p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}