/**
 * @package LeadTools
 *
 * @author Gevorg Arshakyan <gevorg@armmage.com>
 *
 * @copyright Copyright (c) 2024 ArmMage (https://armmage.com)
 */

.lead-tools-showcase {
    margin: 40px 0;
    padding: 30px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
}

.showcase-description {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 15px;
}

.showcase-subheadline {
    font-size: 1.1em;
    color: #1979c3;
    font-weight: 600;
    margin-top: 10px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tool-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: #1979c3;
}

.tool-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-name {
    margin: 0 0 15px 0;
    font-size: 1.5em;
}

.tool-name a {
    color: #1979c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tool-name a:hover {
    color: #006bb4;
    text-decoration: underline;
}

.tool-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tool-urgency {
    color: #e02d27;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.tool-action {
    margin-top: auto;
}

.tool-link {
    display: inline-block;
    background: #1979c3;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.tool-link:hover {
    background: #006bb4;
    color: #fff;
    text-decoration: none;
}

.tool-link span {
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-header h2 {
        font-size: 2em;
    }
    
    .tool-card {
        padding: 20px;
    }
}

