.ac-intel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
}

.ac-intel-brownish-block {
    background: #f5f5f3;
    border-radius: 16px;
    border: 1px solid #e7e7e5;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.ac-intel-brownish-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.ac-intel-header .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;

    background: #f5f5f3;
    color: #6b6b6b;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.12),
        inset -3px -3px 6px rgba(255,255,255,0.9);
}

.ac-intel-header .title {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-intel-header h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.ac-intel-header .subtitle {
    font-size: 12px;
    color: #777;
}

.ac-intel-header .explore {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}