/* ── INDUSTRY TEMPLATE SHOWCASE COMPONENT ── */
.template-showcase-section {
    padding: var(--spacing-2xl) 0;
    background:
        linear-gradient(135deg, rgba(67, 56, 202, 0.02) 0%, transparent 50%);
}

.template-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .template-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .template-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.template-category-card {
    background: var(--white);
    border: 2px solid rgba(67, 56, 202, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.template-category-card:hover {
    border-color: rgba(67, 56, 202, 0.20);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.template-category-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.template-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.template-category-card:hover .template-category-image img {
    transform: scale(1.05);
}

.template-category-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.template-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.template-count {
    font-size: var(--text-sm);
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-pill);
}

.template-category-info {
    padding: var(--spacing-md);
}

.template-category-info h3 {
    font-size: var(--text-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.template-category-info p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: var(--leading-relaxed);
}

.template-showcase-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}