/* Author Tools Page Specific Styles */

.tools-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.tools-category {
    margin-bottom: 5rem;
}

.tools-category:last-child {
    margin-bottom: 0;
}

.tools-category > h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tools-category > h2 i {
    color: #d4af37;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tool-header h3 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin: 0;
}

.tool-card > p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tool-features span {
    color: #2c3e50;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-features i {
    color: #d4af37;
    font-size: 0.8rem;
}

.tool-card .btn,
.tool-card a.btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

.tool-btn {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tools-category > h2 {
        font-size: 1.5rem;
    }
}