/**
 * Category Hero Block — P2
 * 3T Induquip child theme
 */

.tttech-cat-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 28px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 10px;
    border-left: 5px solid #003366;
}
.tttech-cat-hero-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}
.tttech-cat-icon-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,51,102,0.10);
    padding: 8px;
}
.tttech-cat-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.tttech-cat-info {
    flex: 1;
}
.tttech-cat-desc {
    margin: 0 0 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}
.tttech-cat-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.tttech-chips-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}
.tttech-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #c8d8e8;
    border-radius: 20px;
    font-size: 12px;
    color: #003366;
    text-decoration: none;
    transition: all 0.2s;
}
.tttech-chip:hover {
    background: #003366;
    color: #fff;
    border-color: #003366;
}
.tttech-chip-count {
    background: #e0eaf4;
    border-radius: 10px;
    padding: 1px 5px;
    font-size: 11px;
    color: #003366;
}
.tttech-chip:hover .tttech-chip-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.tttech-cat-hero-right {
    flex-shrink: 0;
}
.tttech-spec-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #003366;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    min-width: 200px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 3px 10px rgba(0,51,102,0.25);
}
.tttech-spec-btn:hover {
    background: #004d99;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,51,102,0.3);
}
.tttech-spec-btn-icon {
    opacity: 0.9;
}
.tttech-spec-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tttech-spec-btn-text strong {
    font-size: 14px;
    font-weight: 600;
}
.tttech-spec-btn-text small {
    font-size: 11px;
    opacity: 0.75;
}
.tttech-spec-btn-arrow {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .tttech-cat-hero {
        flex-direction: column;
    }
    .tttech-spec-btn {
        min-width: unset;
        width: 100%;
    }
}
