/* Tool Page Specific Styles */

/* Tool Section Styles */
.tool-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.tool-section:last-of-type {
    border-bottom: none;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #659AD2 0%, #87B3E0 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tool-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #659AD2;
    line-height: 1.3;
}

.tool-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.tool-features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tool-video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #659AD2;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Category Cards Container - Scrollable */
.category-cards-container {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.category-cards-container::-webkit-scrollbar {
    width: 8px;
}

.category-cards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.category-cards-container::-webkit-scrollbar-thumb {
    background: #659AD2;
    border-radius: 4px;
}

.category-cards-container::-webkit-scrollbar-thumb:hover {
    background: #5a8bc4;
}

.category-card-item {
    margin-bottom: 1.5rem;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .tool-section {
        padding: 3rem 0;
    }
    
    .tool-title {
        font-size: 1.8rem;
    }
    
    .tool-description {
        font-size: 1rem;
    }
    
    .tool-video-container {
        margin-top: 2rem;
    }
    
    .category-cards-container {
        max-height: 400px;
        padding-right: 0;
    }
}